UNPKG

658 BTypeScriptView Raw
1import * as React from 'react';
2export interface ToggleGroupProps extends React.HTMLProps<HTMLDivElement> {
3 /** Content rendered inside the toggle group */
4 children?: React.ReactNode;
5 /** Additional classes added to the toggle group */
6 className?: string;
7 /** Modifies the toggle group to include compact styling. */
8 isCompact?: boolean;
9 /** Disable all toggle group items under this component. */
10 areAllGroupsDisabled?: boolean;
11 /** Accessible label for the toggle group */
12 'aria-label'?: string;
13}
14export declare const ToggleGroup: React.FunctionComponent<ToggleGroupProps>;
15//# sourceMappingURL=ToggleGroup.d.ts.map
\No newline at end of file