packages/synapse-interface/components/icons/AccordionIcon.tsx
export default function AccordionIcon({ ...props }) {
return (
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M2.76619 3.5L11.2338 3.5C12.0111 3.5 12.4912 4.34797 12.0913 5.0145L7.85749 12.0708C7.46909 12.7182 6.53091 12.7182 6.14251 12.0708L1.9087 5.0145C1.50878 4.34797 1.9889 3.5 2.76619 3.5Z"
fill="white"
/>
</svg>
)
}