UNPKG

@sanity/icons

Version:
40 lines (39 loc) 938 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const PauseIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "pause", 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 7.5H8.5V17.5H10.5V7.5Z", fill: "currentColor" }), /* @__PURE__ */ jsx("path", { d: "M16.5 7.5H14.5V17.5H16.5V7.5Z", fill: "currentColor" }), /* @__PURE__ */ jsx("path", { d: "M10.5 7.5H8.5V17.5H10.5V7.5Z", stroke: "currentColor", strokeWidth: 1.2 }), /* @__PURE__ */ jsx("path", { d: "M16.5 7.5H14.5V17.5H16.5V7.5Z", stroke: "currentColor", strokeWidth: 1.2 }) ] }); }); export { PauseIcon, PauseIcon as default }; //# sourceMappingURL=Pause.js.map