<!-- typography.blade.php original: h2 -->
<h2 class="c-typography u-margin__bottom--2 c-typography__variant--h2" data-uid="673ed219974dc">
With styling parameter.
</h2> <!-- inlineCssWrapper.blade.php -->
<div class="c-inlinecsswrapper" style="padding: 8px; background-color: blue; border-radius: 100%; display: inline-flex;" data-uid="673ed21997640">
<!-- icon.blade.php -->
<span class="c-icon c-icon--restaurant c-icon--material c-icon--material-restaurant material-symbols material-symbols-rounded material-symbols-sharp material-symbols-outlined c-icon--color-primary c-icon--size-xl" material-symbol="restaurant" role="img" data-nosnippet="" translate="no" aria-label="Icon: Undefined" alt="Icon: Undefined" aria-hidden="false" data-uid="673ed219975c9">
</span>
</div>
<!-- typography.blade.php original: h2 -->
<h2 class="c-typography u-margin__bottom--2 c-typography__variant--h2" data-uid="673ed2199767e">
Without styling parameter.
</h2> <!-- inlineCssWrapper.blade.php -->
<!-- icon.blade.php -->
<span class="c-icon c-icon--restaurant c-icon--material c-icon--material-restaurant material-symbols material-symbols-rounded material-symbols-sharp material-symbols-outlined c-icon--color-primary c-icon--size-xl" material-symbol="restaurant" role="img" data-nosnippet="" translate="no" aria-label="Icon: Undefined" alt="Icon: Undefined" aria-hidden="false" data-uid="673ed219976b4">
</span>
@typography([
'element' => 'h2',
'classList' => ['u-margin__bottom--2']
])
With styling parameter.
@endtypography
@inlineCssWrapper([
'styles' => [
'padding' => '8px',
'background-color' => 'blue',
'border-radius' => '100%',
'display' => 'inline-flex'
]
])
@icon([
'icon' => 'restaurant',
'size' => 'xl',
'color' => 'primary',
])
@endicon
@endinlineCssWrapper
@typography([
'element' => 'h2',
'classList' => ['u-margin__bottom--2']
])
Without styling parameter.
@endtypography
@inlineCssWrapper([
])
@icon([
'icon' => 'restaurant',
'size' => 'xl',
'color' => 'primary',
])
@endicon
@endinlineCssWrapper