AdminFooter
organisms
Site footer with copyright left, link group right (Help / Privacy / Terms). 12px text, muted color, separated by 16px gap.
ARIA Role: contentinfo
Demo
Demo for AdminFooter (organisms)
Site footer with copyright left, link group right (Help / Privacy / Terms). 12px text, muted color, separated by 16px gap.
Props
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
copyright | string | Yes | — | |
links | FooterLink[] | Yes | — |
TypeScript Interface
interface AdminFooterProps {
copyright: string;
links: { label: string; href: string }[];
}Assertions (NASA Rule 5)
- [type]copyright and links required(NASA Rule 5)
- [aria]Must be <footer role='contentinfo'>; links <nav> with aria-label='Footer'(WCAG 1.3.1)
Usage
Import
import { Adminfooter } from '@epasslive/design-system'Basic
<Adminfooter />With Variants
<Adminfooter variant="primary" size="md" />