feat(inline-notification): make title/subtitle slottable

Closes #883
This commit is contained in:
metonym 2021-11-12 16:13:06 -08:00
commit e59e1a9348
5 changed files with 35 additions and 13 deletions

View file

@ -11,6 +11,13 @@ source: Notification/InlineNotification.svelte
<InlineNotification title="Error:" subtitle="An internal server error occurred." />
### Slottable title, subtitle
<InlineNotification>
<strong slot="title">Error: </strong>
<strong slot="subtitle">An internal server error occurred.</strong>
</InlineNotification>
### Hidden close button
<InlineNotification hideCloseButton kind="warning" title="Scheduled maintenance:" subtitle="Maintenance will last 2-4 hours." />