@sanity/icons
Version:
The Sanity icons.
23 lines (22 loc) • 777 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function EmptyIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "empty",
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 21V19.1111M8.25 19.8614L9.19445 18.2255M5.13878 16.7501L6.77461 15.8057M4 12.5H5.8889M5.13872 8.2499L6.77455 9.19436M8.25004 5.13876L9.19449 6.7746M12.5 5.88891V4M15.8055 6.77465L16.75 5.1388M18.2254 9.19449L19.8612 8.25004M19.1111 12.5001H21M18.2254 15.8056L19.8612 16.7501M15.8056 18.2255L16.75 19.8614",
stroke: "currentColor",
strokeWidth: 1.2
})
});
}
export { EmptyIcon, EmptyIcon as default };
//# sourceMappingURL=Empty.js.map