@workday/canvas-kit-react
Version:
The parent module that contains all Workday Canvas Kit React components
17 lines • 618 B
TypeScript
import * as React from 'react';
import { GrowthBehavior } from '@workday/canvas-kit-react/common';
export interface DeprecatedButtonProps extends GrowthBehavior {
/**
* The variant of the Button.
* @default 'secondary'
*/
variant?: 'primary' | 'secondary' | 'delete';
/**
* The size of the Button.
* @default 'medium'
*/
size?: 'small' | 'medium' | 'large';
children?: React.ReactNode;
}
export declare const DeprecatedButton: import("@workday/canvas-kit-react/common").ElementComponent<"button", DeprecatedButtonProps>;
//# sourceMappingURL=deprecated_Button.d.ts.map