Renders the "Agree to Terms & Privacy Policy by signing up." label used alongside signup checkboxes, with configurable links for the Terms and Privacy Policy URLs. ## Key Components - **`TermsAgreementLabelProps`** — Interface accepting optional `termsUrl` and `privacyPolicyUrl` strings (both default to `'#'`) - **`TermsAgreementLabel`** — Client component that renders a `` with inline anchor tags for Terms and Privacy Policy; links open in a new tab and stop click propagation to prevent unintended checkbox toggling ## Usage Example ```typescript import { TermsAgreementLabel } from './terms-agreement-label' // With custom URLs // With defaults (links point to '#') ``` ## Notes - `onClick` on each anchor calls `event.stopPropagation()` to prevent the parent checkbox `label` element from toggling when a link is clicked - Both links use `target="_blank"` with `rel="noopener noreferrer"` for secure external navigation - Styled with ODS design tokens (`text-ods-text-primary`, `text-ods-text-secondary`)