InputLabel.styled.ts 308 B

1234567891011121314
  1. import styled from 'styled-components';
  2. export const InputLabel = styled.label`
  3. font-weight: 500;
  4. font-size: 12px;
  5. line-height: 20px;
  6. color: ${({ theme }) => theme.input.label.color};
  7. input[type='checkbox'] {
  8. display: inline-block;
  9. margin-right: 8px;
  10. vertical-align: text-top;
  11. }
  12. `;