blakeblackshear.frigate/web/src/icons/ArrowDropup.jsx

14 lines
330 B
React
Raw Normal View History

2021-02-02 05:28:25 +01:00
import { h } from 'preact';
2021-02-07 05:17:32 +01:00
import { memo } from 'preact/compat';
2021-02-02 05:28:25 +01:00
export function ArrowDropup({ className = '' }) {
2021-02-02 05:28:25 +01:00
return (
<svg className={`fill-current ${className}`} viewBox="0 0 24 24">
2021-02-02 05:28:25 +01:00
<path d="M0 0h24v24H0z" fill="none" />
<path d="M7 14l5-5 5 5z" />
</svg>
);
}
2021-02-07 05:17:32 +01:00
export default memo(ArrowDropup);