department-of-veterans-affairs/vets-website

View on GitHub
src/applications/hca/components/FormAlerts/DependentSIPWarning.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

const DependentSIPWarning = () => (
  <va-alert
    status="warning"
    class="vads-u-margin-bottom--2"
    data-testid="hca-sip-warning"
    uswds
  >
    <p className="vads-u-margin-y--0">
      Be sure to enter all the required information for your dependent. We can
      only save your progress when you enter the required information.
    </p>
  </va-alert>
);

export default DependentSIPWarning;