UNPKG

cdbreact

Version:

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

25 lines (24 loc) 721 B
import React from "react"; import PropTypes from "prop-types"; interface Props { active?: boolean; children?: React.ReactNode; className?: string; itemId?: string | number; tag?: any; } declare const CarouselItem: { (props: Props): JSX.Element; propTypes: { active: PropTypes.Requireable<boolean>; children: PropTypes.Requireable<PropTypes.ReactNodeLike>; className: PropTypes.Requireable<string>; itemId: PropTypes.Requireable<any>; tag: PropTypes.Requireable<string | ((...args: any[]) => any)>; }; defaultProps: { tag: string; }; }; export default CarouselItem; export { CarouselItem as CDBCarouselItem };