You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
454 B

import React from "react";
import { StyleProp, ViewStyle } from "react-native";
export declare type StarProps = {
starImage?: string;
fill?: boolean;
size?: number;
selectedColor?: string;
unSelectedColor?: string;
isDisabled?: boolean;
starStyle?: StyleProp<ViewStyle>;
position?: number;
starSelectedInPosition?: (number: any) => void;
};
declare const Star: React.FunctionComponent<StarProps>;
export default Star;