3 declare(strict_types=1);
12 $f = $DIC->ui()->factory();
13 $renderer = $DIC->ui()->renderer();
15 $ico =
$f->symbol()->icon()
16 ->standard(
'someExample',
'Example')
17 ->withAbbreviation(
'E')
19 $button =
$f->button()->bulky($ico,
'Icon',
'#');
21 $glyph =
$f->symbol()->glyph()->briefcase();
22 $button2 =
$f->button()->bulky($glyph,
'Glyph',
'#');
24 return $renderer->render([
26 $f->divider()->horizontal(),