mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-10-01 00:43:17 -07:00
* Refactor Footer component - Make Footer component align to normal folder structure - Make links in Footer use LinkTypeWrapper, which will allow icon to be added to all external links in one place * Add Trussworks link to LinkTypeWrapper * Add icon to SurveyButton comp * Add launch icon to About page cards * Add launch icon to FederalRegister link * Refactor Methodology page - Add Source and Available for fields to dataset Cards - refactor data structure for dataset Cards to handle more than 1 source - update constants file - modify SASS for source list items - update snapshots * Add copy changes; How you can help and territories * Update methodology section with copy changes * Swap out all email links with <LinkTypeWrapper> - update tests
14 lines
480 B
TypeScript
14 lines
480 B
TypeScript
declare namespace SurveyButtonNamespace {
|
|
export interface ISurveyButtonScss {
|
|
surveyButton: string;
|
|
surveyButtonContainer: string;
|
|
launchIcon: string;
|
|
}
|
|
}
|
|
|
|
declare const SurveyButtonScssModule: SurveyButtonNamespace.ISurveyButtonScss & {
|
|
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
|
|
locals: SurveyButtonNamespace.ISurveyButtonScss;
|
|
};
|
|
|
|
export = SurveyButtonScssModule;
|