Initial commit

This commit is contained in:
2025-10-04 18:22:24 +03:00
commit 2852c2c054
291 changed files with 38109 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
interface PeopleIconType {
className?: string;
onClick?: () => void;
}
const PeopleIcon = ({ className, onClick }: PeopleIconType) => {
return (
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
onClick={onClick}
>
<path
d="M10.6668 2.31184C11.6546 2.80274 12.3335 3.82209 12.3335 5C12.3335 6.17791 11.6546 7.19726 10.6668 7.68816M12.0002 11.1776C13.0078 11.6336 13.9152 12.3767 14.6668 13.3333M1.3335 13.3333C2.63116 11.6817 4.39295 10.6667 6.3335 10.6667C8.27404 10.6667 10.0358 11.6817 11.3335 13.3333M9.3335 5C9.3335 6.65685 7.99035 8 6.3335 8C4.67664 8 3.3335 6.65685 3.3335 5C3.3335 3.34315 4.67664 2 6.3335 2C7.99035 2 9.3335 3.34315 9.3335 5Z"
stroke="#5F6C7B"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default PeopleIcon;