"use client"; import { cn } from "@/shared/utils/cn"; interface InfoTooltipProps { text: string; className?: string; } export default function InfoTooltip({ text, className }: InfoTooltipProps) { return ( info {text} ); }