import cx from 'classnames'; import React from 'react'; import { ic } from '../../../../slots/hooks'; import FeatureCard from './FeatureCard'; import styles from './index.module.less'; interface Card { icon: string; title: string; description: string; } interface FeaturesProps { title?: string; features: Card[]; className?: string; style?: React.CSSProperties; id?: string; } export const Features: React.FC = ({ title, features = [], className, style, id }) => { return (

{title ? ic(title) : ''}

{features.map((card) => (
))}
); };