UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

20 lines (17 loc) 490 B
'use client'; import { jsx } from 'react/jsx-runtime'; import { CopyIcon, AnimatedCheckmarkIcon } from '../../config/icons/checkbox.icons.js'; import { ClipboardIndicator } from './primitives.js'; function CopyIndicator(props) { return /* @__PURE__ */ jsx( ClipboardIndicator, { copied: /* @__PURE__ */ jsx(AnimatedCheckmarkIcon, {}), h: "1em", w: "1em", ...props, children: /* @__PURE__ */ jsx(CopyIcon, {}) } ); } export { CopyIndicator };