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

10 lines
865 B
TypeScript
Executable File

import { SvgIcon, SvgIconProps } from "@mui/material";
export default function PersonStar(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d="M11.314 15.5a6.472 6.472 0 0 1 .708-1.5h-6.77a2.249 2.249 0 0 0-2.248 2.248v.578c0 .892.318 1.756.898 2.435C5.468 21.095 7.854 22 11 22c.6 0 1.173-.034 1.717-.1a6.516 6.516 0 0 1-.994-1.419a14.18 14.18 0 0 1-.723.018c-2.738 0-4.704-.745-5.957-2.213a2.25 2.25 0 0 1-.54-1.461v-.578a.75.75 0 0 1 .75-.749zM11 2.003a5 5 0 1 1 0 10a5 5 0 0 1 0-10m0 1.5a3.5 3.5 0 1 0 0 7a3.5 3.5 0 0 0 0-7M23 17.5a5.5 5.5 0 1 1-11 0a5.5 5.5 0 0 1 11 0m-4.945-3.08a.577.577 0 0 0-1.11 0l-.557 1.788h-1.803c-.566 0-.8.754-.343 1.1l1.458 1.105l-.557 1.787c-.175.561.441 1.028.899.681l1.458-1.104l1.458 1.104c.458.347 1.074-.12.899-.68l-.557-1.788l1.458-1.104c.458-.347.223-1.101-.343-1.101h-1.803z" />
</SvgIcon>
);
}