@onesy/ui-react
Version:
UI for React
25 lines (24 loc) • 729 B
TypeScript
import React from 'react';
import { ISection } from '../Section/Section';
import { IMediaObject, IPropsAny } from '../types';
export declare type ISectionReviewsItem = {
name: string;
meta?: string;
description: string;
rating?: number;
image?: string | IMediaObject;
};
export declare type ISectionReviews = ISection & {
values?: ISectionReviewsItem[];
size?: 'small' | 'regular' | 'large';
AvatarProps?: IPropsAny;
TypeProps?: IPropsAny;
NameProps?: IPropsAny;
MetaProps?: IPropsAny;
DescriptionProps?: IPropsAny;
RatingProps?: IPropsAny;
ReviewProps?: IPropsAny;
ReviewsProps?: IPropsAny;
};
declare const Element: React.FC<ISectionReviews>;
export default Element;