mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
12 lines
220 B
TypeScript
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;
|