File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/components/dynamic-label Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1916,7 +1916,7 @@ export namespace JSX {
19161916 }
19171917}
19181918
1919- // @beta (undocumented)
1919+ // @public
19201920export interface Label <T = LabelValue > {
19211921 icon? : string | Icon ;
19221922 text? : string ;
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ import { Icon } from '../../interface';
22
33export type LabelValue = string | number | boolean | null | undefined ;
44
5+ /**
6+ * Represents a label that can be displayed in the `limel-dynamic-label` component.
7+ * Each label has a value that is used to match with the current value of the component.
8+ *
9+ * @public
10+ */
511export interface Label < T = LabelValue > {
612 /**
713 * The value of the label
You can’t perform that action at this time.
0 commit comments