import { BaseTypeProps } from "@/utils/interface"; export interface CopyProps extends BaseTypeProps, Omit< React.HTMLAttributes, "style" | "disabled" | "type" | "onCopy" | "onClick" > { text: string; type?: "icon" | "button" | "default"; btnText?: string; iconFontSize?: string | number; onCopy?: (text: string, result: boolean) => void; animate?: boolean; }