mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
14 lines
330 B
JavaScript
14 lines
330 B
JavaScript
import { h } from 'preact';
|
|
import { memo } from 'preact/compat';
|
|
|
|
export function ArrowDropup({ className = '' }) {
|
|
return (
|
|
<svg className={`fill-current ${className}`} viewBox="0 0 24 24">
|
|
<path d="M0 0h24v24H0z" fill="none" />
|
|
<path d="M7 14l5-5 5 5z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default memo(ArrowDropup);
|