Badge

Componente que muestra un valor en forma de etiqueta.

Sobre el componente

Este componente se utiliza para mostrar informaci贸n relevante a los usuarios como etiquetas, 铆conos o botones.

Uso b谩sico

Para utilizar el componente, simplemente debes definir el atributo text

Default

src/index.html

        <Badge text="Default" />
    

El c贸digo para Badge es el siguiente:

src/index.html

        const Badge = ({
    variant = 'default',
    text = 'text',
    color = 'default',
    size = 'md',
    rounded = 'full',
    icon = null
  }) => {
    const variants = {
      default: 'border-0 shadow-lg backdrop-blur-sm',
      bordered:
        'border border-current shadow-lg bg-transparent dark:bg-transparent',
      icon: 'p-1 shadow-lg backdrop-blur-sm'
    }
  
    const sizes = {
      sm: 'text-xs px-2 py-0.5',
      md: 'text-sm px-3 py-1',
      lg: 'text-base px-4 py-1.5'
    }
  
    const roundeds = {
      none: 'rounded-none',
      sm: 'rounded-sm',
      md: 'rounded-lg',
      lg: 'rounded-2xl',
      full: 'rounded-full'
    }
  
    const colors = {
      default: 'bg-neutral-500/20',
      primary: 'bg-blue-500/40',
      secondary: 'bg-indigo-500/40',
      success: 'bg-green-500/40',
      warning: 'bg-yellow-500/40',
      danger: 'bg-red-500/20'
    }
  
    const textColors = {
      default: 'text-gray-800 dark:text-gray-300',
      primary: 'text-blue-800 dark:text-blue-500',
      secondary: 'text-indigo-800 dark:text-indigo-500',
      success: 'text-green-800 dark:text-green-500',
      warning: 'text-yellow-800 dark:text-yellow-500',
      danger: 'text-red-800 dark:text-red-500'
    }
  
    const variantClass = variants[variant]
    const sizeClass = sizes[size]
    const roundedClass = roundeds[rounded]
    const colorClass = colors[color]
    const textColorClass = textColors[color]
  
    const content = () => {
      if (variant === 'icon') {
        return icon ? (
          <span className='inline-block'>{icon}</span>
        ) : (
          <svg
            xmlns='http://www.w3.org/2000/svg'
            width='24'
            height='24'
            viewBox='0 0 24 24'
            fill='currentColor'
          >
            <path stroke='none' d='M0 0h24v24H0z' fill='none' />
            <path d='M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z' />
            <path d='M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004z' />
          </svg>
        )
      } 
      
      return text
    }
  
    return (
      <span
        className={"relative inline-flex items-center justify-center font-medium {sizeClass} {roundedClass} {colorClass} {textColorClass} {variantClass}"}
      >
        {content()}
      </span>
    )
  }
  
  export default Badge
    

Variantes

Para cambiar el estilo del componente, se puede utilizar el atributo variant. Este atributo acepta cuatro valores: default, icon y bordered.

Default Bordered

src/index.html

        <Badge text="Default" variant="default" />
<Badge variant="icon" />
<Badge text="Bordered" variant="bordered" />
    

Tama帽os

Para cambiar el tama帽o del componente, se puede utilizar el atributo size. Este atributo acepta tres valores: sm, md y lg.

Small Medium Large

src/index.html

        <Badge text='Small' size="sm" />
<Badge text='Medium' size="md" />
<Badge text='Large' size="lg" />
    

Color

Para cambiar el color del componente, se puede utilizar el atributo color. Este atributo acepta seis valores: default, primary, secondary, success, warning y danger.

Default Primary Secondary Success Warning Danger
default primary secondary success warning danger

src/index.html

        <Badge text='Default' color='default' />
<Badge text='Primary' color='primary' />
<Badge text='Secondary' color='secondary' />
<Badge text='Success' color='success' />
<Badge text='Warning' color='warning' />
<Badge text='Danger' color='danger' />

<Badge type='icon' color='default' />
<Badge type='icon' color='primary' />
<Badge type='icon' color='secondary' />
<Badge type='icon' color='success' />
<Badge type='icon' color='warning' />
<Badge type='icon' color='danger' />

<Badge type='bordered' text='default' color='default' />
<Badge type='bordered' text='primary' color='primary' />
<Badge type='bordered' text='secondary' color='secondary' />
<Badge type='bordered' text='success' color='success' />
<Badge type='bordered' text='warning' color='warning' />
<Badge type='bordered' text='danger' color='danger' />
    

Rounded

Para cambiar el redondeado del componente, se puede utilizar el atributo rounded. Este atributo acepta cuatro valores: none, sm, md, lg y full.

Rounded none Rounded sm Rounded md Rounded lg Rounded full

src/index.html

        <Badge text='Rounded none' color='primary' rounded='none' />
<Badge text='Rounded sm' color='primary' rounded='sm' />
<Badge text='Rounded md' color='primary' rounded='md' />
<Badge text='Rounded lg' color='primary' rounded='lg' />
<Badge text='Rounded full' color='primary' rounded='full' />
    

Creado por Blaballos con 馃挋. Basado en HeroUI y Flowbite.