Skip to content

Commit

Permalink
Fix on button component
Browse files Browse the repository at this point in the history
  • Loading branch information
ntorionbearstudio committed Dec 20, 2023
1 parent a0dc7db commit 781fc6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-ficus-ui",
"version": "1.0.0-beta3",
"version": "1.0.0-beta4",
"description": "React Native UI library forked from Magnus UI and inspired by Chakra UI",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
3 changes: 2 additions & 1 deletion src/components/button/button.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
Animated as RNAnimated,
Pressable as RNButton,
ActivityIndicator as RNActivityIndicator,
Platform,
} from 'react-native';

import { getStyle } from './button.style';
Expand Down Expand Up @@ -31,7 +32,7 @@ const Button: React.FunctionComponent<ButtonProps> = (incomingProps) => {
borderRadius: 'lg',
isLoading: false,
isDisabled: false,
loaderSize: 'lg',
loaderSize: Platform.OS === 'ios' ? 'lg' : 'xl',
loaderColor: 'white',
full: false,
position: 'relative',
Expand Down

0 comments on commit 781fc6e

Please sign in to comment.