aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/layout/page-footer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/layout/page-footer.tsx')
-rw-r--r--src/components/molecules/layout/page-footer.tsx18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/components/molecules/layout/page-footer.tsx b/src/components/molecules/layout/page-footer.tsx
deleted file mode 100644
index e0ce2ef..0000000
--- a/src/components/molecules/layout/page-footer.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import type { FC, ReactNode } from 'react';
-import { Footer, type FooterProps } from '../../atoms';
-
-export type PageFooterProps = Omit<FooterProps, 'children'> & {
- /**
- * The footer contents.
- */
- children?: ReactNode;
-};
-
-/**
- * PageFooter component
- *
- * Render a footer to display page meta.
- */
-export const PageFooter: FC<PageFooterProps> = ({ children, ...props }) => (
- <Footer {...props}>{children}</Footer>
-);