import React from "react"; import { View, StyleSheet } from "react-native"; import { AtomicButton } from "@umituz/react-native-design-system/atoms"; interface EditProfileActionsProps { isSaving?: boolean; onSave: () => void; onCancel?: () => void; labels: { saveButton: string; cancelButton: string; }; } export const EditProfileActions: React.FC = ({ isSaving, onSave, onCancel, labels, }) => { return ( {labels.saveButton} {onCancel && ( {labels.cancelButton} )} ); }; const styles = StyleSheet.create({ actions: { marginTop: 32, gap: 12, }, });