import { Box, type SxProps, type Theme } from '@mui/material' import type { ReactNode } from 'react' import { styles } from './style' export interface SubheaderProps { sx?: SxProps children: ReactNode } /** * Stateless layout: CSS grid `1fr auto`. Children self-place — typically * `` (left) and `` (right). */ export function Subheader({ sx, children }: SubheaderProps) { return {children} }