jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
28 lines (23 loc) • 687 B
JavaScript
import styled from 'styled-components';
/**
* @file index.tsx
*
* @fileoverview Renders a label for form items.
*/
const FormLabel = styled.label `
margin-bottom: ${props => props.theme.formItem.label.marginBottom};
text-transform: ${props => props.theme.formItem.label.textTransform};
letter-spacing: ${props => props.theme.formItem.label.letterSpacing};
font-size: ${props => props.theme.formItem.label.fontSize};
${props => (props.error ? `color: ${props.theme.colors.danger};` : ``)}
${props => props.required
? `
&::after {
content: '*';
margin-left: 0.5rem;
color: ${props.theme.colors.danger};
}
`
: ``}
`;
export { FormLabel };