UNPKG

@sanity/icons

Version:
58 lines (57 loc) 1.57 kB
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const FeedbackIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "feedback", 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: "M10 11.5V12H9.5L9.5 11.5H10Z", fill: "currentColor" }), /* @__PURE__ */ jsx("path", { d: "M13 11.5V12H12.5V11.5H13Z", fill: "currentColor" }), /* @__PURE__ */ jsx("path", { d: "M16 11.5V12H15.5V11.5H16Z", fill: "currentColor" }), /* @__PURE__ */ jsx("path", { d: "M10 11.5V12H9.5L9.5 11.5H10Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M13 11.5V12H12.5V11.5H13Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M16 11.5V12H15.5V11.5H16Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M7.5 16.5H9.5V20.5L13.5 16.5H17.5C18.6046 16.5 19.5 15.6046 19.5 14.5V8.5C19.5 7.39543 18.6046 6.5 17.5 6.5H7.5C6.39543 6.5 5.5 7.39543 5.5 8.5V14.5C5.5 15.6046 6.39543 16.5 7.5 16.5Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }) ] }); }); export { FeedbackIcon, FeedbackIcon as default }; //# sourceMappingURL=Feedback.js.map