flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
17 lines (16 loc) • 488 B
TypeScript
import type { ComponentProps, FC } from "react";
import type { DeepPartial } from "../../types";
export interface FlowbiteRatingAdvancedTheme {
base: string;
label: string;
progress: {
base: string;
fill: string;
label: string;
};
}
export interface RatingAdvancedProps extends ComponentProps<"div"> {
percentFilled?: number;
theme?: DeepPartial<FlowbiteRatingAdvancedTheme>;
}
export declare const RatingAdvanced: FC<RatingAdvancedProps>;