import { memo } from 'react' import cn from '@/utils/classnames' type BadgeProps = { className?: string text?: string children?: React.ReactNode uppercase?: boolean } const Badge = ({ className, text, children, uppercase = true, }: BadgeProps) => { return (