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

10 lines
335 B
TypeScript
Executable File

import { SvgIcon, SvgIconProps } from "@mui/material";
export default function ArrowClockwiseFilled(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d="M5 12a7 7 0 0 1 10.608-6H15a1 1 0 1 0 0 2h3a1 1 0 0 0 1-1V4a1 1 0 1 0-2 0v.516a9 9 0 1 0 3.93 6.36a1 1 0 1 0-1.984.248A7 7 0 1 1 5 12" />
</SvgIcon>
);
}