UNPKG

@crossed/unicons

Version:

unicons

35 lines (34 loc) 760 B
import { jsx, jsxs } from "react/jsx-runtime"; import { useTheme } from "@crossed/styled"; const Info = ({ Svg, Path, Circle, color, size = 24 }) => { const theme = useTheme(); const stroke = color ?? theme.font.color; return /* @__PURE__ */ jsxs( Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", stroke, children: [ /* @__PURE__ */ jsx(Circle, { cx: "12", cy: "12", r: "10", stroke }), /* @__PURE__ */ jsx(Path, { d: "M12 16v-4", stroke }), /* @__PURE__ */ jsx(Path, { d: "M12 8h.01", stroke }) ] } ); }; export { Info }; //# sourceMappingURL=Info.js.map