UNPKG

preact-material-components

Version:
12 lines (11 loc) 403 B
import MaterialComponent from '../Base/MaterialComponent'; export interface IIconProps { } export interface IIconState { } export declare class Icon<PropsType = {}, StateType = {}> extends MaterialComponent<IIconProps & PropsType, IIconState & StateType> { protected componentName: string; protected mdcProps: string[]; protected materialDom(props: any): JSX.Element; } export default Icon;