UNPKG

363 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2interface IconItemProps {
3 name: string;
4}
5/**
6 * An individual icon with a caption and an example (passed as `children`).
7 */
8export declare const IconItem: FunctionComponent<IconItemProps>;
9/**
10 * Show a grid of icons, as specified by `IconItem`.
11 */
12export declare const IconGallery: FunctionComponent;
13export {};