({ className, intent, size, underline, ...props }: ButtonProps)
| 39 | } |
| 40 | |
| 41 | export function Button({ className, intent, size, underline, ...props }: ButtonProps) { |
| 42 | return ( |
| 43 | <a className={twMerge(button({ intent, size, className, underline }))} {...props}> |
| 44 | {props.children} |
| 45 | </a> |
| 46 | ) |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected