mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 22:38:19 +01:00
20 lines
594 B
TypeScript
20 lines
594 B
TypeScript
|
|
import type { ComponentPropsWithoutRef } from "react";
|
||
|
|
|
||
|
|
export function BookIcon(props: ComponentPropsWithoutRef<"svg">) {
|
||
|
|
return (
|
||
|
|
<svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
|
||
|
|
<path
|
||
|
|
fill="none"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="m10 5.5-7.5-3v12l7.5 3m0-12 7.5-3v12l-7.5 3m0-12v12"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="m17.5 2.5-7.5 3v12l7.5-3v-12Z"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|