@material-ui/core
Version:
React components that implement Google's Material Design.
43 lines (38 loc) • 1.03 kB
TypeScript
import * as React from 'react';
import { PropTypes } from '..';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
export interface IconTypeMap<P = {}, D extends React.ElementType = 'span'> {
props: P & {
color?: PropTypes.Color | 'action' | 'disabled' | 'error';
fontSize?: 'default' | 'inherit' | 'large' | 'medium' | 'small';
};
defaultComponent: D;
classKey: IconClassKey;
}
/**
*
* Demos:
*
* - [Icons](https://mui.com/components/icons/)
* - [Material Icons](https://mui.com/components/material-icons/)
*
* API:
*
* - [Icon API](https://mui.com/api/icon/)
*/
declare const Icon: OverridableComponent<IconTypeMap>;
export type IconClassKey =
| 'root'
| 'colorSecondary'
| 'colorAction'
| 'colorDisabled'
| 'colorError'
| 'colorPrimary'
| 'fontSizeInherit'
| 'fontSizeSmall'
| 'fontSizeLarge';
export type IconProps<
D extends React.ElementType = IconTypeMap['defaultComponent'],
P = {}
> = OverrideProps<IconTypeMap<P, D>, D>;
export default Icon;