Files
twenty/packages/twenty-front/src/modules/ui/input/components/InputHint.tsx

11 lines
334 B
TypeScript

import styled from '@emotion/styled';
const StyledInputHint = styled.div`
color: ${({ theme }) => theme.font.color.light};
font-size: ${({ theme }) => theme.font.size.xs};
font-weight: ${({ theme }) => theme.font.weight.regular};
margin-top: ${({ theme }) => theme.spacing(0.5)};
`;
export { StyledInputHint as InputHint };