UNPKG

react-native-curved-bottom-bar

Version:

A high performance, beautiful and fully customizable curved bottom navigation bar for React Native.

15 lines 397 B
/// <reference types="react" /> import { StyleProp } from 'react-native'; import { ViewStyle } from 'react-native'; interface ICurvedView { style?: StyleProp<ViewStyle>; width: number; height: number; bgColor: string; path: any; borderColor?: string; borderWidth?: number; } export type CurvedView = React.FC<ICurvedView>; export {}; //# sourceMappingURL=model.d.ts.map