Skip to content

Commit

Permalink
chore: use concatClassNames alias
Browse files Browse the repository at this point in the history
  • Loading branch information
receter committed Oct 17, 2024
1 parent d6fee97 commit 663444d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/ui/lib/Button/useButton.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { HTMLAttributes } from "react";
import { concatClassNames as cn } from "@sys42/utils";
import { cn } from "@sys42/utils";

import {
BaseButtonProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/FormField/useFormField.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { HTMLAttributes } from "react";
import { concatClassNames as cn } from "@sys42/utils";
import { cn } from "@sys42/utils";

import {
BaseFormFieldProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/Label/useLabel.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { concatClassNames as cn } from "@sys42/utils";
import { cn } from "@sys42/utils";

import {
BaseLabelProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/Stack/useStack.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { HTMLAttributes } from "react";
import { concatClassNames as cn } from "@sys42/utils";
import { cn } from "@sys42/utils";

import {
BaseStackProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/TextInput/useTextInput.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { concatClassNames as cn } from "@sys42/utils";
import { cn } from "@sys42/utils";

import {
BaseTextInputProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/TextLink/useTextLink.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { HTMLAttributes } from "react";
import { concatClassNames as cn } from "@sys42/utils";
import { cn } from "@sys42/utils";

import {
BaseTextLinkProps,
Expand Down

0 comments on commit 663444d

Please sign in to comment.