| 6 | type ButtonVariant = "outline" | "filled" |
| 7 | |
| 8 | export interface ButtonProps extends ComponentPropsWithoutRef<"button"> { |
| 9 | variant?: ButtonVariant |
| 10 | size?: ButtonSize |
| 11 | wiggle?: boolean |
| 12 | href?: string |
| 13 | linkTarget?: string |
| 14 | } |
| 15 | |
| 16 | export const Button = forwardRef<HTMLButtonElement, ButtonProps>( |
| 17 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…