mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-15 00:56:26 +08:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import { styled } from '../styled';
|
|
|
|
export const ListIcon = styled('div')(({ theme }) => {
|
|
return {
|
|
color: theme.affine.palette.icons,
|
|
height: '20px',
|
|
|
|
'& svg': {
|
|
fontSize: '20px',
|
|
},
|
|
};
|
|
});
|