diff --git a/components/Button.tsx b/components/Button.tsx
index 46deee4..bd62fd4 100644
--- a/components/Button.tsx
+++ b/components/Button.tsx
@@ -1,12 +1,12 @@
import { StyleSheet, Text, View} from 'react-native';
-export default function Button({ title='', theme={}, onPress, eStyle={} }:any){
+export default function Button({ title='', theme={}, onPress, style={} }:any){
return (
- {title}
+ {title}
)
}
-const style = (theme:any) => {
+const cstyle = (theme:any) => {
return StyleSheet.create({
container: {
},