"use client"
import { toast } from "sonner"
import {
Bubble,
BubbleContent,
BubbleGroup,
} from "@/styles/base-rhea/ui/bubble"
export function BubbleLinkButtonDemo() {
return (
How can I help you today?
toast("You clicked forgot password")} />
}
>
I forgot my password
toast("You clicked help with subscription")}
/>
}
>
I need help with my subscription
toast("You clicked something else. Talk to a human.")
}
/>
}
>
Something else. Talk to a human.
)
}