Skip to content

Commit

Permalink
feat: ErrorScreen から footer props を omit した
Browse files Browse the repository at this point in the history
  • Loading branch information
oti committed Jun 13, 2024
1 parent 132ecc9 commit 3cb4633
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ type Props = {
}>
/** 表示するコンテンツ */
children?: ReactNode
/** @deprecated フッター指定は非推奨です。リンクの表示が必要な場合は links を使用してください。 */
footer?: ReactNode
/** コンポーネントに適用するクラス名 */
className?: string
}
Expand All @@ -41,7 +39,6 @@ export const ErrorScreen: FC<Props & ElementProps> = ({
title,
links,
children,
footer,
className,
...props
}) => {
Expand Down Expand Up @@ -79,8 +76,6 @@ export const ErrorScreen: FC<Props & ElementProps> = ({
)}
</Stack>
</Stack>

{footer && <div className="shr-self-stretch">{footer}</div>}
</Center>
)
}

0 comments on commit 3cb4633

Please sign in to comment.