department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ezr/components/FormDescriptions/SpouseFinancialSupportDescription.jsx

Summary

Maintainability
B
4 hrs
Test Coverage
import React from 'react';

const SpouseFinancialSupportDescription = (
  <va-additional-info
    trigger="What we consider financial support for a spouse"
    class="vads-u-margin-bottom--4 hydrated"
    uswds
  >
    <div>
      <p className="vads-u-margin-top--0">
        We consider any payments, even if they aren’t regular or the same
        amount, to be financial support.
      </p>
      <p>
        <strong>
          Financial support includes payments for these types of payments:
        </strong>
      </p>
      <ul className="vads-u-margin-bottom--0">
        <li>Monthly spousal support</li>
        <li>One-time payment financial support</li>
      </ul>
    </div>
  </va-additional-info>
);

export default SpouseFinancialSupportDescription;