Files
AFFiNE-Mirror/libs/components/layout/src/workspace-sidebar/dot-icon/DotIcon.tsx
T
2022-08-11 16:17:02 +08:00

10 lines
234 B
TypeScript

import { PageInPageTreeIcon } from '@toeverything/components/icons';
export const DotIcon = () => {
return (
<PageInPageTreeIcon
style={{ fill: '#98ACBD', width: '20px', height: '20px' }}
/>
);
};