@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 740 B
JavaScript
import { forwardRef } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
const TimelineIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "timeline",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
ref,
children: [/* @__PURE__ */ jsx("path", {
d: "M12.5 5V20",
stroke: "currentColor",
strokeWidth: 1.2
}), /* @__PURE__ */ jsx("path", {
d: "M5 8.5H11M7 12.5H11M9 16.5H11M13 16.5H20M13 12.5H18M13 8.5H16",
stroke: "currentColor",
strokeWidth: 1.2
})]
});
});
export { TimelineIcon, TimelineIcon as default };
//# sourceMappingURL=Timeline.js.map