mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
14 lines
318 B
Svelte
14 lines
318 B
Svelte
<script>
|
|
export let story = undefined;
|
|
|
|
import { Tooltip } from "../Tooltip";
|
|
import FormLabel from "./FormLabel.svelte";
|
|
</script>
|
|
|
|
{#if story === 'tooltip'}
|
|
<FormLabel>
|
|
<Tooltip triggerText="Label">This is the content of the tooltip.</Tooltip>
|
|
</FormLabel>
|
|
{:else}
|
|
<FormLabel>Label</FormLabel>
|
|
{/if}
|