/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import React from 'react'; export interface Icons { [key: string]: IconProvider; } export interface IconPack { name: string; icons: Icons; } export interface IconProvider { toReactElement(props?: T): React.ReactElement; }