ds-smart-ui
Version:
Smart UI is a React component library that helps you build accessible and responsive web applications.
11 lines (10 loc) • 343 B
TypeScript
interface TooltipProps {
children: React.ReactNode;
content: string;
position?: "top" | "bottom" | "left" | "right";
className?: string;
color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "light" | "dark";
id?: string;
}
declare const Tooltip: React.FC<TooltipProps>;
export default Tooltip;