PaperAirplaneIcon.jsx

 1export function PaperAirplaneIcon(props) {
 2  return (
 3    <svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
 4      <path
 5        fill="none"
 6        strokeLinecap="round"
 7        strokeLinejoin="round"
 8        d="M17 3L1 9L8 12M17 3L11 19L8 12M17 3L8 12"
 9      />
10      <path
11        strokeLinecap="round"
12        strokeLinejoin="round"
13        d="M11 19L8 12L17 3L11 19Z"
14      />
15    </svg>
16  )
17}