UNPKG

kupos-ui-components-lib

Version:

A reusable UI components package

13 lines (12 loc) 295 B
import React from "react"; interface RatingHoverProps { serviceItem: any; isSoldOut: boolean; colors: any; t?: (key: string) => string; translation?: { [key: string]: string; }; } declare const RatingHover: React.FC<RatingHoverProps>; export default RatingHover;