react-native-bpk-component-spinner
v3.0.1
Published
Backpack React Native spinner component.
Downloads
77
Maintainers
Keywords
Readme
react-native-bpk-component-spinner
Backpack React Native spinner component.
Installation
npm install react-native-bpk-component-spinner --save-dev
Usage
import React, { Component } from 'react';
import { View, StyleSheet, Text } from 'react-native';
import BpkSpinner from 'react-native-bpk-component-spinner';
import { spacingBase } from 'bpk-tokens/tokens/base.react.native';
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: spacingBase,
}
});
export default class App extends Component {
render() {
return (
<View style={styles.container}>
<BpkSpinner />
<BpkSpinner small />
<BpkSpinner type="light" />
<BpkSpinner type="dark" />
</View >
);
}
}
Props
| Property | PropType | Required | Default Value | | ----------- | ------------------------------------- | -------- | ------------- | | small | bool | false | false | | theme | See Theme Props below | false | null | | type | oneOf('primary', 'light', 'dark') | false | primary |
Theme Props
Primary
spinnerPrimaryColor