UNPKG

247 BTypeScriptView Raw
1/// <reference types="react" />
2interface FontIconsProps {
3 family?: string;
4}
5declare const FontIcons: {
6 ({ family }: FontIconsProps): JSX.Element;
7 defaultProps: {
8 family: string;
9 };
10};
11export default FontIcons;