@idui/react-toggle-controls
Version:
React Toggle Controls
18 lines (17 loc) • 691 B
TypeScript
import { RadioColorsSet } from './types';
interface RadioToggleProps {
size: string;
}
export declare const Toggle: import("styled-components").StyledComponent<"div", any, RadioToggleProps, never>;
interface RadioHandleProps {
disabled: boolean;
size: string;
}
export declare const Handle: import("styled-components").StyledComponent<"div", any, RadioHandleProps, never>;
interface RadioContainerProps {
size: string;
colors: RadioColorsSet;
}
export declare const Container: import("styled-components").StyledComponent<"label", any, RadioContainerProps, never>;
export declare const Label: import("styled-components").StyledComponent<"div", any, {}, never>;
export {};