import {ElementType, ReactNode} from 'react' import {twMerge} from 'tailwind-merge' type FeatureProps = { icon: ElementType title: String children: ReactNode className?: string } export function Feature({icon: Icon, title, children, className}: FeatureProps) { return (