| 34 | ) |
| 35 | |
| 36 | export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLAnchorElement>, VariantProps<typeof button> { |
| 37 | underline?: boolean |
| 38 | href: string |
| 39 | } |
| 40 | |
| 41 | export function Button({ className, intent, size, underline, ...props }: ButtonProps) { |
| 42 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected