feat(notification): remove default prop value for title, caption

This commit is contained in:
Eric Y Liu 2021-03-20 11:00:07 -07:00
commit 5ba6cc00b0
5 changed files with 11 additions and 11 deletions

View file

@ -35,7 +35,7 @@ export interface InlineNotificationProps
/**
* Specify the title text
* @default "Title"
* @default ""
*/
title?: string;

View file

@ -35,7 +35,7 @@ export interface ToastNotificationProps
/**
* Specify the title text
* @default "Title"
* @default ""
*/
title?: string;
@ -47,7 +47,7 @@ export interface ToastNotificationProps
/**
* Specify the caption text
* @default "Caption"
* @default ""
*/
caption?: string;