Skip to content

Commit

Permalink
Adjust after internal review
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Oct 18, 2023
1 parent 98f89ad commit eab87d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SafeAreaConsumer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import {EdgeInsets, SafeAreaInsetsContext} from 'react-native-safe-area-context';
import {DimensionValue} from 'react-native';
import type {DimensionValue} from 'react-native';
import * as StyleUtils from '../styles/StyleUtils';

type ChildrenProps = {
Expand All @@ -13,7 +13,7 @@ type ChildrenProps = {
};

type SafeAreaConsumerProps = {
children: (props: ChildrenProps) => React.ReactNode;
children: React.FC<ChildrenProps>;
};

/**
Expand Down

0 comments on commit eab87d2

Please sign in to comment.