blakeblackshear.frigate/web/src/icons/Next.jsx
2022-02-27 08:04:12 -06:00

14 lines
329 B
JavaScript

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);