24 lines
870 B
TypeScript
24 lines
870 B
TypeScript
export function BookIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M3 5.11726C3 4.52125 3.51807 4.05756 4.11043 4.12338L11.1104 4.90116C11.6169 4.95743 12 5.38549 12 5.89504V18.4414C12 18.7394 11.741 18.9712 11.4448 18.9383L3.88957 18.0988C3.38313 18.0426 3 17.6145 3 17.105V5.11726Z"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
/>
|
|
<path
|
|
d="M12 5.89504C12 5.38549 12.3831 4.95743 12.8896 4.90116L19.8896 4.12338C20.4819 4.05756 21 4.52125 21 5.11727V17.105C21 17.6145 20.6169 18.0426 20.1104 18.0988L12.5552 18.9383C12.259 18.9712 12 18.7394 12 18.4414V5.89504Z"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|