mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import { Button } from "@/examples/base/ui/button"
|
|
import { ButtonGroup } from "@/examples/base/ui/button-group"
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/examples/base/ui/popover"
|
|
import { Separator } from "@/examples/base/ui/separator"
|
|
import { Textarea } from "@/examples/base/ui/textarea"
|
|
import { BotIcon, ChevronDownIcon } from "lucide-react"
|
|
|
|
export default function ButtonGroupPopover() {
|
|
return (
|
|
<ButtonGroup>
|
|
<Button variant="outline">
|
|
<BotIcon /> Copilot
|
|
</Button>
|
|
<Popover>
|
|
<PopoverTrigger
|
|
render={
|
|
<Button variant="outline" size="icon" aria-label="Open Popover" />
|
|
}
|
|
>
|
|
<ChevronDownIcon />
|
|
</PopoverTrigger>
|
|
<PopoverContent align="end" className="rounded-xl p-0 text-sm">
|
|
<div className="px-4 py-3">
|
|
<div className="text-sm font-medium">Agent Tasks</div>
|
|
</div>
|
|
<Separator />
|
|
<div className="p-4 text-sm *:[p:not(:last-child)]:mb-2">
|
|
<Textarea
|
|
placeholder="Describe your task in natural language."
|
|
className="mb-4 resize-none"
|
|
/>
|
|
<p className="font-medium">Start a new task with Copilot</p>
|
|
<p className="text-muted-foreground">
|
|
Describe your task in natural language. Copilot will work in the
|
|
background and open a pull request for your review.
|
|
</p>
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</ButtonGroup>
|
|
)
|
|
}
|