diff --git a/packages/ui-toolkit/package.json b/packages/ui-toolkit/package.json index 046cbde9..7b716aa3 100644 --- a/packages/ui-toolkit/package.json +++ b/packages/ui-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@groww-tech/ui-toolkit", - "version": "0.7.9-alpha", + "version": "0.7.9-alpha.2", "description": "A lightning nature UI", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/ui-toolkit/src/components/atoms/Tag/Tag.tsx b/packages/ui-toolkit/src/components/atoms/Tag/Tag.tsx index fbb843a4..8aadce5b 100644 --- a/packages/ui-toolkit/src/components/atoms/Tag/Tag.tsx +++ b/packages/ui-toolkit/src/components/atoms/Tag/Tag.tsx @@ -13,13 +13,13 @@ const Tag = (props: Props) => { let tagClass = props.tagClass; if (props.isWarning) { - tagClass += 'backgroundWarningSubtle contentPrimary'; + tagClass += ' backgroundWarningSubtle contentPrimary'; } else if (props.isError) { - tagClass += 'backgroundNegativeSubtle contentPrimary'; + tagClass += ' backgroundNegativeSubtle contentPrimary'; } else if (props.isInfo) { - tagClass += 'contentPrimary backgroundAccentSubtle'; + tagClass += ' contentPrimary backgroundAccentSubtle'; } if (childrenCount === 1) {