@firecms/ui
Version:
Awesome Firebase/Firestore-based headless open-source CMS
10 lines (9 loc) • 396 B
TypeScript
import React from "react";
export type CenteredViewProps = {
children: React.ReactNode;
maxWidth?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl";
outerClassName?: string;
className?: string;
fullScreen?: boolean;
};
export declare const CenteredView: React.ForwardRefExoticComponent<CenteredViewProps & React.RefAttributes<HTMLDivElement>>;