({ intent, fullWidth, ...props }: Props)
| 27 | extends ButtonOrLinkProps, |
| 28 | VariantProps<typeof buttonStyles> {} |
| 29 | export function Button({ intent, fullWidth, ...props }: Props) { |
| 30 | return ( |
| 31 | <ButtonOrLink className={buttonStyles({ intent, fullWidth })} {...props} /> |
| 32 | ); |
| 33 | } |
| 34 | |
| 35 | type ButtonOrLinkProps = ComponentProps<"button"> & ComponentProps<"a">; |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected