UNPKG

@crossed/unicons

Version:

unicons

29 lines (28 loc) 585 B
import { jsx } from "react/jsx-runtime"; import { useTheme } from "@crossed/styled"; const ChevronLeft = ({ Svg, Path, color, size = 24 }) => { const theme = useTheme(); return /* @__PURE__ */ jsx( Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", stroke: color ?? theme.font.color, children: /* @__PURE__ */ jsx(Path, { d: "m15 18-6-6 6-6" }) } ); }; export { ChevronLeft }; //# sourceMappingURL=ChevronLeft.js.map