diff --git a/src/components/AppFooter/__snapshots__/AppFooter.test.tsx.snap b/src/components/AppFooter/__snapshots__/AppFooter.test.tsx.snap index 9916eda..ca5bd4e 100644 --- a/src/components/AppFooter/__snapshots__/AppFooter.test.tsx.snap +++ b/src/components/AppFooter/__snapshots__/AppFooter.test.tsx.snap @@ -302,13 +302,23 @@ exports[`rendering of AppFooter Component > checks if component renders 1`] = ` data-testid="gridContainer" > - - Share your feedback - + diff --git a/src/components/BtnLaunchExternal/__snapshots__/BtnLaunchExternal.test.tsx.snap b/src/components/BtnLaunchExternal/__snapshots__/BtnLaunchExternal.test.tsx.snap index 844fcf0..0a24af4 100644 --- a/src/components/BtnLaunchExternal/__snapshots__/BtnLaunchExternal.test.tsx.snap +++ b/src/components/BtnLaunchExternal/__snapshots__/BtnLaunchExternal.test.tsx.snap @@ -16,7 +16,7 @@ exports[`rendering of BtnLaunchExternal Component > checks if component renders test launch icon diff --git a/src/components/Layout/__snapshots__/Layout.test.tsx.snap b/src/components/Layout/__snapshots__/Layout.test.tsx.snap index 319a72e..f434bdf 100644 --- a/src/components/Layout/__snapshots__/Layout.test.tsx.snap +++ b/src/components/Layout/__snapshots__/Layout.test.tsx.snap @@ -302,13 +302,23 @@ exports[`rendering of AppFooter Component > checks if component renders 1`] = ` data-testid="gridContainer" > - - Share your feedback - + @@ -1033,13 +1043,23 @@ exports[`rendering of Layout Component > checks if component renders 1`] = ` data-testid="gridContainer" > - - Share your feedback - + , diff --git a/src/components/SurveyButton/SurveyButton.tsx b/src/components/SurveyButton/SurveyButton.tsx index 9ecee6d..e94141a 100644 --- a/src/components/SurveyButton/SurveyButton.tsx +++ b/src/components/SurveyButton/SurveyButton.tsx @@ -1,30 +1,33 @@ import React from 'react'; -// import { Button } from '@trussworks/react-uswds'; +import { Button } from '@trussworks/react-uswds'; import * as styles from './SurveyButton.module.scss'; import MainGridContainer from '../MainGridContainer'; // import { SurveyButtonProps } from '@/types'; +// @ts-ignore +import launchIcon from '../../../node_modules/@uswds/uswds/dist/img/usa-icons/launch.svg'; +import { FEEDBACK_SURVEY_LINKS } from '../../data/constants'; const SurveyButton: React.FC = () => { return ( - {/* */} + /> + ); diff --git a/src/components/SurveyButton/__snapshots__/SurveyButton.test.tsx.snap b/src/components/SurveyButton/__snapshots__/SurveyButton.test.tsx.snap index cd53ff5..438577d 100644 --- a/src/components/SurveyButton/__snapshots__/SurveyButton.test.tsx.snap +++ b/src/components/SurveyButton/__snapshots__/SurveyButton.test.tsx.snap @@ -6,13 +6,23 @@ exports[`rendering of SurveyButton Component > checks if component renders 1`] = data-testid="gridContainer" > - - Share your feedback - + `; diff --git a/src/data/constants.tsx b/src/data/constants.tsx index 3ff14f7..1581342 100644 --- a/src/data/constants.tsx +++ b/src/data/constants.tsx @@ -45,3 +45,9 @@ export const FOOTER_CEQ_ADDRESS = { export const DELIMITERS = { PARAGRAPH: `%%%%`, }; + +// Survey Links +export const FEEDBACK_SURVEY_LINKS = { + EN: `https://eop.gov1.qualtrics.com/jfe/form/SV_aVPdC5qtPNhCw3s`, + ES: ``, +};