frigate/web/src/icons/Play.jsx

13 lines
307 B
React
Raw Normal View History

2022-02-27 17:04:12 +03:00
import { h } from 'preact';
import { memo } from 'preact/compat';
export function Play({ className = '' }) {
2022-02-27 17:04:12 +03:00
return (
<svg className={`fill-current ${className}`} viewBox="0 0 24 24">
2022-02-27 17:04:12 +03:00
<path fill="currentColor" d="M8,5.14V19.14L19,12.14L8,5.14Z" />
</svg>
);
}
export default memo(Play);