This lightning web component is created to display content inside SLDS panel.
https://www.lightningdesignsystem.com/components/panels/
https://developer.salesforce.com/docs/component-library/tools/playground/O7Jrx2mVJ/21/edit
(replace the domain)
https://YOUR_DOMAIN.lightning.force.com/packaging/installPackage.apexp?p0=04t3h000000id1g
<c-panel>
<!-- Panel Content Goes Here-->
</c-panel>
Hidden Header
<c-panel hide-header>
<!-- Panel Content Goes Here-->
</c-panel>
<c-panel custom-header>
<span slot="header">
<!-- Custom Header Goes Here -->
</span>
<span slot="content">
<!-- Panel Content Goes Here -->
</span>
</c-panel>
<c-panel size="small">
<!-- Panel Content Goes Here -->
</c-panel>
<c-panel onclose={onPanelClose}>
<!-- Panel Content Goes Here -->
</c-panel>
<c-panel full-height>
<!-- Panel Content Goes Here -->
</c-panel>
String title
String size = small, medium, large, x-large, full
Boolean hide-header
Boolean custom-header
Event onclose