in components/icons.tsx [34:61]
export function Book({ size = "24px" }: IconProps) {
return (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<title>Book open (outlined)</title>
<g
transform="matrix(
1 0
0 1
1 2
)"
>
<path
fillRule="nonzero"
clipRule="nonzero"
d="M19 0C14.9 0 12.3 1.7 11 2.5C9.7 1.7 7.1 0 3 0L0 0L0 18L3 18C7.1 18 9.7 19.7 11 20.5C12.3 19.7 14.9 18 19 18L22 18L22 0L19 0ZM3 3C5.1 3 7.09999 3.60001 8.79999 4.70001L9.5 5.09998L9.5 16.3C7.5 15.4 5.3 15 3 15L3 3ZM19 15C16.7 15 14.5 15.5 12.5 16.3L12.5 5.09998L13.2 4.70001C14.9 3.60001 16.9 3 19 3L19 15Z"
fill="currentColor"
opacity="1"
/>
</g>
</svg>
);
}