@crossed/unicons
Version:
unicons
29 lines (28 loc) • 587 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { useTheme } from "@crossed/styled";
const ChevronRight = ({
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: "m9 18 6-6-6-6" })
}
);
};
export {
ChevronRight
};
//# sourceMappingURL=ChevronRight.js.map