简体   繁体   中英

Resize Icon FontAwesome5 in React Native

<Icon type="FontAwesome5" name="thumbs-up"/>

I want to make the icon to be smaller. what should I do with that code? I used React Native

Working example below in React Native. (Cannot give you tailored suggestion with the limited information given.)

import { FontAwesomeIcon } from '@fortawesome/react-native-fontawesome';
import { faChevronLeft } from '@fortawesome/pro-light-svg-icons';

...

<FontAwesomeIcon icon={faChevronLeft} size={18} color={'white'} />

将图标组件包裹在 View 组件中,并为 View 赋予宽度和高度。

如果您使用的是来自react-native-elements Icon组件,那么有一个名为size的道具。

<Icon type="FontAwesome5" name="thumbs-up" size={10}/>

I have to answer my question, cause I found it

<Icon type="FontAwesome5" name="thumbs-up" **style={{fontSize: 20}}**/>

so my native base version is v2.15, so all I need was only to add fontSize

so thank you guys for helping me

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM