rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
13 lines (12 loc) • 357 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
type Props = {
color?: string;
icon?: 'heart' | 'star';
rating?: number;
size?: number;
style?: StyleProp<ViewStyle>;
total?: number;
};
export declare const Rating: ({ color, icon, rating, size, style, total, }: Props) => React.JSX.Element;
export {};