Files
my-links/inertia/components/common/dropdown/dropdown_label.tsx
2024-06-02 23:59:57 +02:00

12 lines
225 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;