UNPKG

@bytebeans/macaw-ui

Version:

Saleor's UI component library

7 lines (6 loc) 255 B
import { TypographyProps } from "@material-ui/core/Typography"; import React from "react"; export interface DialogHeaderProps extends TypographyProps<"h5"> { onClose: () => void; } export declare const DialogHeader: React.FC<DialogHeaderProps>;