mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
17 lines
331 B
TypeScript
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;
|