From 1cec20b5c45f5209d1fa307d56d56451dff27e9a Mon Sep 17 00:00:00 2001 From: Szczepan Wikar <60351575+SzczepanWikar@users.noreply.github.com> Date: Sat, 13 Jan 2024 13:28:22 +0100 Subject: [PATCH] Revert "Finished secondary button" --- src/components/SecondaryButton.tsx | 36 ------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 src/components/SecondaryButton.tsx diff --git a/src/components/SecondaryButton.tsx b/src/components/SecondaryButton.tsx deleted file mode 100644 index 7182fe1..0000000 --- a/src/components/SecondaryButton.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import { Pressable, StyleSheet, Text } from 'react-native'; - -interface buttonProps { - onPress: any; -} - -const SecondaryButton = (param: buttonProps) => { - return ( - - Anuluj - - ); -}; - -const styles = StyleSheet.create({ - button: { - paddingVertical: 10, - paddingHorizontal: 50, - width: 279, - height: 36, - borderRadius: 10, - borderWidth: 1, - borderColor: '#D9D9D9', - gap: 10, - backgroundColor: '#FFFFFF', - }, - text: { - color: '#7A7A7A', - textAlign: 'center', - fontWeight: '400', - fontSize: 12, - lineHeight: 15, - }, -}); - -export default SecondaryButton;