@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
13 lines (12 loc) • 546 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.js";
import { IconProp } from "../icon/icon.types.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