import { FC, ReactNode } from 'react'; import Container from '@/components/ui/Container'; import Rating from '@/components/ui/Rating'; import { ReviewParameters, ReviewProps } from '.'; type DefaultVariantProps = ReviewProps & { ReviewImage: ReactNode; ReviewPersonInfo: ReactNode; ReviewContent: ReactNode; }; export const DefaultVariant: FC = ({ stars, starsColor, activeStarsColor, showRatingLabel, backgroundColor, spacing, border, fluidContent, height, ReviewImage, ReviewPersonInfo, ReviewContent, }) => (
{ReviewImage}
{ReviewPersonInfo}
{ReviewContent}
);