UNPKG

@uiw/react-native

Version:
25 lines (24 loc) 652 B
import React from 'react'; import { ViewStyle, TextStyle } from 'react-native'; import { size } from './index'; export declare enum containerSize { small = 30, default = 36, large = 44 } export declare enum contentSize { small = 12, default = 18, large = 26 } export interface MoreDirProps { size: size; borderColor?: string; color?: string; setCurrent: React.Dispatch<React.SetStateAction<number>>; current: number; } declare const MoreDir: (props: MoreDirProps) => JSX.Element; export declare const containerStyle: ViewStyle; export declare const inputStyle: ViewStyle | TextStyle; export default MoreDir;