import type { ComponentType, ReactNode, SVGProps } from 'react' import { cn } from '@sim/emcn' interface FeaturePlatformPanelProps { children: ReactNode className?: string icon: ComponentType> title: string } /** * A cropped workspace surface using the same lightweight header treatment as * Sim's product views. Individual graphics provide real platform controls as * the content rather than drawing a separate illustration language. The * window anchors to the slot's left edge (`left-0`) so it left-aligns with * the tile's title/description text column, bleeding off the right edge. */ export function FeaturePlatformPanel({ children, className, icon: Icon, title, }: FeaturePlatformPanelProps) { return ( ) }