7 $f = $DIC->ui()->factory();
8 $renderer = $DIC->ui()->renderer();
10 $ico =
$f->symbol()->icon()
11 ->standard(
'someExample',
'Example')
12 ->withAbbreviation(
'E')
14 $button =
$f->button()->bulky($ico,
'Icon',
'#');
16 $glyph =
$f->symbol()->glyph()->briefcase();
17 $button2 =
$f->button()->bulky($glyph,
'Glyph',
'#');
19 return $renderer->render([
21 $f->divider()->horizontal(),