mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-30 19:09:13 +01:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
import { h } from 'preact';
|
|
import { memo } from 'preact/compat';
|
|
|
|
export function Play() {
|
|
return (
|
|
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
|
|
<path fill="currentColor" d="M8,5.14V19.14L19,12.14L8,5.14Z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default memo(Play);
|