UNPKG

@heroui/shared-icons

Version:

Internal icons set, commonly used in the components stories

26 lines (24 loc) 622 B
// src/copy.tsx import { jsx } from "react/jsx-runtime"; var CopyIcon = (props) => /* @__PURE__ */ jsx( "svg", { "aria-hidden": "true", focusable: "false", height: "1em", role: "presentation", viewBox: "0 0 24 24", width: "1em", ...props, children: /* @__PURE__ */ jsx( "path", { d: "M20 2H10c-1.103 0-2 .897-2 2v4H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2v-4h4c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zM4 20V10h10l.002 10H4zm16-6h-4v-4c0-1.103-.897-2-2-2h-4V4h10v10z", fill: "currentColor" } ) } ); export { CopyIcon };