Files
--/src/components/ui/avatar.tsx
jaystar afd1531959 feat: 完成智能健康管家网站搭建
实现了 AI 对话、图片识别与营养分析、健康数据管理三大核心功能:

- AI 对话:集成豆包大语言模型,支持流式输出和多轮对话
- 图片识别:使用视觉模型识别食物,自动分析卡路里和营养成分
- 健康档案:支持饮食记录、运动记录和数据统计,数据持久化存储
- UI 优化:使用 shadcn/ui 组件库,现代化响应式设计

所有功能已完成开发并通过类型检查。
2026-01-22 09:40:07 +08:00

54 lines
1.1 KiB
TypeScript

"use client"
import * as React from "react"
import * as AvatarPrimitive from "@radix-ui/react-avatar"
import { cn } from "@/lib/utils"
function Avatar({
className,
...props
}: React.ComponentProps<typeof AvatarPrimitive.Root>) {
return (
<AvatarPrimitive.Root
data-slot="avatar"
className={cn(
"relative flex size-8 shrink-0 overflow-hidden rounded-full",
className
)}
{...props}
/>
)
}
function AvatarImage({
className,
...props
}: React.ComponentProps<typeof AvatarPrimitive.Image>) {
return (
<AvatarPrimitive.Image
data-slot="avatar-image"
className={cn("aspect-square size-full", className)}
{...props}
/>
)
}
function AvatarFallback({
className,
...props
}: React.ComponentProps<typeof AvatarPrimitive.Fallback>) {
return (
<AvatarPrimitive.Fallback
data-slot="avatar-fallback"
className={cn(
"bg-muted flex size-full items-center justify-center rounded-full",
className
)}
{...props}
/>
)
}
export { Avatar, AvatarImage, AvatarFallback }