17 lines
286 B
TypeScript
17 lines
286 B
TypeScript
|
|
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>
|
||
|
|
)
|
||
|
|
}
|