21 lines
451 B
TypeScript
21 lines
451 B
TypeScript
import { Stack } from '@/ui/Stack';
|
|
import React from 'react';
|
|
|
|
interface DashboardRailProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
/**
|
|
* DashboardRail
|
|
*
|
|
* A thin sidebar rail for high-level navigation and status indicators.
|
|
* Uses UI primitives to comply with architectural constraints.
|
|
*/
|
|
export function DashboardRail({ children }: DashboardRailProps) {
|
|
return (
|
|
<Stack align="center" gap={4} fullWidth>
|
|
{children}
|
|
</Stack>
|
|
);
|
|
}
|