UNPKG

503 BTypeScriptView Raw
1import { NbIcon } from './icon';
2export interface NbIcons {
3 [key: string]: NbIcon | string;
4}
5export declare enum NbIconPackType {
6 SVG = "svg",
7 FONT = "font"
8}
9export interface NbIconPackParams {
10 packClass?: string;
11 [name: string]: any;
12}
13export interface NbFontIconPackParams extends NbIconPackParams {
14 iconClassPrefix?: string;
15}
16export interface NbIconPack {
17 name: string;
18 type: NbIconPackType;
19 icons: Map<string, NbIcon | string>;
20 params: NbIconPackParams;
21}