import { BreezeflowChat } from 'breezeflow-sdk';
import 'breezeflow-sdk/style.css';
const MyComponent = () => {
const agent = {
orientation: "right",
color: "#0d3033",
logoURL: "path/to/your/logo.svg",
headline: "Chat with our AI",
description: "Ask me anything, and I'll do my best to answer!",
initialMessage: "Hello 👋 How can I help you today?",
placeholder: "Type your message here...",
newChatButtonText: "Start a new chat"
};
return (
<BreezeflowChat
agent={agent}
agentId="your-agent-id"
styles={{
theme: 'light', // or 'dark'
colors: {
primary: '#0051FF',
darkBg: '#1a1d21',
lightBg: '#ffffff',
messageBgDark: '#1e2227',
messageBgLight: '#f7f7f7',
inputBgDark: '#2a2e33',
inputBgLight: '#f2f2f2'
}
}}
/>
);
};