@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
19 lines (18 loc) • 825 B
TypeScript
import { BoxProps, ElementProps, Factory, StylesApiProps } from '../../../core';
export type AppShellFooterStylesNames = 'footer';
export interface AppShellFooterProps extends BoxProps, StylesApiProps<AppShellFooterFactory>, ElementProps<'footer'> {
/** Determines whether component should have a border, overrides `withBorder` prop on `AppShell` component */
withBorder?: boolean;
/** Component `z-index`, by default inherited from the `AppShell` */
zIndex?: string | number;
}
export type AppShellFooterFactory = Factory<{
props: AppShellFooterProps;
ref: HTMLElement;
stylesNames: AppShellFooterStylesNames;
}>;
export declare const AppShellFooter: import("../../../core").MantineComponent<{
props: AppShellFooterProps;
ref: HTMLElement;
stylesNames: AppShellFooterStylesNames;
}>;