import React from "react"; import Svg from "react-native-svg"; import { icons } from "./IconRegistry"; export type RadixIconName = keyof typeof icons; interface RadixIconProps { name?: RadixIconName; size?: number; color?: string; } const RadixIcon: React.FC = ({ name = "hand", size = 24, color = "black", }) => { return ( {icons[name]} ); }; export default RadixIcon;