Files
archived-drop-api-docs/src/components/icons/PaperAirplaneIcon.tsx
2025-08-23 16:50:30 +10:00

20 lines
448 B
TypeScript

export function PaperAirplaneIcon(
props: React.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>
)
}