admin管理员组文章数量:1342739
I'm using react-feather to render icons in a ponent. I'm able to get it to import a static icon by hard coding it in. But how do I make it render the icon based on what has been passed to it in the IconLeft.icon
props?
import { Camera } from 'react-feather';
import React, { FunctionComponent } from 'react';
type HeaderProps = {
title: string;
iconLeft?: {
icon?: string;
url?: string;
state?: string;
label?: string;
}
}
export const DefaultHeader: FunctionComponent<HeaderProps> = ({ title, iconLeft, iconRight}) => <header>
<h1>{String}</h1>
<Camera size={24} stroke-width={2}/>
</header>
I'm using react-feather to render icons in a ponent. I'm able to get it to import a static icon by hard coding it in. But how do I make it render the icon based on what has been passed to it in the IconLeft.icon
props?
import { Camera } from 'react-feather';
import React, { FunctionComponent } from 'react';
type HeaderProps = {
title: string;
iconLeft?: {
icon?: string;
url?: string;
state?: string;
label?: string;
}
}
export const DefaultHeader: FunctionComponent<HeaderProps> = ({ title, iconLeft, iconRight}) => <header>
<h1>{String}</h1>
<Camera size={24} stroke-width={2}/>
</header>
Share
Improve this question
asked Mar 20, 2022 at 11:51
Tom WicksTom Wicks
1,0353 gold badges16 silver badges31 bronze badges
2 Answers
Reset to default 8You can use JSX.Element
as the type for icon props.
Example:
type HeaderProps = {
title: string;
icon: JSX.Element;
};
const Header: FC<HeaderProps> = ({ icon, title }) => {
return (
<header>
<h1>{title}</h1>
{icon}
</header>
);
};
export default function App() {
return (
<div className="App">
<Header title="header" icon={<Camera />} />
</div>
);
}
You can use cloneElement
to dynamically render any ponent you want by passing it as a prop.
import React, { cloneElement, FunctionComponent } from "react";
type HeaderProps = {
title: string;
iconLeft?: {
icon: JSX.Element;
url?: string;
state?: string;
label?: string;
};
};
export const DefaultHeader: FunctionComponent<HeaderProps> = ({
title,
iconLeft,
}) => (
<header>
<h1>{String}</h1>
{iconLeft && cloneElement(iconLeft.icon, { size: 24, "stroke-width": 2 })}
</header>
);
Usage example:
<DefaultHeader iconLeft={{ icon: <Camera /> }} />
本文标签: javascriptHow to render icon based on props using react and typescriptStack Overflow
版权声明:本文标题:javascript - How to render icon based on props using react and typescript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743711398a2525995.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论