UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

14 lines 696 B
import { ButtonProps } from './Button'; /** * Extends all the style properties from Box to our buttons as well as props from ButtonProps. * We omit `ref` since all of our buttons use `createComponent` and already give access to `ref`. * Use this type to extend and customize any one off buttons that you want full control over styling. */ export interface SecondaryButtonProps extends ButtonProps { /** * Variant has an option for `inverse` which will inverse the styling */ variant?: 'inverse'; } export declare const SecondaryButton: import("@workday/canvas-kit-react/common").ElementComponent<"button", SecondaryButtonProps>; //# sourceMappingURL=SecondaryButton.d.ts.map