How do i have expo / vector icon inserted in the tab icon?

I want this icon at the bottom of the tab bar

taken from :
import { Ionicons } from ‘@expo/vector-icons’;

Current code:

static navigationOptions = {
title: ‘Drawer pull’,
tabBarIcon: ({ tintColor, focused }) => (

),
};

Output:

How do I replace the icon with a expo / vector icon ?

If i use this code, i get eror icon

static navigationOptions = {
title: ‘Drawer pull’,
tabBarIcon:

};