import { memo } from 'react' import cn from '@/utils/classnames' type BadgeProps = { className?: string text: string } const Badge = ({ className, text, }: BadgeProps) => { return (