@ga-innoval/react-native-ui
v0.12.1
Published
A collection of production-ready customizable components for React Native, following @ga-innoval design guidelines.
Downloads
16
Readme
@ga-innoval/react-native-ui
A collection of production-ready customizable components for React Native, following @ga-innoval design guidelines.
Installation
npm install @ga-innoval/react-native-ui
or
yarn add @ga-innoval/react-native-ui
Usage
import React from 'react';
import { View, Text } from 'react-native';
import { ChipButton } from '@ga-innoval/react-native-ui';
export function Component() {
return (
<View>
<ChipButton
text="Click me!"
backgroundColor={'green'}
onPress={() => console.log('Clicked!')}
icon="alert"
/>
</View>
);
}
Docs
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library