export interface MobileSkinProps { /** * The content inside the mobile skin component */ children: React.ReactNode | string; /** * Portrait or landScape View of the Mobile */ orientation: 'portrait' | 'landscape'; /** * height of the MobileSkin */ mobileHeight?: number; /** * width of the MobileSkin */ mobileWidth?: number; }