@atlrdsgn/kit
Version:
An ever–expanding library of React components, primitives, and tools
16 lines (15 loc) • 586 B
TypeScript
import { default as React } from 'react';
export type CopyCommandProps = {
className?: string;
copytext: string;
};
type TriggerProps = React.HTMLAttributes<HTMLButtonElement> & CopyCommandProps;
type CopyFieldTextProps = React.HTMLAttributes<HTMLParagraphElement> & CopyCommandProps;
declare const CopyTrigger: React.FC<TriggerProps>;
declare const CopyFieldText: React.FC<CopyFieldTextProps>;
export declare const CopyCommand: React.FC<CopyCommandProps> & {
Text: typeof CopyFieldText;
Trigger: typeof CopyTrigger;
};
export {};
//# sourceMappingURL=copy.cmd.d.ts.map