PozoAppUptoWebinar/src/Components/Pozo retail icons/PozoHomeIcon.jsx

38 lines
2.0 KiB
React
Raw Normal View History

function PozoHomeIcon({ fill, width, height, className, style, onClick }) {
return (
<svg
width="40"
height="40"
viewBox="0 0 100 100"
fill="none"
className={className}
style={style}
onClick={onClick}
>
<g clipPath="url(#clip0_5914_3)">
<g clipPath="url(#clip1_5914_3)">
<path
d="M17.3471 59.8834C17.3471 62.307 17.3471 64.4246 17.3471 66.5423C17.3471 74.1658 17.3471 81.8129 17.3471 89.4364C17.3471 92.6364 18.6805 93.9776 21.862 93.9776C26.3536 93.9776 30.8217 93.9776 35.3133 93.9776C38.5416 93.9776 39.9686 92.5893 39.9686 89.3658C39.992 82.8481 39.9686 76.354 39.9686 69.8364C39.9686 69.1305 39.9686 68.4246 39.9686 67.5776C45.0216 67.5776 49.9108 67.5776 55.0106 67.5776C55.0106 68.2834 55.0106 68.9187 55.0106 69.554C55.0106 76.0717 55.0106 82.5658 55.0106 89.0834C55.0106 92.6599 56.344 93.9776 59.9466 93.9776C64.368 93.9776 68.7893 93.9776 73.2107 93.9776C76.2518 93.9776 77.6554 92.5893 77.6554 89.5305C77.6788 80.4246 77.6554 71.2952 77.6554 62.1893C77.6554 61.4834 77.6554 60.8011 77.6554 59.8834C80.5796 59.8834 83.3167 59.8834 86.0771 59.8834C87.2234 59.8834 88.3931 59.9305 88.8609 58.5893C89.282 57.3423 88.4398 56.6364 87.6211 55.907C75.2927 45.107 62.941 34.2834 50.5892 23.4834C48.3434 21.5305 46.7059 21.507 44.5069 23.4364C32.1084 34.2834 19.7098 45.1305 7.3347 56.0011C6.89023 56.3776 6.42236 56.8011 6.18842 57.3187C5.58019 58.6834 6.56272 59.8834 8.31723 59.907C11.2414 59.9305 14.189 59.8834 17.3471 59.8834Z"
fill={fill || 'currentcolor'}
/>
</g>
</g>
<defs>
<clipPath id="clip0_5914_3">
<rect width="96" height="93.8696" fill={fill || 'currentcolor'} />
</clipPath>
<clipPath id="clip1_5914_3">
<rect
width="83"
height="72"
fill="white"
transform="translate(6 22)"
/>
</clipPath>
</defs>
</svg>
);
}
export default PozoHomeIcon;