| 49 | ); |
| 50 | |
| 51 | export interface ButtonProps extends useRender.ComponentProps<"button"> { |
| 52 | variant?: VariantProps<typeof buttonVariants>["variant"]; |
| 53 | size?: VariantProps<typeof buttonVariants>["size"]; |
| 54 | loading?: boolean; |
| 55 | } |
| 56 | |
| 57 | export function Button({ |
| 58 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected