gradio/js/label
Gradio PR Bot b400706fb6
chore: update versions (#9970)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-11-27 18:10:49 -05:00
..
shared Add show_heading param to gr.Label (#9987) 2024-11-27 19:26:23 +00:00
CHANGELOG.md chore: update versions (#9970) 2024-11-27 18:10:49 -05:00
Index.svelte Add show_heading param to gr.Label (#9987) 2024-11-27 19:26:23 +00:00
Label.component.spec.ts Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00
Label.stories.svelte Add show_heading param to gr.Label (#9987) 2024-11-27 19:26:23 +00:00
package.json chore: update versions (#9970) 2024-11-27 18:10:49 -05:00
README.md Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00

@gradio/label

<script>
	import { BaseLabel } from "@gradio/label";
</script>

BaseLabel

	export let value: {
		label?: string;
		confidences?: { label: string; confidence: number }[];
	};
	export let color: string | undefined = undefined;
	export let selectable = false;