@sanity/icons
Version:
The Sanity icons.
26 lines (25 loc) • 728 B
JavaScript
import { forwardRef } from "react";
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
const ClipboardIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "clipboard",
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: "M8 5.5H6.5V19.5H18.5V5.5H17M12.5 3C11.5 3 11.5 4.5 11 4.5C10 4.5 9.5 5 9.5 6.5H15.6C15.6 5 15 4.5 14 4.5C13.5 4.5 13.5 3 12.5 3Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
});
export { ClipboardIcon, ClipboardIcon as default };
//# sourceMappingURL=Clipboard.js.map