import { FC, ReactNode } from 'react'; import Container from '@/components/ui/Container'; import { TestimonialParameters } from '.'; type WithLargeAvatarVariantProps = Pick< TestimonialParameters, 'backgroundColor' | 'spacing' | 'border' | 'fluidContent' | 'height' > & { testimonialPrimaryImage: ReactNode; testimonialContent: ReactNode; testimonialAuthor: ReactNode; testimonialSecondaryImage: ReactNode; }; export const DefaultVariant: FC = ({ testimonialPrimaryImage, testimonialContent, testimonialAuthor, testimonialSecondaryImage, backgroundColor, spacing, border, fluidContent, height, }) => (
{testimonialSecondaryImage}
{testimonialContent}
{testimonialPrimaryImage}
{testimonialAuthor}
);