jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
16 lines (13 loc) • 479 B
JavaScript
import styled from 'styled-components';
/**
* @file index.tsx
*
* @fileoverview Shows a text for description.
*/
const FormDescription = styled.label `
text-transform: ${props => props.theme.formItem.description.textTransform};
letter-spacing: ${props => props.theme.formItem.description.letterSpacing};
font-size: ${props => props.theme.formItem.description.fontSize};
color: ${props => props.theme.formItem.description.color};
`;
export { FormDescription };