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

Interface Props

src/components/kit/Tooltip.tsx:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3type Side = "top" | "right" | "bottom" | "left";
4
5interface Props {
6 title: string;
7 side: Side;
8 children: React.ReactNode;
9}
10
11const Tooltip = (props: Props) => {
12 const { title, side, children } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected