hcmstorybook
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
15 lines (14 loc) • 388 B
TypeScript
/// <reference types="react" />
import PropTypes from 'prop-types';
import './ToggleSwitch.css';
export declare const ToggleSwitch: {
({ label1, label2 }: any): JSX.Element;
propTypes: {
label1: PropTypes.Requireable<string>;
label2: PropTypes.Requireable<string>;
};
defaultProps: {
label1: string;
label2: string;
};
};