("created");
+
+ return (
+
+
+ 독서기록
+
+ {
+ setValue(newValue ?? "created");
+ }}
+ allowToggle={false}
+ >
+
+
+ 생성일 순
+
+
+
+ 업데이트 순
+
+
+
+
+ );
+};
diff --git a/packages/design-system/TopNavigation.tsx b/packages/design-system/TopNavigation.tsx
index 1d3be8f..0487aa8 100644
--- a/packages/design-system/TopNavigation.tsx
+++ b/packages/design-system/TopNavigation.tsx
@@ -1,13 +1,13 @@
import { BackIcon } from "@repo/icon/BackIcon";
-import { type ComponentPropsWithoutRef, type Ref, forwardRef } from "react";
+import { type ComponentPropsWithRef, type Ref, forwardRef } from "react";
import { Text } from "./Text";
import { cn } from "./cn";
-interface TopNavigationProps extends ComponentPropsWithoutRef<"button"> {
+interface TopNavigationProps extends ComponentPropsWithRef<"button"> {
title?: string;
}
-export const TopNavigation = forwardRef(function SearchBar(
+export const TopNavigation = forwardRef(function TopNavigation(
{ className, title = "독서기록", ...rest }: TopNavigationProps,
ref?: Ref,
) {