UNPKG

react-native-ui-lib

Version:

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

10 lines (9 loc) 324 B
import React from 'react'; import { LayoutChangeEvent } from 'react-native'; import { PointProps } from './types'; type PointPropsInternal = PointProps & { onLayout?: (event: LayoutChangeEvent) => void; testID?: string; }; declare const Point: (props: PointPropsInternal) => React.JSX.Element; export default Point;