mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
4d520a8a7b
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
shared | ||
CHANGELOG.md | ||
Index.svelte | ||
Label.component.spec.ts | ||
Label.stories.svelte | ||
package.json | ||
README.md |
@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;