UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

12 lines (11 loc) 507 B
import React from 'react'; import type { AppShellProps } from '../AppShell'; interface AppShellMediaStylesProps { navbar: AppShellProps['navbar'] | undefined; header: AppShellProps['header'] | undefined; aside: AppShellProps['aside'] | undefined; footer: AppShellProps['footer'] | undefined; padding: AppShellProps['padding'] | undefined; } export declare function AppShellMediaStyles({ navbar, header, aside, footer, padding, }: AppShellMediaStylesProps): React.JSX.Element; export {};