@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
10 lines • 425 B
TypeScript
import { SwitchProps as DefaultSwitchProps } from 'antd';
import React from 'react';
import './style.less';
type CondoSwitchSize = 'small' | 'large';
export type SwitchProps = Pick<DefaultSwitchProps, 'className' | 'id' | 'autoFocus' | 'checked' | 'defaultChecked' | 'disabled' | 'onChange'> & {
size: CondoSwitchSize;
};
export declare const Switch: React.FC<SwitchProps>;
export {};
//# sourceMappingURL=switch.d.ts.map