wix-style-react
Version:
wix-style-react
18 lines • 702 B
TypeScript
export default ToggleIcon;
declare class ToggleIcon extends React.Component<any, any, any> {
static displayName: string;
static propTypes: {
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
selected: PropTypes.Requireable<boolean>;
value: PropTypes.Requireable<string>;
tooltipText: PropTypes.Requireable<string>;
tooltipProps: PropTypes.Requireable<PropTypes.InferProps<any>>;
disabled: PropTypes.Requireable<boolean>;
};
constructor(props: any);
constructor(props: any, context: any);
render(): React.JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=ToggleIcon.d.ts.map