All files / lib/components/buttons CrossButton.d.ts

100% Statements 0/0
100% Branches 0/0
100% Functions 0/0
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21                                         
import React from 'react';
import { ViewStyle, StyleProp, ButtonProps } from 'react-native';
import { Color } from 'csstype';
export interface ICrossButtonProps {
    color?: Color;
    iconName?: string;
    backgroundColor?: Color;
    style?: StyleProp<ViewStyle>;
    title?: string;
    size?: number;
    disabled?: boolean;
    mode?: 'text' | 'outlined' | 'contained';
    buttonStyle?: ButtonProps;
    onPress?: () => void;
    compact?: boolean;
}
export declare class CrossButton extends React.Component<ICrossButtonProps> {
    render(): JSX.Element;
}
export default CrossButton;
//# sourceMappingURL=CrossButton.d.ts.map