UNPKG

@cavilha/rating

Version:

A component that serve to indicate an assessment status, contemplating different viewing options.

11 lines (10 loc) 352 B
import * as S from '../Rating.styles'; export declare type RatingProps = { ratioValue: number; counter: number; link?: string; mode?: 'default' | 'counter' | 'score'; className?: string; } & S.Variants; declare const Info: ({ ratioValue, counter, link, mode, className }: RatingProps) => JSX.Element; export default Info;