UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

11 lines (10 loc) 328 B
import React from 'react'; import { ViewStyle } from 'react-native'; import { LineProps } from './types'; type LinePropsInternal = LineProps & { top?: boolean; style?: ViewStyle; testID?: string; }; declare const Line: React.MemoExoticComponent<(props: LinePropsInternal) => React.JSX.Element>; export default Line;