react-rating-star-with-type
Version:
This simple react rating star component with typescript support made by Ziaul Hoque Founder of Revuers.com
22 lines • 700 B
TypeScript
import React, { CSSProperties, ReactNode } from "react";
export interface IRatingStarProps {
value?: number;
count?: number;
size?: number | string;
isEdit?: boolean;
isHalf?: boolean;
valueShow?: boolean;
emptyIcon?: ReactNode;
halfIcon?: ReactNode;
filledIcon?: ReactNode;
activeColor?: string;
inactiveColor?: string;
classNames?: string;
style?: CSSProperties;
onChange?: (nextValue: number) => void;
activeColors?: string[];
}
declare function RatingStar(props: IRatingStarProps): React.JSX.Element;
declare const _default: React.MemoExoticComponent<typeof RatingStar>;
export default _default;
//# sourceMappingURL=RatingStar.d.ts.map