Repository URL to install this package:
|
Version:
0.0.0 ▾
|
import React from 'react'
export const ArrowFlatLinesUp = (props: React.ComponentProps<'svg'>) => {
return (
<svg {...props} viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17 10L8.5 18.5L-2.66256e-07 10L4.25 10L4.25 7.16667L12.75 7.16667L12.75 10L17 10Z"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.25 1.5L12.75 1.5"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.25 4.33337L12.75 4.33337"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
)
}