UNPKG

@sanity/icons

Version:
38 lines (37 loc) 853 B
import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ function PauseIcon(props) { 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, 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