UNPKG

cdbreact

Version:

Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps

33 lines (32 loc) 969 B
import React from "react"; import PropTypes from "prop-types"; interface Props { active?: boolean; children?: React.ReactNode; className?: string; color?: string; disabled?: boolean; hover?: boolean; info?: any; to?: string; href?: any; tag?: Function | string; style?: React.CSSProperties; } declare const ListGroupItem: { (props: Props): React.JSX.Element; propTypes: { active: PropTypes.Requireable<boolean>; children: PropTypes.Requireable<PropTypes.ReactNodeLike>; className: PropTypes.Requireable<string>; color: PropTypes.Requireable<string>; disabled: PropTypes.Requireable<boolean>; hover: PropTypes.Requireable<boolean>; tag: PropTypes.Requireable<string | ((...args: any[]) => any)>; }; defaultProps: { tag: string; }; }; export default ListGroupItem; export { ListGroupItem as CDBListGroupItem };