UNPKG

@wulperstudio/cms

Version:
15 lines (14 loc) 389 B
import type * as React from 'react'; import { IconifyIcon } from '@iconify/react'; interface CloseButtonModel { onClose: () => void; sxIconButton?: any; restIconButton: any; icon: string | IconifyIcon; color?: string; width: number | string; height: number | string; restIcon: any; } export declare const CloseButton: React.FC<CloseButtonModel>; export {};