import styled from '@emotion/styled'; import { HTMLAttributes } from 'react'; import { Label } from 'twenty-ui/display'; type InputLabelProps = HTMLAttributes & { htmlFor?: string; }; const StyledInputLabel = styled(Label)` display: block; margin-bottom: ${({ theme }) => theme.spacing(1)}; `; export const InputLabel = StyledInputLabel;