import cn from 'classnames' import { FC } from 'react' import s from './Featurebar.module.css' interface Props { className?: string title: string description: string } const Featurebar: FC = ({ title, description, className }) => { const rootClassName = cn( 'hidden py-4 px-6 bg-black text-white md:flex flex-row justify-center items-center;', className ) return (
{title} {description}
) } export default Featurebar