import React from 'react'; import { Minus, Square, X } from 'lucide-react'; import type { WindowButtonStyle } from '../store/authStoreTypes'; interface Props { style: WindowButtonStyle; label: string; selected: boolean; onClick: () => void; } /** * Selection tile for the custom-title-bar window-button style picker. Renders * the real `.titlebar-controls` / `.titlebar-btn` classes inside a mini title * bar so the preview is exactly what the chosen style produces. */ export default function WindowButtonPreview({ style, label, selected, onClick }: Props) { return ( ); }