Files
Canto/qwen3-tts-frontend/src/components/IconLabel.tsx

27 lines
763 B
TypeScript

import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/tooltip'
import type { ElementType } from 'react'
interface IconLabelProps {
icon: ElementType
tooltip: string
required?: boolean
}
export function IconLabel({ icon: Icon, tooltip, required = false }: IconLabelProps) {
return (
<TooltipProvider>
<Tooltip>
<TooltipTrigger asChild>
<div className="flex items-center gap-1 cursor-help">
<Icon className="h-4 w-4 text-muted-foreground" />
{required && <span className="text-destructive">*</span>}
</div>
</TooltipTrigger>
<TooltipContent>
<p>{tooltip}</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
)
}