@uiw/react-native
Version:
UIW for React Native
25 lines (24 loc) • 652 B
TypeScript
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;