type IconWithTextProps = { icon: string; text: string; desc: string; }; export const IconWithText = ({ icon, text, desc }: IconWithTextProps) => { return (
{text}
{desc}