import { HelpCircle } from 'lucide-react'; import { TooltipWithChildren, Position } from '../TooltipWithChildren'; export interface Props { position?: Position; message: string; className?: string; } export function Tooltip({ message, position = 'bottom', className }: Props) { return ( ); }