UNPKG

mfg-ui-components

Version:

React UI library with reusable components

10 lines (9 loc) 298 B
type StarRatingProps = { rating: number; max?: number; size?: number; emptyColor?: string; fullColor?: string; }; declare const RatingStars: ({ rating, max, size, fullColor, emptyColor, }: StarRatingProps) => import("react/jsx-runtime").JSX.Element; export default RatingStars;