diff --git a/src/components/SecondaryButton.tsx b/src/components/SecondaryButton.tsx new file mode 100644 index 0000000..7182fe1 --- /dev/null +++ b/src/components/SecondaryButton.tsx @@ -0,0 +1,36 @@ +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;