@useloops/design-system
Version:
The official React based Loops design system
14 lines (11 loc) • 478 B
TypeScript
import { SxProps, Theme } from '@mui/material';
import { FunctionComponent, ReactNode } from 'react';
import { SurfaceProps } from '../../WebCore/Surface/Surface.js';
interface AuthContainerSurfaceProps extends SurfaceProps {
headContent?: ReactNode;
sx?: SxProps<Theme>;
children: ReactNode;
}
declare const AuthContainerSurface: FunctionComponent<AuthContainerSurfaceProps>;
export { AuthContainerSurface as default };
export type { AuthContainerSurfaceProps };