UNPKG

@firecms/ui

Version:

Awesome Firebase/Firestore-based headless open-source CMS

11 lines (10 loc) 446 B
import React from "react"; import { TypographyProps, TypographyVariant } from "./Typography"; export type DialogContentProps = TypographyProps & { children: React.ReactNode; hidden?: boolean; className?: string; includeMargin?: boolean; variant?: TypographyVariant; }; export declare function DialogTitle({ children, hidden, className, variant, gutterBottom, includeMargin, ...props }: DialogContentProps): React.JSX.Element;