import { Card, CardBody } from '@wordpress/components'; import { PropsWithChildren, FC } from 'react'; import SVGIcon from 'calypso/components/svg-icon'; type AppsCardProps = PropsWithChildren< { logo: string; logoName: string; title: string; subtitle: string; } >; export const AppsCard: FC< AppsCardProps > = ( { logo, logoName, title, subtitle, children } ) => { return (
{ children &&
{ children }
}
); };