@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 566 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function BarChartIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "bar-chart",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M5.5 5V19.5H20M8.5 18V13M11.5 18V9M14.5 18V11M17.5 18V7",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { BarChartIcon, BarChartIcon as default };
//# sourceMappingURL=BarChart.js.map