MCPcopy Create free account
hub / github.com/stackblitz/bolt.new / ButtonProps

Interface ButtonProps

app/components/header/HeaderActionButtons.client.tsx:46–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46interface ButtonProps {
47 active?: boolean;
48 disabled?: boolean;
49 children?: any;
50 onClick?: VoidFunction;
51}
52
53function Button({ active = false, disabled = false, children, onClick }: ButtonProps) {
54 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected