UNPKG

react-toolbox-legacy

Version:

Unofficial fork of the react-toolbox package, compatible with React v16

22 lines (18 loc) 505 B
import * as React from "react"; import ReactToolbox from "../index"; export interface FontIconProps extends ReactToolbox.Props { /** * Children to pass through the component. */ children?: React.ReactNode; /** * The key string for the icon you want be displayed. */ value?: React.ReactNode | string; /** * Additional properties passed to component root. */ [key: string]: any } export class FontIcon extends React.Component<FontIconProps, {}> { } export default FontIcon;