@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
17 lines (16 loc) • 568 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import { CopyToClipboardProps } from "./copyToClipboard.types.js";
import "../index.js";
//#region src/copyToClipboard/copyToClipboard.d.ts
/**
* A helper button component.
*
* Copies the provided text to clipboard.
*
* Copying is available only for a secure environment (https://), otherwise the button is disabled.
*
*/
declare const CopyToClipboard: VuiComponent<"button", CopyToClipboardProps>;
//#endregion
export { CopyToClipboard, CopyToClipboard as default };
//# sourceMappingURL=copyToClipboard.d.ts.map