mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 17:39:40 +02:00
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
import FontAwesome from '@expo/vector-icons/FontAwesome';
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
export const TabBarIcon = (props: {
|
|
name: React.ComponentProps<typeof FontAwesome>['name'];
|
|
color: string;
|
|
}) => {
|
|
return <FontAwesome size={28} style={styles.tabBarIcon} {...props} />;
|
|
};
|
|
|
|
export const styles = StyleSheet.create({
|
|
tabBarIcon: {
|
|
marginBottom: -3,
|
|
},
|
|
});
|