@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 916 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function ClipboardImageIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "clipboard-image",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M8 5.5H6.5V19.5H10.5M17 5.5H18.5V11.5M10.5 18.5L12.73 15.8983C13.1327 15.4285 13.8613 15.4335 14.2575 15.909L15.299 17.1588C15.6754 17.6105 16.3585 17.6415 16.7743 17.2257L16.9903 17.0097C17.2947 16.7053 17.7597 16.6298 18.1447 16.8223L20.5 18M10.5 11.5H20.5V21.5H10.5V11.5ZM12.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 { ClipboardImageIcon, ClipboardImageIcon as default };
//# sourceMappingURL=ClipboardImage.js.map