mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-28 09:30:21 -05:00
14 lines
418 B
TypeScript
14 lines
418 B
TypeScript
export const 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>
|
|
);
|
|
};
|