react-rainbow-component库中如何手动自定义头像大小?
How can I manually customize the size of the Avatar in the library react-rainbow-component?
如何在库react-rainbow-component中手动自定义头像大小?我使用了 size 道具并将其设置为大,但它对我来说太小了,所以我想将其设为自定义尺寸。
您可以使用 className
或 style
道具自定义尺寸,例如使用 style
<Avatar
style={{width: 100, height: 100}}
src="images/user/user1.jpg"
title=“John Doe" />
你可以在这里看到一个例子
https://react-rainbow.io/#!/Avatar/9
如何在库react-rainbow-component中手动自定义头像大小?我使用了 size 道具并将其设置为大,但它对我来说太小了,所以我想将其设为自定义尺寸。
您可以使用 className
或 style
道具自定义尺寸,例如使用 style
<Avatar
style={{width: 100, height: 100}}
src="images/user/user1.jpg"
title=“John Doe" />
你可以在这里看到一个例子 https://react-rainbow.io/#!/Avatar/9