react-toolbox/components/font_icon/index.d.ts

18 lines
412 B
TypeScript
Raw Normal View History

import * as React from "react";
import ReactToolbox from "../index";
2016-07-24 14:17:16 +03:00
interface FontIconProps extends ReactToolbox.Props {
2016-07-24 14:17:16 +03:00
/**
* Children to pass through the component.
*/
children?: React.ReactNode;
2016-07-24 14:17:16 +03:00
/**
* The key string for the icon you want be displayed.
*/
value?: React.ReactNode | string;
2016-07-24 14:17:16 +03:00
}
export class FontIcon extends React.Component<FontIconProps, {}> { }
2016-07-24 14:17:16 +03:00
export default FontIcon;