Sha256: 6020cfd7797fb066c5ede6a6b85d636703d844a6c2ba05595eda9f89851beec7
Contents?: true
Size: 576 Bytes
Versions: 2
Compression:
Stored size: 576 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../../utilities/globalProps'; declare type DialogHeaderProps = { aria?: { [key: string]: string; }; children: React.ReactNode[] | React.ReactNode | string; className?: string; closeable?: boolean; data?: object; id?: string; padding?: string; separator?: boolean; spacing?: "none" | "between" | "around" | "evenly"; text?: string; title?: string; } & GlobalProps; declare const DialogHeader: (props: DialogHeaderProps) => JSX.Element; export default DialogHeader;
Version data entries
2 entries across 2 versions & 1 rubygems