@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 756 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function BasketIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "basket",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M8.5 10.5H5L6.5 19.5H18.5L20 10.5H16.5M8.5 10.5L10.2721 5.18377C10.4082 4.77543 10.7903 4.5 11.2208 4.5H13.7792C14.2097 4.5 14.5918 4.77543 14.7279 5.18377L16.5 10.5M8.5 10.5H16.5M8.5 10.5L9.5 19.5M16.5 10.5L15.5 19.5M12.5 10.5V19.5M19.5 13.5H5.5M19 16.5H6",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { BasketIcon, BasketIcon as default };
//# sourceMappingURL=Basket.js.map