UNPKG

xlibs-components

Version:

Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications

20 lines 989 B
import { animatedTestimonialsConfig, testimonialCardConfig, testimonialContentConfig, navigationButtonConfig } from "@/configs/aceternity/animated-testimonials.config"; type Testimonial = { quote: string; name: string; designation: string; src: string; }; interface AnimatedTestimonialsProps { testimonials: Testimonial[]; autoplay?: boolean; variant?: keyof typeof animatedTestimonialsConfig.variants; size?: keyof typeof animatedTestimonialsConfig.sizes; cardVariant?: keyof typeof testimonialCardConfig.variants; contentVariant?: keyof typeof testimonialContentConfig.variants; buttonVariant?: keyof typeof navigationButtonConfig.variants; className?: string; } export declare const AnimatedTestimonials: ({ testimonials, autoplay, variant, size, cardVariant, contentVariant, buttonVariant, className, }: AnimatedTestimonialsProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=animated-testimonials.d.ts.map