mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-22 20:41:50 +08:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import { PageInPageTreeIcon } from '@toeverything/components/icons';
|
|
|
|
export const DotIcon = () => {
|
|
return (
|
|
<PageInPageTreeIcon
|
|
style={{ fill: '#98ACBD', width: '20px', height: '20px' }}
|
|
/>
|
|
);
|
|
};
|