18F/identity-idp

View on GitHub
app/javascript/packages/components/page-footer.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import type { ReactNode } from 'react';

interface PageFooterProps {
  /**
   * Footer contents.
   */
  children: ReactNode;
}

function PageFooter({ children }: PageFooterProps) {
  return (
    <div className="margin-top-4 padding-top-2 border-top border-primary-light">{children}</div>
  );
}

export default PageFooter;