// @flow import * as React from 'react'; type Props = { icon?: React.Node, subtitle?: React.Node, title: React.Node, }; const ThumbnailCardDetails = ({ icon, subtitle, title }: Props) => (
{icon}
{title}
{subtitle &&
{subtitle}
}
); export default ThumbnailCardDetails;