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

10 lines
312 B
TypeScript
Executable File

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