react-card-carousel-materialui
Version:
A full-screen card carousel designed in Material UI, drawing inspiration from the Tesla website.
15 lines (14 loc) • 480 B
TypeScript
import * as React from "react";
import PropTypes from "prop-types";
export declare const CardCarousel: {
({ open, onClose, items, }: {
open?: boolean | undefined;
onClose?: (() => void) | undefined;
items?: never[] | undefined;
}): React.JSX.Element;
propTypes: {
open: PropTypes.Requireable<boolean>;
onClose: PropTypes.Requireable<(...args: any[]) => any>;
items: PropTypes.Requireable<any[]>;
};
};