Skip to content

Commit

Permalink
Fix TypeScript missing parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbrez committed Jul 8, 2020
1 parent 265e863 commit d50c73b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import * as eva from '@eva-design/eva';
import { ApplicationProvider, Layout, Text, Button, IconRegistry, Icon } from '@ui-kitten/components';
import { ApplicationProvider, Layout, Text, Button, IconRegistry, Icon, IconProps } from '@ui-kitten/components';
import { EvaIconsPack } from '@ui-kitten/eva-icons';

const LoginIcon = (props) => (
const LoginIcon = (props : IconProps) => (
<Icon name='log-in-outline' {...props} />
);

Expand Down

0 comments on commit d50c73b

Please sign in to comment.