import { Card } from '@automattic/components'; import { ReactNode, FunctionComponent } from 'react'; import CardHeading from 'calypso/components/card-heading'; interface Props { children: ReactNode; description: ReactNode; disclaimer?: ReactNode; imageAlt?: string; imagePath?: string; title: ReactNode; } const MarketingToolsFeature: FunctionComponent< Props > = ( { children, description, disclaimer, imageAlt, imagePath, title, } ) => { return (
{ imagePath && ( { ) } { title }

{ description }

{ disclaimer &&

{ disclaimer }

}
{ children }
); }; export default MarketingToolsFeature;