synapsecns/sanguine

View on GitHub
packages/widget/src/components/icons/DownArrow.tsx

Summary

Maintainability
A
0 mins
Test Coverage
export const DownArrow = ({ ...props }) => {
  return (
    <svg
      className="fill-[--synapse-select-text]"
      width="10"
      height="9"
      viewBox="0 0 10 9"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path d="M0.497159 0.727273H9.58807L5.04261 8.45455L0.497159 0.727273Z" />
    </svg>
  )
}