frigate/web/src/icons/Play.jsx

13 lines
280 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 Play() {
2022-02-27 17:04:12 +03:00
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);