Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101374648
Icon.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Feb 9, 20:14
Size
2 KB
Mime Type
text/x-java
Expires
Tue, Feb 11, 20:14 (2 d)
Engine
blob
Format
Raw Data
Handle
24147199
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Icon.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { OverridableStringUnion } from '@mui/types';
import { Theme } from '../styles';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { IconClasses } from './iconClasses';
export interface IconPropsSizeOverrides {}
export interface IconPropsColorOverrides {}
export interface IconTypeMap<P = {}, D extends React.ElementType = 'span'> {
props: P & {
/**
* The base class applied to the icon. Defaults to 'material-icons', but can be changed to any
* other base class that suits the icon font you're using (e.g. material-icons-rounded, fas, etc).
* @default 'material-icons'
*/
baseClassName?: string;
/**
* The name of the icon font ligature.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<IconClasses>;
/**
* The color of the component.
* It supports both default and custom theme colors, which can be added as shown in the
* [palette customization guide](https://mui.com/material-ui/customization/palette/#adding-new-colors).
* @default 'inherit'
*/
color?: OverridableStringUnion<
| 'inherit'
| 'action'
| 'disabled'
| 'primary'
| 'secondary'
| 'error'
| 'info'
| 'success'
| 'warning',
IconPropsColorOverrides
>;
/**
* The fontSize applied to the icon. Defaults to 24px, but can be configure to inherit font size.
* @default 'medium'
*/
fontSize?: OverridableStringUnion<
'inherit' | 'large' | 'medium' | 'small',
IconPropsSizeOverrides
>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Icons](https://mui.com/material-ui/icons/)
* - [Material Icons](https://mui.com/material-ui/material-icons/)
*
* API:
*
* - [Icon API](https://mui.com/material-ui/api/icon/)
*/
declare const Icon: OverridableComponent<IconTypeMap> & { muiName: string };
export type IconProps<
D extends React.ElementType = IconTypeMap['defaultComponent'],
P = {},
> = OverrideProps<IconTypeMap<P, D>, D>;
export default Icon;
Event Timeline
Log In to Comment