From e292d9d687256c6c98e39ca0d2188bf715fd0d42 Mon Sep 17 00:00:00 2001 From: mike puzon Date: Wed, 15 May 2024 14:52:20 -0700 Subject: [PATCH] remove border attempt --- lib/components/select.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/components/select.tsx b/lib/components/select.tsx index 085f32e..d0cf30e 100644 --- a/lib/components/select.tsx +++ b/lib/components/select.tsx @@ -27,9 +27,6 @@ export const Select = ({ options, id, value, onChange }: SelectProps) => { value={value} onChange={handleChange} className={`${styles['selectContainer']} text-gray-900 font-normal `} - containerProps={{ - className: 'border-gray-400', - }} labelProps={{ className: 'before:mr-0 after:ml-0', }}