UNPKG

@crossed/unicons

Version:

unicons

35 lines (34 loc) 872 B
import { jsx, jsxs } from "react/jsx-runtime"; import { useTheme } from "@crossed/styled"; const MousePointerClick = ({ Svg, Path, color, size = 24 }) => { const theme = useTheme(); return /* @__PURE__ */ jsxs( Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", stroke: color ?? theme.font.color, strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [ /* @__PURE__ */ jsx(Path, { d: "m9 9 5 12 1.8-5.2L21 14Z" }), /* @__PURE__ */ jsx(Path, { d: "M7.2 2.2 8 5.1" }), /* @__PURE__ */ jsx(Path, { d: "m5.1 8-2.9-.8" }), /* @__PURE__ */ jsx(Path, { d: "M14 4.1 12 6" }), /* @__PURE__ */ jsx(Path, { d: "m6 12-1.9 2" }) ] } ); }; export { MousePointerClick }; //# sourceMappingURL=MousePointerClick.js.map