[icon_size] fix code regarding feedback

Signed-off-by: Thorsten Scherler <scherler@gmail.com>
This commit is contained in:
Thorsten Scherler 2023-11-14 13:27:55 +01:00
parent 57cec62ea2
commit b4c9b81eb3
No known key found for this signature in database
GPG Key ID: 867A155D46D97BE1
2 changed files with 5 additions and 3 deletions

View File

@ -32,11 +32,13 @@
}
:host {
font-size: map.get($tokens, size);
font-size: map.get($tokens, 'size');
width: map.get($tokens, 'size');
height: map.get($tokens, 'size');
color: inherit;
font-variation-settings: inherit;
font-weight: 400;
font-family: map.get($tokens, font);
font-family: map.get($tokens, 'font');
display: inline-flex;
font-style: normal;
line-height: 1;

View File

@ -18,7 +18,7 @@ $supported-tokens: (
@return (
// go/keep-sorted start
font: if($exclude-hardcoded-values, null, 'Material Symbols Outlined'),
size: if($exclude-hardcoded-values, null, '24px'),
size: if($exclude-hardcoded-values, null, 24px),
// go/keep-sorted end
);
}