y-taro-ui
Version:
基于taro的表单解决方案 & 基础组件
12 lines (11 loc) • 356 B
TypeScript
import React from 'react';
import { PopupProps } from '../Popup';
import './index.less';
export declare type DrawerProps = PopupProps & {
style?: React.CSSProperties;
className?: string;
width?: number;
placement?: 'right' | 'left';
};
export declare const Drawer: React.NamedExoticComponent<DrawerProps>;
export default Drawer;