MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / Props

Interface Props

src/components/kit/Modal.tsx:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import Icon from "../Icon";
4
5interface Props {
6 title: string;
7 children: ReactNode;
8 onClose: () => void;
9 className?: string;
10}
11
12const Modal = (props: Props) => {
13 const { children, title, onClose, className } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected