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

17 lines
331 B
TypeScript

import styled from '@emotion/styled';
const DropdownItem = styled.div(({ theme }) => ({
fontSize: '14px',
padding: '8px 12px',
display: 'flex',
gap: '0.35em',
alignItems: 'center',
borderRadius: theme.border.radius,
'&:hover': {
backgroundColor: theme.colors.background,
},
}));
export default DropdownItem;