UNPKG

@elacity-js/uikit

Version:

React / Material UI Design kit for Elacity project

16 lines (15 loc) 461 B
/// <reference types="react" /> import { Breakpoint, SxProps } from '@mui/material/styles'; declare type FooterPosition = 'fixed' | 'relative' | 'absolute'; interface Props { sx?: SxProps; hideLeftFrom?: Breakpoint; position?: FooterPosition; } declare function FooterLayout({ sx, hideLeftFrom, position }: Props): JSX.Element; declare namespace FooterLayout { var defaultProps: { position: string; }; } export default FooterLayout;