File size: 323 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# `@gradio/label`

```html

<script>

	import { BaseLabel } from "@gradio/label";

</script>

```

BaseLabel
```javascript

	export let value: {

		label?: string;

		confidences?: { label: string; confidence: number }[];

	};

	export let color: string | undefined = undefined;

	export let selectable = false;

```