feat: n to 1 retrieval legacy (#6554)

This commit is contained in:
zxhlyh
2024-07-24 12:50:48 +08:00
committed by GitHub
parent e4bb943fe5
commit 6fe9aa69cc
35 changed files with 1329 additions and 249 deletions

View File

@@ -0,0 +1,25 @@
import { memo } from 'react'
import cn from '@/utils/classnames'
type BadgeProps = {
className?: string
text: string
}
const Badge = ({
className,
text,
}: BadgeProps) => {
return (
<div
className={cn(
'inline-flex items-center px-[5px] h-5 rounded-[5px] border border-divider-deep system-2xs-medium-uppercase leading-3 text-text-tertiary',
className,
)}
>
{text}
</div>
)
}
export default memo(Badge)