diff --git a/src/components/calendar/CalendarCheckBoxList.tsx b/src/components/calendar/CalendarCheckBoxList.tsx index f3645cb0..13a3dd44 100644 --- a/src/components/calendar/CalendarCheckBoxList.tsx +++ b/src/components/calendar/CalendarCheckBoxList.tsx @@ -58,31 +58,37 @@ export default function CalendarCheckBoxList({ titleClassName="text-mainGreen text-sm text-darkGray-active mb-3 [&>button>svg]:text-xs [&>button>svg]:text-darkGray-active" initialOpen > - + )} - + {category === '개인 캘린더' && ( + + )} ))} diff --git a/src/components/common/TabNavigation.tsx b/src/components/common/TabNavigation.tsx index d9be058a..c04ef86c 100644 --- a/src/components/common/TabNavigation.tsx +++ b/src/components/common/TabNavigation.tsx @@ -10,6 +10,7 @@ interface TabNavigationProps { ) => void; selectValue: string; children?: ReactNode; + className?: string; tabClassName?: string; selectedStyle?: { point: 'dot' | 'border'; @@ -23,6 +24,7 @@ export default function TabNavigation({ selectValue, onChangeValue, tabClassName, + className, selectedStyle = { point: 'border', color: 'black' }, }: TabNavigationProps) { const borderStyle = selectedStyle.point === 'border' ? 'border-b-2' : ''; @@ -34,9 +36,9 @@ export default function TabNavigation({ return (