react-native-svg
Version:
SVG library for react-native
19 lines (18 loc) • 601 B
TypeScript
import type { ColorValue } from 'react-native';
import type { Float, Int32 } from 'react-native/Libraries/Types/CodegenTypes';
import type { ViewProps } from './utils';
interface NativeProps extends ViewProps {
bbWidth: string;
bbHeight: string;
minX: Float;
minY: Float;
vbWidth: Float;
vbHeight: Float;
align: string;
meetOrSlice: Int32;
tintColor: ColorValue;
color: ColorValue;
pointerEvents?: string;
}
declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<NativeProps>;
export default _default;