Files
my-links/inertia/components/common/dropdown/dropdown_label.tsx
2024-10-07 01:33:59 +02:00

12 lines
220 B
TypeScript

import styled from '@emotion/styled';
const DropdownLabel = styled.div(({ theme }) => ({
height: 'auto',
width: 'auto',
color: theme.colors.font,
display: 'flex',
gap: '0.35em',
}));
export default DropdownLabel;