({ children, className, ...props })
| 14 | |
| 15 | |
| 16 | export const SwitchButton: FC<ButtonProps> = ({ children, className, ...props }) => { |
| 17 | return ( |
| 18 | <button |
| 19 | className={`border-0 disabled:text-white-100 border-white bg-black p-2 hover:text-purple-300 active:bg-gray-700 ${className ?? ""}`} |
| 20 | {...props} |
| 21 | > |
| 22 | {children} |
| 23 | </button> |
| 24 | ); |
| 25 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected