import { Badge, BlockItem, ItemSubtitle, ItemTitle, ItemWrap } from './style'; const RowBlock = ({ title, subtitle, url, badge, openExternal = false, disabled = false, children = null }) => ( { !children && ( <> { title } { badge && { badge }} { subtitle } ) } { children } ); export default RowBlock;