import type { ReactNode } from 'react' interface FeatureGraphicShellProps { children: ReactNode } /** Shared crop canvas for platform-faithful enterprise feature previews. */ export function FeatureGraphicShell({ children }: FeatureGraphicShellProps) { return (
{children}
) }