UNPKG

native-base

Version:

Essential cross-platform UI components for React Native

25 lines 945 B
//@ts-ignore import { unstable_createElement } from 'react-native-web'; import { forwardRef } from 'react'; export const Svg = /*#__PURE__*/forwardRef((props, ref) => unstable_createElement('svg', { ...props, ref })); export const G = /*#__PURE__*/forwardRef((props, ref) => unstable_createElement('g', { ...props, ref })); export const Path = /*#__PURE__*/forwardRef((props, ref) => unstable_createElement('path', { ...props, ref })); export const Polygon = /*#__PURE__*/forwardRef((props, ref) => unstable_createElement('polygon', { ...props, ref })); export const Line = /*#__PURE__*/forwardRef((props, ref) => unstable_createElement('line', { ...props, ref })); export const Circle = /*#__PURE__*/forwardRef((props, ref) => unstable_createElement('circle', { ...props, ref })); export const Rect = /*#__PURE__*/forwardRef((props, ref) => unstable_createElement('rect', { ...props, ref })); //# sourceMappingURL=nbSvg.web.js.map