| 46 | ); |
| 47 | |
| 48 | interface ButtonProps extends useRender.ComponentProps<"button"> { |
| 49 | variant?: VariantProps<typeof buttonVariants>["variant"]; |
| 50 | size?: VariantProps<typeof buttonVariants>["size"]; |
| 51 | } |
| 52 | |
| 53 | function Button({ className, variant, size, render, ...props }: ButtonProps) { |
| 54 | const typeValue: React.ButtonHTMLAttributes<HTMLButtonElement>["type"] = |
nothing calls this directly
no outgoing calls
no test coverage detected