delete project

This commit is contained in:
Takeshi Kimata
2024-02-18 11:06:02 +09:00
parent d752b4a3b0
commit a44c50df29
5 changed files with 133 additions and 27 deletions

View File

@@ -284,3 +284,22 @@ export const FolderIcon: React.FC<IconSvgProps> = ({
</svg>
);
};
export const DotsIcon: React.FC<IconSvgProps> = ({
size = 24,
width,
height,
...props
}) => {
return (
<svg
viewBox="0 0 24 24"
fill="currentColor"
height={size || height}
width={size || height}
{...props}
>
<path d="M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
</svg>
);
};