packages/widget/src/components/icons/DoubleUpArrow.tsx
export const DoubleUpArrow = () => {
return (
<svg
className="stroke-[--synapse-secondary] stroke-2 fill-none"
width="20"
height="21"
viewBox="0 0 20 21"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6 15.5L10 11.5L14 15.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M6 9.5L10 5.5L14 9.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
)
}