styled.ts 594 B

1234567891011121314151617181920212223
  1. import styled from 'styled-components';
  2. import { color } from '../../constants/style';
  3. export const Title = styled('p')<{light: boolean}>`
  4. font-size: 16px;
  5. color: ${props => props.light ? color.black38 : '#000000' };
  6. margin: 5px;
  7. white-space: nowrap;
  8. `;
  9. export const Subtitle = styled('p')<{light: boolean}>`
  10. font-size: 14px;
  11. color: ${props => props.light ? color.black38 : '#000000' };
  12. margin: 5px;
  13. white-space: nowrap;
  14. `;
  15. export const Body = styled('p')<{light: boolean}>`
  16. font-size: 14px;
  17. color: ${props => props.light ? color.black38 : '#000000' };
  18. margin: 5px;
  19. `;