mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
20 lines
599 B
TypeScript
20 lines
599 B
TypeScript
|
|
import type { ComponentPropsWithoutRef } from "react";
|
||
|
|
|
||
|
|
export function DocumentIcon(props: ComponentPropsWithoutRef<"svg">) {
|
||
|
|
return (
|
||
|
|
<svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
|
||
|
|
<path
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="M3.5 4.5v11a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-8h-5v-5h-6a2 2 0 0 0-2 2Z"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
fill="none"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="m11.5 2.5 5 5"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|