adou-ui
Version:
feat:修复了TagInput无法清空的问题
24 lines (23 loc) • 708 B
TypeScript
import React from "react";
import "./index.scss";
interface DrawerProps {
actRef?: any;
clickOutside?: boolean;
children?: React.ReactNode;
title?: React.ReactNode;
placement?: "start" | "end" | "top" | "bottom";
width?: string | number;
height?: string | number;
showMask?: boolean;
maskClosable?: boolean;
showCloseButton?: boolean;
className?: string;
headerClassName?: string;
bodyClassName?: string;
onClose?: () => void;
onOpen?: () => void;
trigger?: React.ReactNode;
closeOnEsc?: boolean;
}
declare const Drawer: React.ForwardRefExoticComponent<DrawerProps & React.RefAttributes<any>>;
export default Drawer;