vision-agent / components /sidebar-footer.tsx
MingruiZhang's picture
init
3ba9c0c unverified
raw
history blame
286 Bytes
import { cn } from '@/lib/utils'
export function SidebarFooter({
children,
className,
...props
}: React.ComponentProps<'div'>) {
return (
<div
className={cn('flex items-center justify-between p-4', className)}
{...props}
>
{children}
</div>
)
}