import React from "react"; import { GetProps, Text, View } from "tamagui"; type BadgeProps = GetProps; const Badge = ({ children, ...props }: BadgeProps) => { return ( {typeof children === "string" ? ( {children} ) : ( children )} ); }; export default Badge;