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}
} ) }