Files
leonpan-assets/src/component/Icons/CaretDown.tsx
2025-10-19 13:31:11 +00:00

10 lines
313 B
TypeScript
Executable File

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>
);
}