From ce4df2f1c6aa922f64b7ceb83580ac5c3dfc6283 Mon Sep 17 00:00:00 2001 From: Franco Arza Date: Mon, 26 Oct 2020 09:56:47 -0300 Subject: [PATCH] make description optional on featurebar --- components/core/Featurebar/Featurebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/core/Featurebar/Featurebar.tsx b/components/core/Featurebar/Featurebar.tsx index 6d5b88a0f..a243590b1 100644 --- a/components/core/Featurebar/Featurebar.tsx +++ b/components/core/Featurebar/Featurebar.tsx @@ -6,7 +6,7 @@ import s from './Featurebar.module.css' interface Props { className?: string title: string - description: string + description?: string hide?: boolean action?: React.ReactNode }