@cerberus-design/react
Version:
The Cerberus Design React component library.
40 lines (39 loc) • 921 B
JavaScript
// src/config/icons/checkbox.icons.tsx
import { jsx } from "react/jsx-runtime";
function CheckmarkIcon() {
return /* @__PURE__ */ jsx(
"svg",
{
"aria-hidden": "true",
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
role: "img",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx(
"path",
{
fill: "currentColor",
d: "M9.714 18 4 12.335l1.818-1.764 3.896 3.824L18.181 6 20 7.803 9.714 18Z"
}
)
}
);
}
function IndeterminateIcon() {
return /* @__PURE__ */ jsx(
"svg",
{
"aria-hidden": "true",
xmlns: "http://www.w3.org/2000/svg",
role: "img",
fill: "none",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M4 11h16v2.667H4z" })
}
);
}
export {
CheckmarkIcon,
IndeterminateIcon
};
//# sourceMappingURL=chunk-OCZCCOWW.js.map