From a35ae12328117d1fb6a6eaadb82b152a93c077e3 Mon Sep 17 00:00:00 2001 From: coderwelsch Date: Tue, 16 Jan 2024 10:37:49 +0100 Subject: [PATCH] feat: added className property to radio box options --- src/components/form-field/radio-box/radio-box-option.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/form-field/radio-box/radio-box-option.tsx b/src/components/form-field/radio-box/radio-box-option.tsx index 2fedaf37..2425cd26 100644 --- a/src/components/form-field/radio-box/radio-box-option.tsx +++ b/src/components/form-field/radio-box/radio-box-option.tsx @@ -8,6 +8,7 @@ export interface RadioBoxOptionProps { value: string; disabled?: boolean; recommendationText?: string; + className?: string; } export const RadioBoxOption = ({ @@ -15,6 +16,7 @@ export const RadioBoxOption = ({ value, disabled, recommendationText, + className, }: RadioBoxOptionProps) => { return ( {children}