forked from Github/frigate
feat: Timeline UI (#2830)
This commit is contained in:
13
web/src/icons/Next.jsx
Normal file
13
web/src/icons/Next.jsx
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
import { h } from 'preact';
|
||||
import { memo } from 'preact/compat';
|
||||
|
||||
export function Next({ className = '' }) {
|
||||
return (
|
||||
<svg className={`fill-current ${className}`} style="width:24px;height:24px" viewBox="0 0 24 24">
|
||||
<path d="M4,5V19L11,12M18,5V19H20V5M11,5V19L18,12" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default memo(Next);
|
||||
Reference in New Issue
Block a user