UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

11 lines (10 loc) 431 B
import type { DevicePreview } from './types.js'; interface ViewControlsProps { device: DevicePreview; onDeviceChange: (next: DevicePreview) => void; desktopLabel: string; mobileLabel: string; } /** Toggle between desktop and mobile preview modes. */ export declare function ViewControls({ device, onDeviceChange, desktopLabel, mobileLabel, }: ViewControlsProps): import("react/jsx-runtime").JSX.Element; export {};