This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/components/HelpText/HelpText.js

11 lines
201 B
JavaScript
Raw Normal View History

2017-07-10 03:02:10 +00:00
// @flow
import styled from 'styled-components';
2017-10-27 05:42:08 +00:00
import { color } from 'shared/styles/constants';
2017-07-10 03:02:10 +00:00
const HelpText = styled.p`
2017-09-29 06:18:15 +00:00
margin-top: 0;
2017-07-10 03:02:10 +00:00
color: ${color.slateDark};
`;
export default HelpText;