# kevvor-react-native-ui-kit

> I often find myself rewriting and copy/pasting my custom React Native components across projects.

Latest version **0.1.3** (published 2018-03-21) · ISC license · 0 weekly downloads

## Install

```sh
npm install kevvor-react-native-ui-kit
pnpm add kevvor-react-native-ui-kit
yarn add kevvor-react-native-ui-kit
bun add kevvor-react-native-ui-kit
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2018-03-21 |
| First published | 2018-03-21 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | kevvor |
| Maintainers | kevvor |
| Keywords | react, react-native, ui |

## Links

- npm: https://www.npmjs.com/package/kevvor-react-native-ui-kit
- Repository: https://github.com/kevvor/react-native-ui-kit
- Homepage: https://github.com/kevvor/react-native-ui-kit#readme
- Issues: https://github.com/kevvor/react-native-ui-kit/issues
- npm.io page: https://npm.io/package/kevvor-react-native-ui-kit

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2018-03-21
- 0.1.2 — 2018-03-21
- 0.1.1 — 2018-03-21
- 0.1.0 — 2018-03-21

## README

## React Native UI Kit

I often find myself rewriting and copy/pasting my custom React Native components across projects.

This repo addresses that by providing a central place to store all my reusable components.

#### Getting Started
```npm install kevvor-react-native-ui-kit```

#### Usage:

Button:
```js
import React, { Component } from 'react';
import { View, Text } from 'react-native';

import { Button } from 'kevvor-react-native-ui-kit';

class ExampleApp extends Component {
    render() {
        return (
            <View>
                <Text>Hello, World</Text>
                <Button
                    color='hexCode'
                    height='int'
                    width='int'
                    fontSize='int' // Font size of button text
                >
                    "Button Title"
                </Button>
            </View>
        );
    }
}

```

---
_Source: https://npm.io/package/kevvor-react-native-ui-kit · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
