import React from 'react' import { Badge, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipTrigger, } from '@janhq/uikit' import { InfoIcon } from 'lucide-react' const NotEnoughMemoryLabel = ({ unit }: { unit: string }) => ( Not enough {unit} {`This tag signals insufficient RAM for optimal model performance. It's dynamic and may change with your system's RAM availability.`} ) export default React.memo(NotEnoughMemoryLabel)