@crossed/unicons
Version:
unicons
31 lines (30 loc) • 611 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { useTheme } from "@crossed/styled";
const ChevronDown = ({
Svg,
Path,
color,
size = 24,
...other
}) => {
const theme = useTheme();
return /* @__PURE__ */ jsx(
Svg,
{
...other,
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: "m6 9 6 6 6-6" })
}
);
};
export {
ChevronDown
};
//# sourceMappingURL=ChevronDown.js.map