UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

16 lines (13 loc) 357 B
'use strict'; import type { EllipseProps } from 'react-native-svg'; import type { SvgStyleBuilderConfig } from './common'; import { commonSvgProps } from './common'; export const SVG_ELLIPSE_PROPERTIES_CONFIG: SvgStyleBuilderConfig<EllipseProps> = { ...commonSvgProps, cx: true, cy: true, rx: true, ry: true, opacity: true, };