next-helios-fe 1.8.150 → 1.8.151
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/chip/index.tsx +1 -1
package/package.json
CHANGED
@@ -58,7 +58,7 @@ export const Chip: React.FC<ChipProps> = ({
|
|
58
58
|
>
|
59
59
|
<div className="flex items-center gap-1.5">
|
60
60
|
{icon && <Icon icon={icon} className="text-lg" />}
|
61
|
-
<span className="text-sm">{label}</span>
|
61
|
+
<span className="text-sm text-center">{label}</span>
|
62
62
|
</div>
|
63
63
|
{onRemove && (
|
64
64
|
<div
|