| 4 | type Size = "sm" | "md" | "lg"; |
| 5 | |
| 6 | interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> { |
| 7 | variant?: Variant; |
| 8 | size?: Size; |
| 9 | } |
| 10 | |
| 11 | const variantStyles: Record<Variant, string> = { |
| 12 | primary: |
nothing calls this directly
no outgoing calls
no test coverage detected