lucid-ui
Version:
A UI component library from AppNexus.
43 lines (42 loc) • 992 B
TypeScript
/// <reference types="react" />
import { StandardProps } from '../../util/component-types';
interface ISwitchLabeledProps extends StandardProps {
isDisabled: boolean;
isSelected: boolean;
onSelect: any;
}
declare const SwitchLabeled: {
(props: ISwitchLabeledProps): JSX.Element;
defaultProps: {
isDisabled: boolean;
isSelected: boolean;
onSelect: (...args: any[]) => void;
};
displayName: string;
peek: {
description: string;
categories: string[];
madeFrom: string[];
};
Label: {
(): null;
displayName: string;
peek: {
description: string;
};
propName: string;
propTypes: {
children: any;
};
};
propTypes: {
className: any;
style: any;
Label: any;
isDisabled: any;
isSelected: any;
onSelect: any;
isIncludeExclude: any;
};
};
export default SwitchLabeled;