import { ReactNode } from 'react'; import { Stack } from './Stack'; interface ToolbarProps { children: ReactNode; minimized?: boolean; bottom?: number | string; } export function Toolbar({ children, minimized = false, bottom = '2rem' }: ToolbarProps) { if (minimized) { return ( {children} ); } return ( {children} ); }