mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
9 lines
258 B
Handlebars
9 lines
258 B
Handlebars
import FontAwesome from "@expo/vector-icons/FontAwesome";
|
|
|
|
export const TabBarIcon = (props: {
|
|
name: React.ComponentProps<typeof FontAwesome>["name"];
|
|
color: string;
|
|
}) => {
|
|
return <FontAwesome size={24} style=\{{ marginBottom: -3 }} {...props} />;
|
|
};
|