Completely updated React, fixed #11, (hopefully)
This commit is contained in:
14
goTorrentWebUI/node_modules/material-ui/Icon/Icon.d.ts
generated
vendored
14
goTorrentWebUI/node_modules/material-ui/Icon/Icon.d.ts
generated
vendored
@@ -1,22 +1,20 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps, PropTypes } from '..';
|
||||
|
||||
export interface IconProps extends StandardProps<
|
||||
React.HTMLAttributes<HTMLSpanElement>,
|
||||
IconClassKey
|
||||
> {
|
||||
color?: PropTypes.Color | 'action' | 'contrast' | 'disabled' | 'error';
|
||||
export interface IconProps
|
||||
extends StandardProps<React.HTMLAttributes<HTMLSpanElement>, IconClassKey> {
|
||||
color?: PropTypes.Color | 'action' | 'disabled' | 'error';
|
||||
fontSize?: boolean;
|
||||
}
|
||||
|
||||
export type IconClassKey =
|
||||
| 'root'
|
||||
| 'colorAccent'
|
||||
| 'colorSecondary'
|
||||
| 'colorAction'
|
||||
| 'colorContrast'
|
||||
| 'colorDisabled'
|
||||
| 'colorError'
|
||||
| 'colorPrimary'
|
||||
;
|
||||
| 'fontSize';
|
||||
|
||||
declare const Icon: React.ComponentType<IconProps>;
|
||||
|
||||
|
Reference in New Issue
Block a user