UNPKG

expo-like-button

Version:

Animated Like Button Component for React native apps made using expo.

15 lines 468 B
/// <reference types="react" /> declare type LikeButtonProps = { liked?: boolean | undefined; onPress?: () => void; iconSize?: number; customLikedComponent?: React.ReactNode; likedColor?: string; likedIconName?: string | any; customUnlikedComponent?: React.ReactNode; unlikedColor?: string; unlikedIconName?: string | any; [key: string]: any; }; export type { LikeButtonProps }; //# sourceMappingURL=types.d.ts.map