projects/netgrif-components-core/src/lib/data-fields/models/icon.ts
Properties |
key |
key:
|
Type : string
|
type |
type:
|
Type : string
|
value |
value:
|
Type : string
|
export interface Icon {
key: string;
type: string;
value: string;
}
export enum IconType {
MATERIAL = 'material',
SVG = 'svg',
}