mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
feat(notification): remove default prop value for title, caption
This commit is contained in:
parent
87bd94ce99
commit
5ba6cc00b0
5 changed files with 11 additions and 11 deletions
|
@ -19,13 +19,13 @@
|
|||
export let role = "alert";
|
||||
|
||||
/** Specify the title text */
|
||||
export let title = "Title";
|
||||
export let title = "";
|
||||
|
||||
/** Specify the subtitle text */
|
||||
export let subtitle = "";
|
||||
|
||||
/** Specify the caption text */
|
||||
export let caption = "Caption";
|
||||
export let caption = "";
|
||||
|
||||
/** Specify the ARIA label for the icon */
|
||||
export let iconDescription = "Closes notification";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue