@heroui/shared-icons
Version:
Internal icons set, commonly used in the components stories
72 lines (70 loc) • 1.9 kB
JavaScript
// src/delete.tsx
import { jsx, jsxs } from "react/jsx-runtime";
var DeleteIcon = (props) => /* @__PURE__ */ jsxs(
"svg",
{
"aria-hidden": "true",
fill: "none",
focusable: "false",
height: "1em",
role: "presentation",
viewBox: "0 0 20 20",
width: "1em",
...props,
children: [
/* @__PURE__ */ jsx(
"path",
{
d: "M17.5 4.98332C14.725 4.70832 11.9333 4.56665 9.15 4.56665C7.5 4.56665 5.85 4.64998 4.2 4.81665L2.5 4.98332",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M7.08331 4.14169L7.26665 3.05002C7.39998 2.25835 7.49998 1.66669 8.90831 1.66669H11.0916C12.5 1.66669 12.6083 2.29169 12.7333 3.05835L12.9166 4.14169",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M15.7084 7.61664L15.1667 16.0083C15.075 17.3166 15 18.3333 12.675 18.3333H7.32502C5.00002 18.3333 4.92502 17.3166 4.83335 16.0083L4.29169 7.61664",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M8.60834 13.75H11.3833",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M7.91669 10.4167H12.0834",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5
}
)
]
}
);
export {
DeleteIcon
};