@desci-labs/frontend-components
Version:
A library for commonly used components on the DeSci Frontend web apps
9 lines • 344 B
TypeScript
import { ReactNode } from 'react';
export default function Copier({ value, children, className, feedbackClassName, handleClose, }: {
value: string;
children: ReactNode;
className?: string;
feedbackClassName?: string;
handleClose?: () => void;
}): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Copier.d.ts.map