Completely updated React, fixed #11, (hopefully)
This commit is contained in:
23
goTorrentWebUI/node_modules/material-ui/Stepper/StepButton.d.ts
generated
vendored
Normal file
23
goTorrentWebUI/node_modules/material-ui/Stepper/StepButton.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { Orientation } from './Stepper';
|
||||
import { ButtonBaseProps, ButtonBaseClassKey } from '../ButtonBase';
|
||||
|
||||
export type StepButtonIcon = React.ReactElement<any> | string | number;
|
||||
|
||||
export interface StepButtonProps extends StandardProps<ButtonBaseProps, StepButtonClasskey> {
|
||||
active?: boolean;
|
||||
alternativeLabel?: boolean;
|
||||
completed?: boolean;
|
||||
disabled?: boolean;
|
||||
icon?: StepButtonIcon;
|
||||
last?: boolean;
|
||||
optional?: React.ReactNode;
|
||||
orientation?: Orientation;
|
||||
}
|
||||
|
||||
export type StepButtonClasskey = ButtonBaseClassKey | 'root';
|
||||
|
||||
declare const StepButton: React.ComponentType<StepButtonProps>;
|
||||
|
||||
export default StepButton;
|
Reference in New Issue
Block a user