Sha256: 9060a3306ca68bd707123af1fdf6de7302db31aafc7a255911b3a6bf2f5a81a6
Contents?: true
Size: 597 Bytes
Versions: 2
Compression:
Stored size: 597 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../../utilities/globalProps'; declare type DialogFooterProps = { aria?: { [key: string]: string; }; children: React.ReactChild[] | React.ReactChild | string; className?: string; data?: { [key: string]: string; }; id?: string; padding?: string; paddingBottom?: string; paddingX?: string; separator?: boolean; spacing?: "none" | "between" | "around" | "evenly"; } & GlobalProps; declare const DialogFooter: (props: DialogFooterProps) => JSX.Element; export default DialogFooter;
Version data entries
2 entries across 2 versions & 1 rubygems