MCPcopy
hub / github.com/man-group/dtale / ButtonToggleProps

Interface ButtonToggleProps

frontend/static/ButtonToggle.tsx:12–21  ·  view source on GitHub ↗

Component properties for ButtonToggle

Source from the content-addressed store, hash-verified

10
11/** Component properties for ButtonToggle */
12interface ButtonToggleProps {
13 options: ButtonToggleOption[];
14 update: (value?: any) => void;
15 defaultValue?: any;
16 allowDeselect?: boolean;
17 disabled?: boolean;
18 className?: string;
19 compact?: boolean;
20 style?: Partial<React.CSSProperties>;
21}
22
23/** Class for defining a Bootstrap-style button toggle */
24const ButtonToggle: React.FC<ButtonToggleProps> = ({

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected