import { Gridicon, Button, FoldableCard } from '@automattic/components'; import { OfferingItemProps } from './types'; const OfferingItem: React.FC< OfferingItemProps > = ( { title, titleIcon, description, highlights, buttonTitle, expanded, clickableHeader = true, actionHandler, href, } ) => { const header = (
{ titleIcon }

{ title }

); return (

{ description }

); }; export default OfferingItem;