UNPKG

cdbreact

Version:

Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps

21 lines (20 loc) 486 B
/// <reference types="react" /> import PropTypes from "prop-types"; interface Props { options?: [any]; selected?: string; className?: string; optionClassName?: any; } declare const Select: { (props: Props): JSX.Element; propTypes: { options: PropTypes.Requireable<any[]>; selected: PropTypes.Requireable<string>; }; defaultProps: { tag: string; }; }; export default Select; export { Select as CDBSelect };