@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 649 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function DoubleChevronDownIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "double-chevron-down",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M17 7.5C15.6332 8.86683 12.5 12 12.5 12L8 7.5M17 12.5C15.6332 13.8668 12.5 17 12.5 17L8 12.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { DoubleChevronDownIcon, DoubleChevronDownIcon as default };
//# sourceMappingURL=DoubleChevronDown.js.map