19 declare(strict_types=1);
35 $f = $DIC->ui()->factory();
40 $ico =
$f->symbol()->icon()->standard(
'someExample',
'Example');
41 $ico = $ico->withAbbreviation(
'E');
44 .
' Small Example with Short Abbreviation';
46 $buffer[] =
$renderer->render($ico->withSize(
'medium'))
47 .
' Medium Example with Short Abbreviation';
49 $buffer[] =
$renderer->render($ico->withSize(
'large'))
50 .
' Large Example with Short Abbreviation';
53 $ico =
$f->symbol()->icon()->standard(
'someOtherExample',
'Example');
54 $ico = $ico->withAbbreviation(
'LA');
56 $buffer[] =
$renderer->render($ico->withSize(
'small'))
57 .
' Small Example with Long Abbreviation';
59 $buffer[] =
$renderer->render($ico->withSize(
'medium'))
60 .
' Medium Example with Long Abbreviation';
62 $buffer[] =
$renderer->render($ico->withSize(
'large'))
63 .
' Large Example with Long Abbreviation';
66 return implode(
'<br><br>', $buffer);
default_icon()
description: > Example for rendering a standard icon.