From 3cb4633b18245bcda04aa5d4e47d3f1918e91e91 Mon Sep 17 00:00:00 2001 From: oti Date: Thu, 13 Jun 2024 19:29:11 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20ErrorScreen=20=E3=81=8B=E3=82=89=20foot?= =?UTF-8?q?er=20props=20=E3=82=92=20omit=20=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../smarthr-ui/src/components/ErrorScreen/ErrorScreen.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/smarthr-ui/src/components/ErrorScreen/ErrorScreen.tsx b/packages/smarthr-ui/src/components/ErrorScreen/ErrorScreen.tsx index c88662270a..8b20fa04da 100644 --- a/packages/smarthr-ui/src/components/ErrorScreen/ErrorScreen.tsx +++ b/packages/smarthr-ui/src/components/ErrorScreen/ErrorScreen.tsx @@ -24,8 +24,6 @@ type Props = { }> /** 表示するコンテンツ */ children?: ReactNode - /** @deprecated フッター指定は非推奨です。リンクの表示が必要な場合は links を使用してください。 */ - footer?: ReactNode /** コンポーネントに適用するクラス名 */ className?: string } @@ -41,7 +39,6 @@ export const ErrorScreen: FC = ({ title, links, children, - footer, className, ...props }) => { @@ -79,8 +76,6 @@ export const ErrorScreen: FC = ({ )} - - {footer &&
{footer}
} ) }