mirror of
https://github.com/outline/outline.git
synced 2026-06-19 14:25:01 +03:00
328f731541
* Share restrictions * Tweak language, add spec
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
const HelpText = styled.p`
|
|
margin-top: 0;
|
|
color: ${props => props.theme.slateDark};
|
|
font-size: ${props => (props.small ? '13px' : 'auto')};
|
|
`;
|
|
|
|
export default HelpText;
|