/** @jsx h */
import { forwardRef } from 'preact/compat';
import { h } from 'preact';
export const ArrowUpOutline = forwardRef((props, ref) => {
    return (<svg {...props} ref={ref} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
      <path strokeLinecap="round" strokeLinejoin="round" d="M4.5 10.5 12 3m0 0 7.5 7.5M12 3v18"/>
    </svg>);
});
//# sourceMappingURL=arrow-up-outline.jsx.map