import React from 'react'; import { IconButton, Icon, VStack } from 'native-base'; import { Path } from 'react-native-svg'; export const Example = () => { return ( {/* Suggested */} console.log('IconButton pressed')} _icon={{ viewBox: '0 0 100 100', size: 10, strokeWidth: '10', width: '100', height: '100', }} > {/* Alternatively */} console.log('IconButton pressed')} icon={ } /> ); };