tht-buttons
v1.0.184
Published
Common buttons used throughout the THT projects
Downloads
6
Readme
tht-buttons
Common buttons used throughout the THT projects
Getting Started
Install the library with either Yarn:
yarn add tht-buttons
or npm:
npm install --save tht-buttons
Usage
import {BaseButton} from 'tht-buttons';
import {Text} from 'react-native';
function MyComponent() {
const child = <Text>THTButtons</Text>
return <BaseButton
onPress={() => console.log('hola')}
buttonStyle={{height: 10, width: 20, backgroundColor: "blue}}
child={child} />;
}