@react-pakistan/react-ui-collection
Version:
React UI Collection built upon React Storybook
155 lines (154 loc) • 3.61 kB
TypeScript
export interface IProductReviewProps {
/**
* Font Family property for H4 Product Review component
*/
fontFamilyH4Product: string;
/**
* Text Align property for H4 Product Review component
*/
textAlignH4Product?: string;
/**
* Text Transform property for H4 Product Review component
*/
textTransformH4Product?: string;
/**
* Heading for H4 Product Review component
*/
headingH4Product: string;
/**
* Rating property for Star Rating component
*/
rating: number;
/**
* Color property for Star Rating component
*/
starRatedColor: string;
/**
* Total number of stars for Star Rating component
*/
numberOfStars: number;
/**
* Dimensions for stars for Star Rating component
*/
starDimension?: string;
/**
* Font Family property for H5 component
*/
fontFamilyH5: string;
/**
* Text Align property for H5 component
*/
textAlignH5?: string;
/**
* Text Transform property for H5 component
*/
textTransformH5?: string;
/**
* Heading for H5 component
*/
headingH5: string;
/**
* NickName Heading for H5 component
*/
nicknameH5: string;
/**
* Review Heading for H5 component
*/
reviewH5: string;
/**
* Rating Heading for H5 component
*/
ratingH5: string;
/**
* Font Family property for Time Text component
*/
fontFamilyTimeText: string;
/**
* Text Align property for Time Text compoment
*/
textAlignTimeText?: string;
/**
* Color property for Time Text component
*/
colorTimeText?: string;
/**
* Text for Time Text component
*/
timeText: string;
/**
* Font Family property for Main Text component
*/
fontFamilyMainText: string;
/**
* Font Size property for Main Text component
*/
fontSizeMainText?: string;
/**
* Font Weight property for Main Text component
*/
fontWeightMainText?: number;
/**
* Text Align property for Main Text compoment
*/
textAlignMainText?: string;
/**
* Color property for Main Text component
*/
colorMainText?: string;
/**
* Text for Main Text component
*/
textMainText: string;
/**
* Icon Color
*/
likeIconColor?: string;
/**
* Color property for HR component
*/
lineColor: string;
/**
* Font Family property for H4 Add Review component
*/
fontFamilyH4Add: string;
/**
* Text Align property for H4 Add Review component
*/
textAlignH4Add?: string;
/**
* Text Transform property for H4 Add Review component
*/
textTransformH4Add?: string;
/**
* Heading for H4 Add Review component
*/
headingH4Add: string;
/**
* Font Family property for Disclaimer Text component
*/
fontFamilyDisclaimerText: string;
/**
* Font Size property for Disclaimer Text component
*/
fontSizeDisclaimerText?: string;
/**
* Text Align property for Disclaimer Text component
*/
textAlignDisclaimerText?: string;
/**
* Color property for Disclaimer Text component
*/
colorDisclaimerText?: string;
/**
* Text for Disclaimer Text component
*/
textDisclaimerText: string;
/**
* Color property for Disclaimer Span Text component
*/
colorDisclaimerTextSpan?: string;
/**
* Text for Disclaimer Span Text component
*/
textDisclaimerTextSpan: string;
}