UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

20 lines (18 loc) 411 B
export type SelectInfoProps = { disabled?: boolean; icon?: React.ReactNode; rightIcon?: React.ReactNode; src?: string; subtitle?: string; title?: string; width?: number; classes?: { color?: string; popper?: string; primary?: string; secondary?: string; }; clickAndClose?: boolean; } declare const SelectInfo: React.ComponentType<SelectInfoProps>; export default SelectInfo;