import { memo } from 'react' import { Badge, Tooltip } from '@janhq/joi' import { InfoIcon } from 'lucide-react' import { twMerge } from 'tailwind-merge' type Props = { compact?: boolean } const SlowOnYourDeviceLabel = ({ compact }: Props) => ( {!compact && Slow on your device} ) : ( ) } content="This tag indicates that your current RAM performance may affect model speed. It can change based on other active apps. To improve, consider closing unnecessary applications to free up RAM." /> ) export default memo(SlowOnYourDeviceLabel)