mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 22:35:42 +03:00
13 lines
314 B
React
13 lines
314 B
React
|
|
import { h } from 'preact';
|
||
|
|
import { memo } from 'preact/compat';
|
||
|
|
|
||
|
|
export function Previous({ className = '' }) {
|
||
|
|
return (
|
||
|
|
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
|
||
|
|
<path fill="currentColor" d="M20,5V19L13,12M6,5V19H4V5M13,5V19L6,12" />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default memo(Previous);
|