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