import { ReactNode } from "react"; interface FeatureCardProps { icon: ReactNode; title: string; description: string; } const FeatureCard = ({ icon, title, description }: FeatureCardProps) => { return (
{description}