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

Interface DialogButtonProps

app/components/ui/Dialog.tsx:43–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41} satisfies Variants;
42
43interface DialogButtonProps {
44 type: 'primary' | 'secondary' | 'danger';
45 children: ReactNode;
46 onClick?: (event: React.UIEvent) => void;
47}
48
49export const DialogButton = memo(({ type, children, onClick }: DialogButtonProps) => {
50 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected