frigate/web/src/icons/Previous.jsx

13 lines
296 B
React
Raw Normal View History

2022-02-27 17:04:12 +03:00
import { h } from 'preact';
import { memo } from 'preact/compat';
2022-02-26 22:11:00 +03:00
export function Previous() {
2022-02-27 17:04:12 +03:00
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);