ArrowDropup.jsx 232 B

12345678910
  1. import { h } from 'preact';
  2. export default function ArrowDropup() {
  3. return (
  4. <svg className="fill-current" viewBox="0 0 24 24">
  5. <path d="M0 0h24v24H0z" fill="none" />
  6. <path d="M7 14l5-5 5 5z" />
  7. </svg>
  8. );
  9. }