Skip to content

Commit

Permalink
Limit button
Browse files Browse the repository at this point in the history
  • Loading branch information
josepjaume committed May 25, 2024
1 parent 8534bea commit 1c50d0c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lib/components/Actions/Button/index.tsx
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
export { Button } from "@/shadcn/button"
import { Button as ShadcnButton } from "@/shadcn/button"
import { ComponentProps } from "react"

const Button: React.FC<
Pick<
ComponentProps<typeof ShadcnButton>,
"variant" | "size" | "onClick" | "children"
>
> = ShadcnButton

export { Button }

0 comments on commit 1c50d0c

Please sign in to comment.