react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
17 lines (14 loc) • 361 B
text/typescript
;
import type { RectProps } from 'react-native-svg';
import type { SvgStyleBuilderConfig } from './common';
import { commonSvgProps } from './common';
export const SVG_RECT_PROPERTIES_CONFIG: SvgStyleBuilderConfig<RectProps> = {
...commonSvgProps,
x: true,
y: true,
rx: true,
ry: true,
width: true,
height: true,
opacity: true,
};