first commit

This commit is contained in:
2025-10-19 13:31:11 +00:00
commit 8bfc183b66
1248 changed files with 195992 additions and 0 deletions

9
src/component/Icons/Play.tsx Executable file
View File

@@ -0,0 +1,9 @@
import { SvgIcon, SvgIconProps } from "@mui/material";
export default function Play(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d="M5 5.274c0-1.707 1.826-2.792 3.325-1.977l12.362 6.727c1.566.852 1.566 3.1 0 3.952L8.325 20.702C6.826 21.518 5 20.432 5 18.726z" />
</SvgIcon>
);
}