mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
16 lines
339 B
Svelte
16 lines
339 B
Svelte
<script>
|
|
/** Set to `true` to disable the optgroup element */
|
|
export let disabled = false;
|
|
|
|
/** Specify the label attribute of the optgroup element */
|
|
export let label = "Provide label";
|
|
</script>
|
|
|
|
<optgroup
|
|
label="{label}"
|
|
disabled="{disabled}"
|
|
class:bx--select-optgroup="{true}"
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</optgroup>
|