blakeblackshear.frigate/web/src/icons/Delete.jsx
Mitch Ross ebb6d348a3
feat(web): Delete events from Event page and API (#991)
Co-authored-by: Scott Roach <scott@thinkpivot.io>
Co-authored-by: Paul Armstrong <paul@spaceyak.com>
2021-05-12 08:19:02 -07:00

14 lines
357 B
JavaScript

import { h } from 'preact';
import { memo } from 'preact/compat';
export function Delete({ className = '' }) {
return (
<svg className={`fill-current ${className}`} viewBox="0 0 24 24">
<path d="M0 0h24v24H0V0z" fill="none" />
<path d="M6 21h12V7H6v14zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" />
</svg>
);
}
export default memo(Delete);