UNPKG

@firecms/ui

Version:

Awesome Firebase/Firestore-based headless open-source CMS

11 lines (10 loc) 468 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): import("react/jsx-runtime").JSX.Element;