From f0bfa39f33c1e40201fbb243ce2dabb02fbf2f31 Mon Sep 17 00:00:00 2001 From: Eric NGUYEN Date: Tue, 16 Aug 2022 14:08:54 +0200 Subject: [PATCH] RadioGroupButtons: Improve CSS --- src/Components/RadioGroupButtons/RadioGroupButtons.tsx | 6 +++++- src/Interfaces/IInputGroup.ts | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Components/RadioGroupButtons/RadioGroupButtons.tsx b/src/Components/RadioGroupButtons/RadioGroupButtons.tsx index 76f1433..f007392 100644 --- a/src/Components/RadioGroupButtons/RadioGroupButtons.tsx +++ b/src/Components/RadioGroupButtons/RadioGroupButtons.tsx @@ -18,6 +18,7 @@ export const RadioGroupButtons: React.FunctionComponent -
+
{ inputGroups }
diff --git a/src/Interfaces/IInputGroup.ts b/src/Interfaces/IInputGroup.ts index eba23cd..dfc9942 100644 --- a/src/Interfaces/IInputGroup.ts +++ b/src/Interfaces/IInputGroup.ts @@ -1,4 +1,6 @@ +import React from 'react'; + export interface IInputGroup { - text: string + text: React.ReactNode value: string }