@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
9 lines (8 loc) • 431 B
TypeScript
import { type RatingIconsPropsType } from "./RatingIcons";
type RatingCompactPropsType = Pick<RatingIconsPropsType, "className" | "value" | "size"> & {
icon?: JSX.Element;
count?: number;
};
export declare function formatRatingValue(value: number): string | number;
export declare function RatingCompact({ className, value, count, size, icon, }: RatingCompactPropsType): import("react/jsx-runtime").JSX.Element;
export {};