react-native-simi-comps
Version:
Simple Minimal Components for React Native
9 lines • 384 B
JavaScript
import React from "react";
import Icon from "./Icon";
import View from "./View";
export default function TabBarIcon(_a) {
var name = _a.name, color = _a.color;
return (React.createElement(View, { style: { marginBottom: -3, backgroundColor: "transparent" } },
React.createElement(Icon, { size: 30, name: name, color: color })));
}
//# sourceMappingURL=TabBarIcon.js.map