This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/presentation/react-native/ui/TabBarIcon.tsx

14 lines
332 B
TypeScript
Raw Permalink Normal View History

import FontAwesome from "@expo/vector-icons/FontAwesome"
/**
* @see https://icons.expo.fyi/
* @param props
* @returns
*/
export const TabBarIcon: React.FC<{
name: React.ComponentProps<typeof FontAwesome>["name"]
color: string
}> = (props) => {
2024-03-24 23:41:23 +01:00
return <FontAwesome size={28} style={[{ marginBottom: -3 }]} {...props} />
}