rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
17 lines (16 loc) • 544 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
type Props = {
defaultRating?: number;
iconColor?: string;
justRating?: boolean;
readOnly?: boolean;
reviews?: string[];
size?: number;
style?: StyleProp<ViewStyle>;
textColor?: string;
textSize?: number;
onChange?: (value: number) => void;
};
export declare const StarRating: ({ defaultRating, iconColor, justRating, onChange, readOnly, reviews, size, style, textColor, textSize, }: Props) => React.JSX.Element;
export {};