File size: 306 Bytes
0ad74ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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;
```