@vertisanpro/flowbite-react
Version:
Non-Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 356 B
TypeScript
import type { FlowbiteRatingTheme } from './Rating';
import type { FlowbiteStarSizes } from './RatingStar';
export type RatingContext = {
theme: FlowbiteRatingTheme;
size?: keyof FlowbiteStarSizes;
};
export declare const RatingContext: import("react").Context<RatingContext | undefined>;
export declare function useRatingContext(): RatingContext;