UNPKG

@praetorian-chariot/ui

Version:

The UI component library for Chariot, built with Tailwind CSS and React.

10 lines 444 B
import { ReactNode } from "react"; interface TooltipProps { children: ReactNode; message: ReactNode; position?: "top" | "bottom" | "left" | "right"; className?: string; } declare const Tooltip: ({ children, className, message, position, }: TooltipProps) => string | number | boolean | Iterable<ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined; export default Tooltip; //# sourceMappingURL=Tooltip.d.ts.map