```php $items = ['blue', 'green', 'red']; echo Div::tag()->content( 'Collors', '<br>', (static function() use ($items): Generator { foreach ($items as $item) { yield Div::tag()->content($item); } })() ); ``` See an example https://3v4l.org/brubX