Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 1x 1x 1x | import Icon, { getCssFillClassName } from '../Icon';
import IconProps from '../IconProps';
const IconSquareFoot = ({ className, color }: IconProps) => {
const cssFillClassName = getCssFillClassName(color);
return (
<Icon
svg={
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<g clip-path="url(#clip0_433_222)">
<path
className={cssFillClassName}
d="M17.66 17.66L16.6 18.72L15.89 18.01L16.95 16.95L15.01 15.01L13.95 16.07L13.24 15.36L14.3 14.3L12.36 12.36L11.3 13.42L10.59 12.71L11.65 11.65L9.7 9.7L8.64 10.76L7.93 10.05L8.99 8.99L7.05 7.05L5.99 8.11L5.28 7.4L6.34 6.34L4 4V18C4 19.1 4.9 20 6 20H20L17.66 17.66ZM7 17V11.24L12.76 17H7Z"
fill="black"
/>
</g>
<defs>
<clipPath id="clip0_433_222">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
}
/>
);
};
export default IconSquareFoot;
|