remove default from inline notification (#553)

* remove default from inline notification

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

Co-authored-by: Eric Y Liu <ericyl.us@gmail.com>
This commit is contained in:
Nicco 2021-03-20 19:05:38 +01:00 committed by GitHub
commit 121062a80c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 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;