mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
20 lines
586 B
TypeScript
20 lines
586 B
TypeScript
|
|
import type { ComponentPropsWithoutRef } from "react";
|
||
|
|
|
||
|
|
export function PaperAirplaneIcon(props: ComponentPropsWithoutRef<"svg">) {
|
||
|
|
return (
|
||
|
|
<svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
|
||
|
|
<path
|
||
|
|
fill="none"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="M17 3L1 9L8 12M17 3L11 19L8 12M17 3L8 12"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="M11 19L8 12L17 3L11 19Z"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|