small fixes to time tickets

This commit is contained in:
jfrye122
2023-07-26 08:29:26 -04:00
parent 1bc46e87bf
commit bf65b374f8
2 changed files with 33 additions and 29 deletions

View File

@@ -9,7 +9,7 @@ const mapDispatchToProps = (dispatch) => ({
signOut: () => dispatch(employeeSignOut()),
});
export function SignOutButton({ signOut }) {
export function SignOutButton({ signOut,style }) {
const { t } = useTranslation();
return (
<Button
@@ -17,6 +17,7 @@ export function SignOutButton({ signOut }) {
compact={true}
onPress={() => signOut()}
icon="logout"
style={style}
>
<Text style={{fontSize: 12}}>{t("general.actions.logout")}</Text>
</Button>