cdbreact
Version:
Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps
21 lines (20 loc) • 487 B
TypeScript
import React from "react";
import PropTypes from "prop-types";
interface Props {
options?: [any];
selected?: string;
className?: string;
optionClassName?: any;
}
declare const Select: {
(props: Props): React.JSX.Element;
propTypes: {
options: PropTypes.Requireable<any[]>;
selected: PropTypes.Requireable<string>;
};
defaultProps: {
tag: string;
};
};
export default Select;
export { Select as CDBSelect };