Skip to content

Commit

Permalink
refactor: use named 'clsx' imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Jul 9, 2024
1 parent 547c114 commit 0aa188f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/ButtonSecondary.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import clsx from "clsx/lite";
import { clsx } from "clsx/lite";
import { getResetClassName } from "css-homogenizer/reset-scoped";
import { forwardRef } from "react";

Expand Down
2 changes: 1 addition & 1 deletion src/components/Input.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import clsx from "clsx/lite";
import { clsx } from "clsx/lite";
import { getResetClassName } from "css-homogenizer/reset-scoped";
import { forwardRef } from "react";

Expand Down
2 changes: 1 addition & 1 deletion src/components/Popover.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import clsx from "clsx/lite";
import { clsx } from "clsx/lite";
import { forwardRef } from "react";

export type PopoverProps = React.ComponentPropsWithRef<"div">;
Expand Down

0 comments on commit 0aa188f

Please sign in to comment.