import React, { forwardRef } from "react"; import { FeaturesSectionProps } from "../../types"; import { Card, CardContent } from "../ui/Card"; export const FeaturesSection = forwardRef( ( { className = "", features = [ { title: "Easy to Use", description: "Simple and intuitive components that work out of the box", }, { title: "TypeScript Support", description: "Full TypeScript support with comprehensive type definitions", }, { title: "Customizable", description: "Flexible styling options to match your design system", }, ], children, ...props }, ref ) => { return (

Features

Discover what makes our component library the perfect choice for your next project

{features.map((feature, index) => ( {feature.icon && (
{feature.icon}
)}

{feature.title}

{feature.description}

))}
{children}
); } ); FeaturesSection.displayName = "FeaturesSection";