import { type ComponentPropsWithoutRef, type ReactNode } from 'react'; export const Window = ({ title, badge, children, ...props }: ComponentPropsWithoutRef<'div'> & { title: string; badge?: ReactNode; }) => (