Bubble 组件用于承载对话内容的气泡组件,支持透明背景、自定义加载动画和 Markdown 渲染。
pnpm dlx shadcn@latest add https://matechat.noctisynth.org/r/bubble.json
你好,有什么我可以帮助你的吗
我很好,谢谢关心!
import { Bubble } from "@matechat/react"; export default function () { return ( <div className="flex flex-col w-full gap-4"> <Bubble text="你好,有什么我可以帮助你的吗" /> <Bubble text="我很好,谢谢关心!" align="right" /> </div> ); }
超小尺寸
小尺寸
默认尺寸
中等尺寸
大尺寸
import { Bubble } from "@matechat/react"; export default function () { return ( <div className="flex flex-col w-full gap-4"> <Bubble text="超小尺寸" size="xs" /> <Bubble text="小尺寸" size="sm" /> <Bubble text="默认尺寸" size="default" /> <Bubble text="中等尺寸" size="md" /> <Bubble text="大尺寸" size="lg" /> </div> ); }
import { Bubble } from "@matechat/react"; export default function () { return ( <div className="flex flex-col w-full"> <Bubble text="" isPending={true} /> </div> ); }