mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 22:38:19 +01:00
15 lines
614 B
TypeScript
15 lines
614 B
TypeScript
import type { ComponentPropsWithoutRef } from "react";
|
|
|
|
export function PaperClipIcon(props: ComponentPropsWithoutRef<"svg">) {
|
|
return (
|
|
<svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
|
|
<path
|
|
fill="none"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="m15.56 7.375-3.678-3.447c-2.032-1.904-5.326-1.904-7.358 0s-2.032 4.99 0 6.895l6.017 5.639c1.477 1.384 3.873 1.384 5.35 0 1.478-1.385 1.478-3.63 0-5.015L10.21 6.122a1.983 1.983 0 0 0-2.676 0 1.695 1.695 0 0 0 0 2.507l4.013 3.76"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|