UNPKG

@ftrack/react-toolbox

Version:

A set of React components implementing Google's Material Design specification with the power of CSS Modules.

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;