@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 389 B
TypeScript
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 {};