@oxyhq/services
Version:
Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀
22 lines (21 loc) • 463 B
JavaScript
;
import React from 'react';
import { Ionicons } from '@expo/vector-icons';
import { jsx as _jsx } from "react/jsx-runtime";
const OxyIcon = ({
name,
size = 24,
color = '#000',
style
}) => {
// Handle both string and Ionicons name types
const iconName = name;
return /*#__PURE__*/_jsx(Ionicons, {
name: iconName,
size: size,
color: color,
style: style
});
};
export default OxyIcon;
//# sourceMappingURL=OxyIcon.js.map