in components/icons.tsx [137:163]
export function Figma({ size = "24px" }: IconProps) {
return (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g
transform="matrix(
1 0
0 1
5 1
)"
>
<path
fillRule="nonzero"
clipRule="nonzero"
d="M15 4.5C15 2.02 12.98 0 10.5 0L9 0L6 0L4.5 0C2.02 0 0 2.02 0 4.5C0 5.65 0.43 6.7 1.16 7.5C0.43 8.3 0 9.35 0 10.5C0 11.65 0.43 12.7 1.16 13.5C0.43 14.3 0 15.35 0 16.5C0 18.98 2.02 21 4.5 21C6.98 21 9 18.98 9 16.5L9 15L9 14.74C9.47 14.91 9.97 15 10.5 15C12.98 15 15 12.98 15 10.5C15 9.35 14.57 8.3 13.84 7.5C14.57 6.7 15 5.65 15 4.5ZM3 4.5C3 3.67 3.67 3 4.5 3L6 3L6 6L4.5 6C3.67 6 3 5.33 3 4.5ZM3 10.5C3 9.67 3.67 9 4.5 9L6 9L6 12L4.5 12C3.67 12 3 11.33 3 10.5ZM6 16.5C6 17.33 5.33 18 4.5 18C3.67 18 3 17.33 3 16.5C3 15.67 3.67 15 4.5 15L6 15L6 16.5ZM12 10.5C12 11.33 11.33 12 10.5 12C9.67 12 9 11.33 9 10.5C9 9.67 9.67 9 10.5 9C11.33 9 12 9.67 12 10.5ZM9 6L9 3L10.5 3C11.33 3 12 3.67 12 4.5C12 5.33 11.33 6 10.5 6L9 6Z"
fill="currentColor"
opacity="1"
/>
</g>
</svg>
);
}