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.
25 lines
800 B
25 lines
800 B
import { ViewStyle, TextStyle, StyleProp } from 'react-native';
|
|
import { RneFunctionComponent } from '../helpers';
|
|
import { ButtonProps } from '../Button';
|
|
declare type ButtonInformation = {
|
|
title: string;
|
|
icon?: string;
|
|
buttonStyle?: StyleProp<ViewStyle>;
|
|
titleStyle?: StyleProp<TextStyle>;
|
|
};
|
|
export interface PricingCardProps {
|
|
containerStyle?: StyleProp<ViewStyle>;
|
|
wrapperStyle?: StyleProp<ViewStyle>;
|
|
title?: string;
|
|
price?: string | number;
|
|
info?: string[];
|
|
button?: ButtonProps | ButtonInformation;
|
|
color?: string;
|
|
onButtonPress?(): void;
|
|
titleStyle?: StyleProp<TextStyle>;
|
|
pricingStyle?: StyleProp<TextStyle>;
|
|
infoStyle?: StyleProp<TextStyle>;
|
|
}
|
|
export declare const PricingCard: RneFunctionComponent<PricingCardProps>;
|
|
export {};
|