UNPKG

iwelp

Version:
20 lines (19 loc) 619 B
export default FaceRating; /** * FaceRating component to display the rating in face icon * @param {number} ratings - the ratings * @param {string} className - the class name * @param {string} ariaLabel - the aria label * @param {string} label - the label * @returns {React.ReactElement} - FaceRating component */ declare function FaceRating({ ratings, className, ariaLabel, label }: number): React.ReactElement; declare namespace FaceRating { namespace propTypes { let ratings: any; let className: any; let ariaLabel: any; let label: any; } let displayName: string; }