react-open-iconic-svg
Version:
Open iconic React version
14 lines (13 loc) • 377 B
JavaScript
import React from "react";
export default function DeleteIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-delete-icon ${props.className}`}
>
<path d="M2 1L0 4l2 3h6V1H2zm1.5.78L5 3.28l1.5-1.5.72.72L5.72 4l1.5 1.5-.72.72L5 4.72l-1.5 1.5-.72-.72L4.28 4l-1.5-1.5.72-.72z" />
</svg>
);
}