import React from 'react'; import { PiAppWindowLight } from 'react-icons/pi'; import { cn } from '../../utils/cn'; import { getWindowDragHandleClassname } from '../const'; import type { WindowFrameProps } from '../WindowFrame'; import { WindowsWindowController } from './WindowsWindowController'; export const WindowsWindowFrame = ({ className, icon, controller, title, children, onToggleMaximize, ref, ...props }: WindowFrameProps) => { return (