File: ToggleGroupItemElement.d.ts

package info (click to toggle)
cockpit-machines 347-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 275,980 kB
  • sloc: javascript: 708,138; python: 14,367; cpp: 11,141; sh: 932; makefile: 159; xml: 88
file content (13 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <reference types="react" />
export declare enum ToggleGroupItemVariant {
    icon = "icon",
    text = "text"
}
export interface ToggleGroupItemElementProps {
    /** Content rendered inside the toggle group item */
    children?: React.ReactNode;
    /** Adds toggle group item variant styles */
    variant?: ToggleGroupItemVariant | 'icon' | 'text';
}
export declare const ToggleGroupItemElement: React.FunctionComponent<ToggleGroupItemElementProps>;
//# sourceMappingURL=ToggleGroupItemElement.d.ts.map