diff --git a/src/components/SelectMenu.tsx b/src/components/SelectMenu.tsx
index fda168b8..8aee6fe9 100644
--- a/src/components/SelectMenu.tsx
+++ b/src/components/SelectMenu.tsx
@@ -162,6 +162,7 @@ export default function SelectMenu({
{children ??
({
accessoryStart,
accessoryEnd,
note,
+ className,
isSelected,
isHighlighted,
shouldHighlightOnHover,
onClick,
}: {
+ className?: string
isSelected?: boolean
isHighlighted?: boolean
shouldHighlightOnHover?: boolean
@@ -42,11 +44,12 @@ export default function SelectMenuOption({
className={clsx(
'flex flex-col',
'px-1.5 py-1 rounded-sm',
- 'text-lg select-none',
+ 'select-none',
'cursor-pointer',
isHighlighted && 'bg-dim',
shouldHighlightOnHover && 'hover:bg-dim',
onClick && 'active:bg-medium',
+ className,
)}
>