import { LucideProps } from "lucide-react"; import React from "react"; type LucideIconType = React.ForwardRefExoticComponent< Omit & React.RefAttributes >; interface SuggestionCardProps { Icon: LucideIconType; iconColor: string; iconBackgroundColor: string; backgroundColor: string; titleTextColor: string; subTitleTextColor: string; title: string; subTitle: string; border?: string; } const SuggestionCard = ({ backgroundColor: background, Icon, iconColor, iconBackgroundColor, titleTextColor, subTitleTextColor, title, subTitle, border, }: SuggestionCardProps) => { return (
{title}
{subTitle}
); }; export default SuggestionCard;