From 2ff8f171ca1a17d5f29d373422d5c908f1fdb632 Mon Sep 17 00:00:00 2001 From: malangcat Date: Sun, 2 Feb 2025 09:32:34 +0900 Subject: [PATCH] fix: export AppBar props --- docs/content/docs/react/components/stackflow/app-screen.mdx | 4 ++++ docs/registry/ui/app-bar.tsx | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/docs/content/docs/react/components/stackflow/app-screen.mdx b/docs/content/docs/react/components/stackflow/app-screen.mdx index 22684750a..a185a7acb 100644 --- a/docs/content/docs/react/components/stackflow/app-screen.mdx +++ b/docs/content/docs/react/components/stackflow/app-screen.mdx @@ -19,6 +19,10 @@ description: "이 문서는 정리 중이에요. 문의 내용은 #_design_core +### AppBarMain + + + ## 예제 ### Transparent app bar diff --git a/docs/registry/ui/app-bar.tsx b/docs/registry/ui/app-bar.tsx index 9c0d37628..f4063b425 100644 --- a/docs/registry/ui/app-bar.tsx +++ b/docs/registry/ui/app-bar.tsx @@ -13,10 +13,16 @@ import { useActions, useActivity } from "@stackflow/react"; import * as React from "react"; import { forwardRef } from "react"; +export interface AppBarProps extends SeedAppBar.RootProps {} + export const AppBar = SeedAppBar.Root; +export interface AppBarLeftProps extends SeedAppBar.LeftProps {} + export const AppBarLeft = SeedAppBar.Left; +export interface AppBarRightProps extends SeedAppBar.RightProps {} + export const AppBarRight = SeedAppBar.Right; export interface AppBarMainProps extends Omit {