diff --git a/packages/css-variants/package.json b/packages/css-variants/package.json index ea02ae1..b9a6d8f 100644 --- a/packages/css-variants/package.json +++ b/packages/css-variants/package.json @@ -1,6 +1,6 @@ { "name": "css-variants", - "version": "2.3.4", + "version": "2.3.5", "description": "Lightweight helpers to compose class names and inline styles using variants. Zero runtime deps, small bundle, and first-class TypeScript support.", "homepage": "https://css-variants.vercel.app", "type": "module", diff --git a/packages/css-variants/src/cx.ts b/packages/css-variants/src/cx.ts index 2dafd75..7f67449 100644 --- a/packages/css-variants/src/cx.ts +++ b/packages/css-variants/src/cx.ts @@ -1,6 +1,6 @@ // credit: https://github.com/lukeed/clsx -export type ClassDictionary = Record +export type ClassDictionary = Record export type ClassValue = ClassValue[] | string | number | bigint | ClassDictionary | null | boolean | undefined export type ClassArray = ClassValue[]