@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 583 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function ToggleArrowRightIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "toggle-arrow-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: "M10.5 16V9L16 12.5L10.5 16Z",
fill: "currentColor",
stroke: "currentColor",
strokeLinejoin: "round"
})
});
}
export { ToggleArrowRightIcon, ToggleArrowRightIcon as default };
//# sourceMappingURL=ToggleArrowRight.js.map