cdbreact
Version:
Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps
22 lines (21 loc) • 615 B
TypeScript
import React from "react";
import PropTypes from "prop-types";
interface Props {
children?: React.ReactNode;
className?: string;
tag?: [Function, string];
as?: any;
}
declare const CarouselCaption: {
(props: Props): JSX.Element;
propTypes: {
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
className: PropTypes.Requireable<string>;
tag: PropTypes.Requireable<string | ((...args: any[]) => any)>;
};
defaultProps: {
tag: string;
};
};
export default CarouselCaption;
export { CarouselCaption as CDBCarouselCaption };