@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
19 lines (18 loc) • 637 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
import { IconProp } from "../icon/icon.types.js";
import "../icon/index.js";
//#region src/copyToClipboard/copyToClipboard.types.d.ts
type CopyToClipboardProps = SystemProps & ThemingProps<'Button'> & {
/** Text string for copying */
copyText: string;
/** Icon @default falCopy */
icon?: IconProp;
/** Button size @default "xs" */
size?: 'xs' | 'sm' | 'md' | 'lg';
};
//#endregion
export { CopyToClipboardProps };
//# sourceMappingURL=copyToClipboard.types.d.ts.map