Files
react-navigation/example/src/Shared/BlurView.tsx
2020-05-26 16:07:47 +02:00

13 lines
324 B
TypeScript

import * as React from 'react';
import { View, ViewProps } from 'react-native';
type Props = ViewProps & {
tint: 'light' | 'dark';
intensity: number;
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export default function BlurView({ tint, intensity, ...rest }: Props) {
return <View {...rest} />;
}