From dd6f5c12cb586e6039b57dc617758dcc4127cb64 Mon Sep 17 00:00:00 2001 From: Ojas Atkar Date: Wed, 28 May 2025 23:00:26 +0530 Subject: [PATCH] fix(unity-react-core): adding Grays to code kit --- .../src/components/Testimonial/Testimonial.stories.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/unity-react-core/src/components/Testimonial/Testimonial.stories.jsx b/packages/unity-react-core/src/components/Testimonial/Testimonial.stories.jsx index d666822187..c036e4ac13 100644 --- a/packages/unity-react-core/src/components/Testimonial/Testimonial.stories.jsx +++ b/packages/unity-react-core/src/components/Testimonial/Testimonial.stories.jsx @@ -26,12 +26,13 @@ export default { argTypes: { wrapperBackgroundColor: { defaultValue: "", - options: ["", "bg-gray-2", "bg-gray-7"], + options: ["", "bg-gray-2", "bg-gray-7", "bg-gray-1"], control: { type: "radio", labels: { "": "White", - "bg-gray-2": "Gray", + "bg-gray-2": "Gray 2", + "bg-gray-1": "Gray 1", "bg-gray-7": "Black", }, },