import React from 'react';
import Button from '.';
const buttonProps = {
title: 'Press me!',
type: 'primary',
onPress: () => {},
testID: 'testButton'
};
export default {
title: 'Button'
};
export const PrimaryButton = () => ;
export const SecondaryButton = () => ;
export const LoadingButton = () => ;
export const DisabledButton = () => ;
export const DisabledLoadingButton = () => ;
export const CustomButton = () => (
);