dap-design-system
Version:
Official design system for the DÁP (dap.gov.hu)
19 lines (18 loc) • 788 B
TypeScript
import { default as Component } from '../../components/option-group/option-group.js';
/**
* `dap-ds-option-group`
* @summary An option group is a container for grouping related option items.
* Used with dap-ds-select to create grouped options that render as native optgroup elements.
* @element dap-ds-option-group
* @title - Option group
*
* @property {string} label - The label of the option group (displayed in native optgroup).
* @property {boolean} disabled - Whether all options in the group are disabled.
*
* @slot - The option items in this group.
*
* @csspart base - The main option group container.
* @csspart label - The label of the option group.
*/
declare const reactWrapper: import('@lit/react').ReactWebComponent<Component, {}>;
export default reactWrapper;