carbon-components-svelte/src/Select/SelectItemGroup.svelte
2024-11-11 21:35:48 -08:00

11 lines
309 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} {disabled} class:bx--select-optgroup={true} {...$$restProps}>
<slot />
</optgroup>