optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.35 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const DeleteIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "delete",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12.034 1.1c.504 0 .94 0 1.304.032.38.034.746.108 1.103.294l.204.117c.067.042.132.086.195.133l.117.093c.262.222.457.485.629.771.188.313.377.706.597 1.16l.436.9H21a.9.9 0 0 1 0 1.8h-.654l-.568 9.181c-.078 1.263-.14 2.274-.267 3.082-.114.72-.29 1.346-.62 1.904l-.152.236a4.903 4.903 0 0 1-1.47 1.382c-.642.39-1.355.559-2.183.638-.814.078-1.828.077-3.093.077-1.267 0-2.281 0-3.097-.078-.83-.08-1.543-.246-2.186-.638a4.902 4.902 0 0 1-1.32-1.18l-.15-.205c-.43-.618-.64-1.32-.77-2.143-.127-.809-.188-1.822-.264-3.087L3.652 6.4H3a.9.9 0 0 1 0-1.8h4.475l.365-.802.303-.655c.096-.202.188-.384.28-.546.194-.34.42-.647.747-.898l.196-.138c.067-.044.137-.084.207-.122l.137-.067c.32-.145.65-.208.99-.24.37-.033.818-.032 1.334-.032ZM5.456 6.4l.547 9.06c.078 1.3.134 2.212.245 2.916.108.69.258 1.09.47 1.394l.095.13a3.1 3.1 0 0 0 .7.659l.134.087.124.07c.3.154.69.257 1.297.315.71.068 1.623.069 2.925.069 1.3 0 2.213 0 2.921-.069.693-.066 1.102-.191 1.418-.383.367-.224.685-.522.93-.875l.077-.119c.172-.29.299-.67.394-1.273.112-.703.17-1.613.25-2.911l.56-9.07H5.456Zm6.578-3.5c-.549 0-.9.001-1.172.026-.19.017-.302.044-.378.073l-.066.03a1.1 1.1 0 0 0-.078.046l-.075.052c-.069.053-.151.14-.278.361a6.653 6.653 0 0 0-.22.43l-.29.627-.025.055h5.167l-.056-.116c-.233-.482-.384-.79-.521-1.018a1.406 1.406 0 0 0-.225-.302l-.053-.046-.152-.095c-.075-.039-.187-.076-.434-.098-.265-.024-.608-.025-1.144-.025Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default DeleteIcon;