UNPKG

@itwin/itwinui-react

Version:

A react component library for iTwinUI

15 lines (14 loc) 463 B
import type { PolymorphicForwardRefComponent } from '../props.js'; export declare const ButtonBase: PolymorphicForwardRefComponent<"button", ButtonBaseProps>; type ButtonBaseProps = { /** * Custom `disabled` prop that keeps the button focusable, prevents * clicks, applied disabled styling, and adds `aria-disabled`. */ disabled?: boolean; /** * Built-in html `disabled` attribute */ htmlDisabled?: boolean; }; export {};