在 IconButton 中使用图像作为图标 - ChakraUI

发布于 2025-01-13 16:24:21 字数 156 浏览 1 评论 0原文

我想在 IconButton 中使用 .png 文件,但是 设置 icon="/image.pngsrc="/image.png 不起作用 如何传递图像作为 chakraUI 中 IconButton 组件的图标?

i want to use a .png file inside IconButton, but
setting icon="/image.png or src="/image.png does not work
How do i pass an image as the icon for the IconButton component in chakraUI?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

生生漫 2025-01-20 16:24:21

您可以将 组件嵌套在 组件中,如下所示:

<IconButton icon={<Image src="/image.png" />} />

You can nest the <Image> component inside the <IconButton> component like this:

<IconButton icon={<Image src="/image.png" />} />
若言繁花未落 2025-01-20 16:24:21

我问得有点早
所以我通过创建一个 imageElement = React.CreateElement("img", {src="/image.png"}) 并将其传递到 icon={imageElement} 来修复此问题IconButton 的代码>

i ask a bit early
so i fixed this by creating an imageElement = React.CreateElement("img", {src="/image.png"}) the passing it into the icon={imageElement} of IconButton

赠我空喜 2025-01-20 16:24:21

Yoyoy 任何图像都没有创建反应内容

导入 ListIcon,来自 Chakraui blah blah 的图像

${url OR API call}}/>;

Yoyoy any image no create react stuff

import ListIcon, Image from Chakraui blah blah

<ListIcon as={Image} src={${url OR API call}}/>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文