mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 02:35:22 +03:00
20 lines
438 B
React
20 lines
438 B
React
|
|
import { h } from 'preact';
|
||
|
|
import { memo } from 'preact/compat';
|
||
|
|
|
||
|
|
export function ArrowUpDouble({ className = '' }) {
|
||
|
|
return (
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
fill="none"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
strokeWidth={1.5}
|
||
|
|
stroke="currentColor"
|
||
|
|
className={`${className}`}
|
||
|
|
>
|
||
|
|
<path d="M4.5 12.75l7.5-7.5 7.5 7.5m-15 6l7.5-7.5 7.5 7.5" />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default memo(ArrowUpDouble);
|