cookie-traceability/src/components/icons/butter/component.tsx
const ButterIcon: React.FC<React.HTMLAttributes<SVGElement>> = ({
className = 'fill-secondary',
}) => (
<svg
width="22"
height="22"
viewBox="0 0 22 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path d="M17.4752 7.37755L15.8288 5.1824C15.7777 5.11425 15.7114 5.05893 15.6352 5.02083C15.559 4.98273 15.475 4.96289 15.3898 4.96289H6.6092C6.52401 4.96289 6.43998 4.98273 6.36378 5.02083C6.28758 5.05893 6.22129 5.11425 6.17018 5.1824L4.52382 7.37755C4.45258 7.47254 4.41406 7.58808 4.41406 7.70682V15.3898C4.41406 15.5354 4.47188 15.6749 4.5748 15.7779C4.67772 15.8808 4.8173 15.9386 4.96285 15.9386H17.0361C17.1817 15.9386 17.3213 15.8808 17.4242 15.7779C17.5271 15.6749 17.5849 15.5354 17.5849 15.3898V7.70682C17.5849 7.58808 17.5464 7.47254 17.4752 7.37755ZM6.8836 6.06046H15.1154L15.9386 7.15803H10.4507V10.7251C10.4507 10.9435 10.364 11.1528 10.2096 11.3072C10.0552 11.4616 9.84585 11.5483 9.62752 11.5483C9.4092 11.5483 9.19983 11.4616 9.04545 11.3072C8.89107 11.1528 8.80435 10.9435 8.80435 10.7251V7.15803H6.06042L6.8836 6.06046Z" />
</svg>
);
export default ButterIcon;