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

View File

@@ -0,0 +1,9 @@
import { SvgIcon, SvgIconProps } from "@mui/material";
export default function CaretDown(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d="M6.102 8c-1.074 0-1.648 1.265-.94 2.073l5.521 6.31a1.75 1.75 0 0 0 2.634 0l5.522-6.31c.707-.808.133-2.073-.94-2.073H6.101Z" />
</SvgIcon>
);
}