UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

40 lines (39 loc) 1.46 kB
export default SelectOption; /** * @deprecated - Components in the legacy folder (/src/legacy) are deprecated. Please use a component from the components folder (/src/components) instead. Legacy components may not follow accessibility standards. **/ declare class SelectOption extends React.Component<any, any, any> { constructor(props: any); constructor(props: any, context: any); render(): JSX.Element; } declare namespace SelectOption { namespace propTypes { let active: PropTypes.Requireable<boolean>; let children: PropTypes.Requireable<PropTypes.ReactNodeLike>; let className: PropTypes.Requireable<string>; let id: PropTypes.Requireable<string>; let label: PropTypes.Requireable<string>; let title: PropTypes.Requireable<string>; let value: PropTypes.Requireable<string>; } namespace defaultProps { let active_1: boolean; export { active_1 as active }; let children_1: any; export { children_1 as children }; let className_1: string; export { className_1 as className }; let id_1: string; export { id_1 as id }; let label_1: string; export { label_1 as label }; let title_1: string; export { title_1 as title }; let value_1: string; export { value_1 as value }; } let displayName: string; } import React from 'react'; import PropTypes from 'prop-types';