mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 19:03:09 +00:00 
			
		
		
		
	 7709d9df20
			
		
	
	
		7709d9df20
		
			
		
	
	
	
	
		
			
			Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			950 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			950 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { ReactNode } from 'react'
 | |
| import { memo } from 'react'
 | |
| import cn from '@/utils/classnames'
 | |
| 
 | |
| type BadgeProps = {
 | |
|   className?: string
 | |
|   text?: ReactNode
 | |
|   children?: ReactNode
 | |
|   uppercase?: boolean
 | |
|   hasRedCornerMark?: boolean
 | |
| }
 | |
| 
 | |
| const Badge = ({
 | |
|   className,
 | |
|   text,
 | |
|   children,
 | |
|   uppercase = true,
 | |
|   hasRedCornerMark,
 | |
| }: BadgeProps) => {
 | |
|   return (
 | |
|     <div
 | |
|       className={cn(
 | |
|         'relative inline-flex h-5 items-center rounded-[5px] border border-divider-deep px-[5px] leading-3 text-text-tertiary',
 | |
|         uppercase ? 'system-2xs-medium-uppercase' : 'system-xs-medium',
 | |
|         className,
 | |
|       )}
 | |
|     >
 | |
|       {hasRedCornerMark && (
 | |
|         <div className='absolute right-[-2px] top-[-2px] h-1.5 w-1.5 rounded-[2px] border border-components-badge-status-light-error-border-inner bg-components-badge-status-light-error-bg shadow-sm'>
 | |
|         </div>
 | |
|       )}
 | |
|       {children || text}
 | |
|     </div>
 | |
|   )
 | |
| }
 | |
| 
 | |
| export default memo(Badge)
 |