mirror of https://github.com/kortix-ai/suna.git
16 lines
468 B
TypeScript
16 lines
468 B
TypeScript
import { Calendar } from "@/components/ui/calendar"
|
|
import {
|
|
SidebarGroup,
|
|
SidebarGroupContent,
|
|
} from "@/components/ui/sidebar"
|
|
|
|
export function DatePicker() {
|
|
return (
|
|
<SidebarGroup className="px-0">
|
|
<SidebarGroupContent>
|
|
<Calendar className="[&_[role=gridcell].bg-accent]:bg-sidebar-primary [&_[role=gridcell].bg-accent]:text-sidebar-primary-foreground [&_[role=gridcell]]:w-[33px]" />
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
)
|
|
}
|