@dndbuilder.com/react
Version:
Drag and drop builder for React
15 lines (14 loc) • 387 B
TypeScript
import { default as React } from 'react';
import { IconType } from 'react-icons/lib';
export interface RatingProps {
className?: string;
count: number;
value: number;
size?: number;
isHalf?: boolean;
emptyIcon?: IconType;
halfIcon?: IconType;
fullIcon?: IconType;
}
export declare const Rating: React.FC<RatingProps>;
//# sourceMappingURL=rating.d.ts.map