@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
19 lines (18 loc) • 438 B
TypeScript
import React from "react";
interface Testimonial {
quote: string;
name: string;
role: string;
avatar?: string;
}
interface TestimonialSectionProps {
testimonials: Testimonial[];
title?: string;
sectionId?: string;
backgroundColor?: string;
fullHeight?: boolean;
snap?: boolean;
animateOnScroll?: boolean;
}
export declare const TestimonialSection: React.FC<TestimonialSectionProps>;
export {};