MCPcopy Create free account
hub / github.com/FunAudioLLM/Fun-Audio-Chat / SwitchButton

Function SwitchButton

web_demo/client/src/components/Button/Button.tsx:16–25  ·  view source on GitHub ↗
({ children, className, ...props })

Source from the content-addressed store, hash-verified

14
15
16export 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};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected