This commit is contained in:
Tom Moor
2017-07-09 20:02:10 -07:00
parent f456dc6b6a
commit a04af08064
16 changed files with 209 additions and 56 deletions

View File

@ -0,0 +1,10 @@
// @flow
import styled from 'styled-components';
import { color } from 'styles/constants';
const HelpText = styled.p`
user-select: none;
color: ${color.slateDark};
`;
export default HelpText;