Spaces:
Running
Running
File size: 286 Bytes
3ba9c0c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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>
)
}
|