projects/maplander/components/src/lib/utils/models/filter-chip.ts
Properties |
icon |
icon:
|
Type : string[]
|
text |
text:
|
Type : string
|
type |
type:
|
Type : FilterChipType
|
import {FilterChipType} from '../enums/filter-chip-type';
export interface FilterChip {
type: FilterChipType;
text: string;
icon: string[];
}