UNPKG

@cds/core

Version:

Clarity Design System - common components, themes, and utilties

29 lines (28 loc) 606 B
import { CdsInternalControlGroup } from '@cds/core/forms'; /** * Checkbox Group * * ```typescript * import '@cds/core/checkbox'; * ``` * * ```html * <cds-checkbox-group> * <label>Select an item</label> * <cds-checkbox> * <label>Test</label> * <input type="checkbox" /> * </cds-checkbox> * * <cds-checkbox> * <label>Test</label> * <input type="checkbox" /> * </cds-checkbox> * </cds-checkbox-group> * ``` * * @element cds-checkbox-group * @slot - For projecting checkbox controls */ export declare class CdsCheckboxGroup extends CdsInternalControlGroup { }