Custom Icon Library Properties

Expo has a set of icons in @expo/vector-icons.

We can import like this

import { AntDesign } from '@expo/vector-icons';
<AntDesign name='arrowleft' size={18} color='black' />

In the original AntDesign library however there is a property ‘theme’ that I would like to access:
<Icon type="left-circle" theme="twoTone" />

Are we able to access it?