Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / presets / Ratings / typings.d.ts
Size: Mime:
import { ReactNode } from 'react';
export interface RatingNode {
    (props?: RatingProps): ReactNode;
}
export interface RatingProps {
    className?: string;
    shouldShowCount?: boolean;
    countPosition?: string;
    starCount?: number;
    starRating?: number;
    defaultColor?: string;
    fillColor?: string;
    stroke?: string;
    width?: number;
    starGap?: number;
    isUserCount?: boolean;
    userRating?: number;
    renderWrapper?: RatingNode;
    renderContainer?: RatingNode;
    children?: RatingNode;
    renderStars?: RatingNode;
    renderCount?: RatingNode;
}