Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Apr 18, 2024
1 parent 4c7e151 commit ba4dcef
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/app/components/metergroup/metergroup.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,25 @@ export interface MeterGroupTemplates {
class?: string;
}): TemplateRef<any>;
}

/**
* Represents a meter item configuration.
* @group Interface
*/
export interface MeterItem {
/**
* Label of the meter item.
*/
label?: string;
/**
* Value of the meter item.
*/
value?: number;
/**
* Color of the meter item.
*/
color?: string;
/**
* Icon of the meter item.
*/
icon?: string;
}

0 comments on commit ba4dcef

Please sign in to comment.