UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

11 lines 402 B
import * as React from "react"; interface ExpandableCardProps { className?: string; title: string; preview: React.ReactNode; expandedContent: React.ReactNode; defaultExpanded?: boolean; } declare const ExpandableCard: React.ForwardRefExoticComponent<ExpandableCardProps & React.RefAttributes<HTMLDivElement>>; export { ExpandableCard }; //# sourceMappingURL=expandable-card.d.ts.map