UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

28 lines (23 loc) 687 B
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 };