UNPKG

@sanity/icons

Version:
32 lines (31 loc) 863 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const PinFilledIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "pin-filled", width: "1em", height: "1em", viewBox: "0 0 25 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref, children: [/* @__PURE__ */ jsx("path", { d: "M17 15H8V13.5C8 12 10.5 11 10.5 11V9L8.5 7V6H16.5V7L14.5 9V11C14.5 11 17 12 17 13.5V15Z", fill: "currentColor", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M12 15L12.5 20L13 15", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { PinFilledIcon, PinFilledIcon as default }; //# sourceMappingURL=PinFilled.js.map