Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ahkhanjani committed Nov 15, 2024
1 parent 28ca02b commit 31f5fb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui/src/button.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { VariantProps } from "class-variance-authority";
import type { ComponentProps } from "react";
import { Slot } from "@radix-ui/react-slot";
import { cva } from "class-variance-authority";

Expand Down Expand Up @@ -35,7 +36,7 @@ const buttonVariants = cva(
);

interface ButtonProps
extends React.ComponentProps<"button">,
extends ComponentProps<"button">,
VariantProps<typeof buttonVariants> {
asChild?: boolean;
}
Expand Down

0 comments on commit 31f5fb4

Please sign in to comment.