UNPKG

@sanity/icons

Version:
26 lines (25 loc) 759 B
import { forwardRef } from "react"; import { jsx } from "react/jsx-runtime"; /** * @public */ const BellIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsx("svg", { "data-sanity-icon": "bell", 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.5 17.5V18.5C10.5 20 11.5 20.5 12.5 20.5C13.5 20.5 14.5 20 14.5 18.5V17.5M5.5 17.5C6.5 16 6.5 15 6.5 12C6.5 8 8.5 5.5 12.5 5.5C16.5 5.5 18.5 8 18.5 12C18.5 15 18.5 16 19.5 17.5H5.5Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }) }); }); export { BellIcon, BellIcon as default }; //# sourceMappingURL=Bell.js.map