react-native-xenon
Version:
A powerful in-app debugging tool for React Native.
20 lines (19 loc) • 403 B
JavaScript
;
import { Image } from 'react-native';
import colors from "../../../theme/colors.js";
import { jsx as _jsx } from "react/jsx-runtime";
export default function Icon({
source,
size,
color = colors.black
}) {
return /*#__PURE__*/_jsx(Image, {
source: source,
style: {
width: size,
height: size,
tintColor: color
}
});
}
//# sourceMappingURL=Icon.js.map