22 lines
639 B
TypeScript
22 lines
639 B
TypeScript
import { Button } from '@/components'
|
|
|
|
// 사이드바 하단: 공급사명 + 로그아웃
|
|
export function SidebarFooter() {
|
|
return (
|
|
<div className="flex w-full h-[60px] py-3 px-8 gap-3 items-center">
|
|
<div className="flex-1 flex items-center min-w-0 text-sm text-foreground">
|
|
{/* TODO: 공급사명 (auth store 연동) */}
|
|
<span className="truncate">-</span>
|
|
</div>
|
|
<Button
|
|
variant="secondary"
|
|
size="sm"
|
|
className="w-[61px] px-2 rounded-[4px] text-xs flex-shrink-0"
|
|
// TODO: 로그아웃 mutation 연동
|
|
>
|
|
로그아웃
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|