@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 606 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function DoubleChevronRightIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "double-chevron-right",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M12.5 8L17 12.5L12.5 17M7.5 8L12 12.5L7.5 17",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { DoubleChevronRightIcon, DoubleChevronRightIcon as default };
//# sourceMappingURL=DoubleChevronRight.js.map