@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
13 lines (12 loc) • 571 B
TypeScript
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;
mode: 'fixed' | 'static';
selector?: string;
}
export declare function AppShellMediaStyles({ navbar, header, aside, footer, padding, mode, selector, }: AppShellMediaStylesProps): import("react/jsx-runtime").JSX.Element;
export {};