native-x-spinner
This component adds space between to other components
Install
Yarn
yarn add native-x-spinner
NPM
npm install native-x-spinner
Usage
import { Spinner } from 'native-x-spinner'
function MyComponent() {
return (
<Stack>
...
<Spinner />
...
</Stack>
)
}
API
Property | Default Value | Usage |
---|
animating?: boolean | true | Animate the spinner |
color?: string | COLOR.SECONDARY | Color of spinner |
size?: string | 'normal' | Valid values: 'x-small', 'small', 'normal', 'large', 'x-large' |
Automatic Release
Here is an example of the release type that will be done based on a commit messages:
Commit message | Release type |
---|
fix: [comment] | Patch Release |
feat: [comment] | Minor Feature Release |
perf: [comment] | Major Feature Release |
doc: [comment] | No Release |
refactor: [comment] | No Release |
chore: [comment] | No Release |