@imj_media/ui 1.0.44 → 1.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -236,22 +236,19 @@ import { DatePicker } from '@imj_media/ui'
236
236
  ```tsx
237
237
  import { Badge } from '@imj_media/ui'
238
238
 
239
- <Badge color="green" size="md">
240
- Activo
241
- </Badge>
239
+ <Badge color="green" size="md" label="Activo" />
242
240
  ```
243
241
 
244
- #### Chip
242
+ #### Tag
245
243
  ```tsx
246
- import { Chip } from '@imj_media/ui'
244
+ import { Tag } from '@imj_media/ui'
247
245
 
248
- <Chip
246
+ <Tag
249
247
  color="blue"
250
248
  size="md"
251
249
  onDelete={() => handleDelete()}
252
- >
253
- Etiqueta
254
- </Chip>
250
+ label="Etiqueta"
251
+ />
255
252
  ```
256
253
 
257
254
  #### Avatar