({ className, variant, size, ...props })
| 10 | const variants = createVariants(styles); |
| 11 | |
| 12 | export const Button: FC<Props> = ({ className, variant, size, ...props }) => ( |
| 13 | <button className={variants('button', { className, variant, size })} {...props} /> |
| 14 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected