From e1b2ad921534cb3b4a74d14608b46a9d54625699 Mon Sep 17 00:00:00 2001 From: Mary Hipp Date: Wed, 23 Oct 2024 11:42:56 -0400 Subject: [PATCH] bump description to two lines and bolden name if descriptoin is present --- lib/components/combobox/custom-option.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/components/combobox/custom-option.tsx b/lib/components/combobox/custom-option.tsx index 46e1433..1eaf4b5 100644 --- a/lib/components/combobox/custom-option.tsx +++ b/lib/components/combobox/custom-option.tsx @@ -33,9 +33,9 @@ export const CustomOptionComponent = typedMemo(({ children, ...props }: CustomOp {props.data.icon} - {children} + {children} {props.data.description && ( - + {props.data.description} )} @@ -50,9 +50,9 @@ export const CustomOptionComponent = typedMemo(({ children, ...props }: CustomOp - {children} + {children} {props.data.description && ( - + {props.data.description} )}