UNPKG

@uiw/react-native

Version:
15 lines (14 loc) 485 B
import React from 'react'; import { ViewProps } from 'react-native'; import { IconsName } from '../Icon'; export interface DragDrawerProps extends ViewProps { /** 抽屉高度 */ drawerHeight?: number; /** 抽屉颜色 */ drawerBackgroundColor?: string; /** 自定义图标 */ icon?: IconsName | React.ReactElement | React.ReactNode; children?: React.ReactNode; } declare function DragDrawer(props: DragDrawerProps): JSX.Element; export default DragDrawer;