1import * as React from 'react';
2import { View } from 'react-native';
3// This is a shim view for platforms that aren't supported by Expo.
4// The component and prop types should match all of the other platform variations.
5export default function NativeLinearGradient(props) {
6    const { colors, locations, startPoint, endPoint, ...viewProps } = props;
7    console.warn('LinearGradient is not available on this platform');
8    return React.createElement(View, { ...viewProps });
9}
10//# sourceMappingURL=NativeLinearGradient.js.map