@digigov/react-core 0.18.1 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Base/index.d.ts +10 -10
- package/Base/index.js +7 -4
- package/CHANGELOG.md +14 -1
- package/Container/index.js +2 -2
- package/Header/__snapshots__/index.test.tsx.snap +0 -2
- package/Header/index.js +0 -1
- package/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/HeaderNavMenuContent/index.d.ts +11 -0
- package/HeaderNavMenuContent/index.js +40 -0
- package/HeaderNavMenuContent/index.test.d.ts +1 -0
- package/HeaderNavMenuContent/index.test.js +15 -0
- package/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
- package/NavHorizontal/index.d.ts +4 -4
- package/NavHorizontal/index.js +5 -4
- package/NavHorizontal/index.test.js +2 -10
- package/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
- package/NavHorizontalList/index.d.ts +7 -2
- package/NavHorizontalList/index.js +5 -3
- package/NavHorizontalList/index.test.js +8 -0
- package/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
- package/NavHorizontalListItem/index.d.ts +4 -12
- package/NavHorizontalListItem/index.js +7 -10
- package/NavHorizontalListItem/index.test.js +0 -34
- package/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/NavHorizontalListItemButton/index.d.ts +22 -0
- package/NavHorizontalListItemButton/index.js +45 -0
- package/NavHorizontalListItemButton/index.test.d.ts +1 -0
- package/NavHorizontalListItemButton/index.test.js +31 -0
- package/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/NavHorizontalListItemLink/index.d.ts +20 -0
- package/NavHorizontalListItemLink/index.js +41 -0
- package/NavHorizontalListItemLink/index.test.d.ts +1 -0
- package/NavHorizontalListItemLink/index.test.js +49 -0
- package/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/NavMenu/index.d.ts +10 -0
- package/NavMenu/index.js +39 -0
- package/NavMenu/index.test.d.ts +1 -0
- package/NavMenu/index.test.js +15 -0
- package/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/NavMenuContainer/index.d.ts +10 -0
- package/NavMenuContainer/index.js +38 -0
- package/NavMenuContainer/index.test.d.ts +1 -0
- package/NavMenuContainer/index.test.js +15 -0
- package/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/NavMenuContainerContent/index.d.ts +11 -0
- package/NavMenuContainerContent/index.js +41 -0
- package/NavMenuContainerContent/index.test.d.ts +1 -0
- package/NavMenuContainerContent/index.test.js +15 -0
- package/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/NavMenuContainerContentList/index.d.ts +10 -0
- package/NavMenuContainerContentList/index.js +39 -0
- package/NavMenuContainerContentList/index.test.d.ts +1 -0
- package/NavMenuContainerContentList/index.test.js +15 -0
- package/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/NavMenuContainerContentListItem/index.d.ts +10 -0
- package/NavMenuContainerContentListItem/index.js +39 -0
- package/NavMenuContainerContentListItem/index.test.d.ts +1 -0
- package/NavMenuContainerContentListItem/index.test.js +15 -0
- package/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/NavMenuContainerTitle/index.d.ts +11 -0
- package/NavMenuContainerTitle/index.js +46 -0
- package/NavMenuContainerTitle/index.test.d.ts +1 -0
- package/NavMenuContainerTitle/index.test.js +15 -0
- package/README.md +0 -10
- package/es/Base/index.js +7 -4
- package/es/Container/index.js +2 -2
- package/es/Header/__snapshots__/index.test.tsx.snap +0 -2
- package/es/Header/index.js +0 -1
- package/es/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/es/HeaderNavMenuContent/index.js +24 -0
- package/es/HeaderNavMenuContent/index.test.js +9 -0
- package/es/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
- package/es/NavHorizontal/index.js +5 -4
- package/es/NavHorizontal/index.test.js +2 -10
- package/es/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
- package/es/NavHorizontalList/index.js +5 -3
- package/es/NavHorizontalList/index.test.js +8 -0
- package/es/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
- package/es/NavHorizontalListItem/index.js +7 -10
- package/es/NavHorizontalListItem/index.test.js +0 -34
- package/es/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/es/NavHorizontalListItemButton/index.js +28 -0
- package/es/NavHorizontalListItemButton/index.test.js +25 -0
- package/es/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/es/NavHorizontalListItemLink/index.js +25 -0
- package/es/NavHorizontalListItemLink/index.test.js +43 -0
- package/es/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/es/NavMenu/index.js +23 -0
- package/es/NavMenu/index.test.js +9 -0
- package/es/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/es/NavMenuContainer/index.js +22 -0
- package/es/NavMenuContainer/index.test.js +9 -0
- package/es/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/es/NavMenuContainerContent/index.js +25 -0
- package/es/NavMenuContainerContent/index.test.js +9 -0
- package/es/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/es/NavMenuContainerContentList/index.js +23 -0
- package/es/NavMenuContainerContentList/index.test.js +9 -0
- package/es/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/es/NavMenuContainerContentListItem/index.js +23 -0
- package/es/NavMenuContainerContentListItem/index.test.js +9 -0
- package/es/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/es/NavMenuContainerTitle/index.js +29 -0
- package/es/NavMenuContainerTitle/index.test.js +9 -0
- package/es/index.js +147 -139
- package/es/registry.js +18 -0
- package/esm/Base/index.js +7 -4
- package/esm/Container/index.js +2 -2
- package/esm/Header/__snapshots__/index.test.tsx.snap +0 -2
- package/esm/Header/index.js +0 -1
- package/esm/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/HeaderNavMenuContent/index.js +24 -0
- package/esm/HeaderNavMenuContent/index.test.js +9 -0
- package/esm/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
- package/esm/NavHorizontal/index.js +5 -4
- package/esm/NavHorizontal/index.test.js +2 -10
- package/esm/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
- package/esm/NavHorizontalList/index.js +5 -3
- package/esm/NavHorizontalList/index.test.js +8 -0
- package/esm/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
- package/esm/NavHorizontalListItem/index.js +7 -10
- package/esm/NavHorizontalListItem/index.test.js +0 -34
- package/esm/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/esm/NavHorizontalListItemButton/index.js +28 -0
- package/esm/NavHorizontalListItemButton/index.test.js +25 -0
- package/esm/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/esm/NavHorizontalListItemLink/index.js +25 -0
- package/esm/NavHorizontalListItemLink/index.test.js +43 -0
- package/esm/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/NavMenu/index.js +23 -0
- package/esm/NavMenu/index.test.js +9 -0
- package/esm/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/esm/NavMenuContainer/index.js +22 -0
- package/esm/NavMenuContainer/index.test.js +9 -0
- package/esm/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/esm/NavMenuContainerContent/index.js +25 -0
- package/esm/NavMenuContainerContent/index.test.js +9 -0
- package/esm/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/NavMenuContainerContentList/index.js +23 -0
- package/esm/NavMenuContainerContentList/index.test.js +9 -0
- package/esm/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/NavMenuContainerContentListItem/index.js +23 -0
- package/esm/NavMenuContainerContentListItem/index.test.js +9 -0
- package/esm/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/esm/NavMenuContainerTitle/index.js +29 -0
- package/esm/NavMenuContainerTitle/index.test.js +9 -0
- package/esm/index.js +148 -140
- package/esm/registry.js +18 -0
- package/index.d.ts +147 -139
- package/index.js +1910 -1113
- package/package.json +2 -2
- package/registry.d.ts +9 -0
- package/registry.js +27 -0
- package/src/Accordion/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Accordion/index.test.tsx +8 -0
- package/src/Accordion/index.tsx +27 -0
- package/src/AccordionControls/__snapshots__/index.test.tsx.snap +18 -0
- package/src/AccordionControls/index.test.tsx +14 -0
- package/src/AccordionControls/index.tsx +25 -0
- package/src/AccordionSection/__snapshots__/index.test.tsx.snap +54 -0
- package/src/AccordionSection/index.test.tsx +20 -0
- package/src/AccordionSection/index.tsx +35 -0
- package/src/AccordionSectionContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/AccordionSectionContent/index.test.tsx +10 -0
- package/src/AccordionSectionContent/index.tsx +28 -0
- package/src/AccordionSectionHeader/__snapshots__/index.test.tsx.snap +24 -0
- package/src/AccordionSectionHeader/index.test.tsx +10 -0
- package/src/AccordionSectionHeader/index.tsx +39 -0
- package/src/AccordionSectionSummary/__snapshots__/index.test.tsx.snap +20 -0
- package/src/AccordionSectionSummary/index.test.tsx +10 -0
- package/src/AccordionSectionSummary/index.tsx +34 -0
- package/src/AccordionSectionSummaryHeading/__snapshots__/index.test.tsx.snap +26 -0
- package/src/AccordionSectionSummaryHeading/index.test.tsx +12 -0
- package/src/AccordionSectionSummaryHeading/index.tsx +44 -0
- package/src/ArrowIcon/__snapshots__/index.test.tsx.snap +115 -0
- package/src/ArrowIcon/index.test.tsx +20 -0
- package/src/ArrowIcon/index.tsx +52 -0
- package/src/Aside/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Aside/index.test.tsx +8 -0
- package/src/Aside/index.tsx +28 -0
- package/src/BackLink/__snapshots__/index.test.tsx.snap +93 -0
- package/src/BackLink/index.test.tsx +11 -0
- package/src/BackLink/index.tsx +41 -0
- package/src/Base/index.tsx +153 -0
- package/src/Blockquote/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Blockquote/index.test.tsx +8 -0
- package/src/Blockquote/index.tsx +26 -0
- package/src/Bottom/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Bottom/index.test.tsx +8 -0
- package/src/Bottom/index.tsx +26 -0
- package/src/Breadcrumbs/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Breadcrumbs/index.test.tsx +8 -0
- package/src/Breadcrumbs/index.tsx +27 -0
- package/src/BreadcrumbsList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/BreadcrumbsList/index.test.tsx +8 -0
- package/src/BreadcrumbsList/index.tsx +27 -0
- package/src/BreadcrumbsListItem/__snapshots__/index.test.tsx.snap +42 -0
- package/src/BreadcrumbsListItem/index.test.tsx +15 -0
- package/src/BreadcrumbsListItem/index.tsx +40 -0
- package/src/BurgerIcon/__snapshots__/index.test.tsx.snap +460 -0
- package/src/BurgerIcon/index.test.tsx +45 -0
- package/src/BurgerIcon/index.tsx +57 -0
- package/src/Button/__snapshots__/index.test.tsx.snap +214 -0
- package/src/Button/index.test.tsx +58 -0
- package/src/Button/index.tsx +62 -0
- package/src/ButtonGroup/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ButtonGroup/index.test.tsx +8 -0
- package/src/ButtonGroup/index.tsx +26 -0
- package/src/ButtonLink/__snapshots__/index.test.tsx.snap +199 -0
- package/src/ButtonLink/index.test.tsx +64 -0
- package/src/ButtonLink/index.tsx +41 -0
- package/src/CallToAction/__snapshots__/index.test.tsx.snap +46 -0
- package/src/CallToAction/index.test.tsx +8 -0
- package/src/CallToAction/index.tsx +31 -0
- package/src/Card/__snapshots__/index.test.tsx.snap +215 -0
- package/src/Card/index.test.tsx +66 -0
- package/src/Card/index.tsx +62 -0
- package/src/CardAction/__snapshots__/index.test.tsx.snap +16 -0
- package/src/CardAction/index.test.tsx +8 -0
- package/src/CardAction/index.tsx +28 -0
- package/src/CardHeading/__snapshots__/index.test.tsx.snap +20 -0
- package/src/CardHeading/index.test.tsx +8 -0
- package/src/CardHeading/index.tsx +29 -0
- package/src/CardText/__snapshots__/index.test.tsx.snap +16 -0
- package/src/CardText/index.test.tsx +8 -0
- package/src/CardText/index.tsx +27 -0
- package/src/CaretIcon/__snapshots__/index.test.tsx.snap +115 -0
- package/src/CaretIcon/index.test.tsx +20 -0
- package/src/CaretIcon/index.tsx +44 -0
- package/src/CheckIcon/__snapshots__/index.test.tsx.snap +452 -0
- package/src/CheckIcon/index.test.tsx +50 -0
- package/src/CheckIcon/index.tsx +34 -0
- package/src/Checkbox/__snapshots__/index.test.tsx.snap +51 -0
- package/src/Checkbox/index.test.tsx +19 -0
- package/src/Checkbox/index.tsx +28 -0
- package/src/CheckboxConditional/__snapshots__/index.test.tsx.snap +24 -0
- package/src/CheckboxConditional/index.test.tsx +10 -0
- package/src/CheckboxConditional/index.tsx +41 -0
- package/src/CheckboxItem/__snapshots__/index.test.tsx.snap +81 -0
- package/src/CheckboxItem/index.test.tsx +19 -0
- package/src/CheckboxItem/index.tsx +53 -0
- package/src/CloseIcon/__snapshots__/index.test.tsx.snap +28 -0
- package/src/CloseIcon/index.test.tsx +8 -0
- package/src/CloseIcon/index.tsx +35 -0
- package/src/Confirmation/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Confirmation/index.test.tsx +8 -0
- package/src/Confirmation/index.tsx +27 -0
- package/src/ConfirmationBody/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ConfirmationBody/index.test.tsx +8 -0
- package/src/ConfirmationBody/index.tsx +27 -0
- package/src/ConfirmationTitle/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ConfirmationTitle/index.test.tsx +8 -0
- package/src/ConfirmationTitle/index.tsx +27 -0
- package/src/Container/__snapshots__/index.test.tsx.snap +78 -0
- package/src/Container/index.test.tsx +20 -0
- package/src/Container/index.tsx +46 -0
- package/src/CopyrightContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/CopyrightContainer/index.test.tsx +10 -0
- package/src/CopyrightContainer/index.tsx +28 -0
- package/src/DateInputContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/DateInputContainer/index.test.tsx +10 -0
- package/src/DateInputContainer/index.tsx +30 -0
- package/src/DateInputItem/__snapshots__/index.test.tsx.snap +94 -0
- package/src/DateInputItem/index.test.tsx +24 -0
- package/src/DateInputItem/index.tsx +65 -0
- package/src/Details/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Details/index.test.tsx +8 -0
- package/src/Details/index.tsx +27 -0
- package/src/DetailsContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/DetailsContent/index.test.tsx +8 -0
- package/src/DetailsContent/index.tsx +28 -0
- package/src/DetailsSummary/__snapshots__/index.test.tsx.snap +16 -0
- package/src/DetailsSummary/index.test.tsx +8 -0
- package/src/DetailsSummary/index.tsx +27 -0
- package/src/ErrorMessage/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ErrorMessage/index.test.tsx +8 -0
- package/src/ErrorMessage/index.tsx +29 -0
- package/src/ErrorSummary/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ErrorSummary/index.test.tsx +8 -0
- package/src/ErrorSummary/index.tsx +26 -0
- package/src/FieldContainer/__snapshots__/index.test.tsx.snap +77 -0
- package/src/FieldContainer/index.test.tsx +20 -0
- package/src/FieldContainer/index.tsx +39 -0
- package/src/Fieldset/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Fieldset/index.test.tsx +8 -0
- package/src/Fieldset/index.tsx +28 -0
- package/src/FieldsetLegend/__snapshots__/index.test.tsx.snap +193 -0
- package/src/FieldsetLegend/index.test.tsx +98 -0
- package/src/FieldsetLegend/index.tsx +49 -0
- package/src/FileUpload/__snapshots__/index.test.tsx.snap +61 -0
- package/src/FileUpload/index.test.tsx +12 -0
- package/src/FileUpload/index.tsx +54 -0
- package/src/FileUploadContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/src/FileUploadContainer/index.test.tsx +12 -0
- package/src/FileUploadContainer/index.tsx +36 -0
- package/src/Footer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Footer/index.test.tsx +8 -0
- package/src/Footer/index.tsx +26 -0
- package/src/FooterContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterContainer/index.test.tsx +8 -0
- package/src/FooterContainer/index.tsx +39 -0
- package/src/FooterContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterContent/index.test.tsx +8 -0
- package/src/FooterContent/index.tsx +28 -0
- package/src/FooterContentLogos/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterContentLogos/index.test.tsx +10 -0
- package/src/FooterContentLogos/index.tsx +29 -0
- package/src/FooterHeading/__snapshots__/index.test.tsx.snap +50 -0
- package/src/FooterHeading/index.test.tsx +20 -0
- package/src/FooterHeading/index.tsx +36 -0
- package/src/FooterImage/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterImage/index.test.tsx +8 -0
- package/src/FooterImage/index.tsx +37 -0
- package/src/FooterInlineList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterInlineList/index.test.tsx +8 -0
- package/src/FooterInlineList/index.tsx +29 -0
- package/src/FooterInlineListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterInlineListItem/index.test.tsx +10 -0
- package/src/FooterInlineListItem/index.tsx +27 -0
- package/src/FooterLink/__snapshots__/index.test.tsx.snap +35 -0
- package/src/FooterLink/index.test.tsx +12 -0
- package/src/FooterLink/index.tsx +32 -0
- package/src/FooterList/__snapshots__/index.test.tsx.snap +33 -0
- package/src/FooterList/index.test.tsx +12 -0
- package/src/FooterList/index.tsx +34 -0
- package/src/FooterListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterListItem/index.test.tsx +8 -0
- package/src/FooterListItem/index.tsx +28 -0
- package/src/FooterMeta/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterMeta/index.test.tsx +8 -0
- package/src/FooterMeta/index.tsx +28 -0
- package/src/FooterMetaItem/__snapshots__/index.test.tsx.snap +50 -0
- package/src/FooterMetaItem/index.test.tsx +20 -0
- package/src/FooterMetaItem/index.tsx +34 -0
- package/src/FooterNavigation/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterNavigation/index.test.tsx +8 -0
- package/src/FooterNavigation/index.tsx +29 -0
- package/src/FooterSection/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterSection/index.test.tsx +8 -0
- package/src/FooterSection/index.tsx +29 -0
- package/src/Form/__snapshots__/index.test.tsx.snap +33 -0
- package/src/Form/index.test.tsx +12 -0
- package/src/Form/index.tsx +31 -0
- package/src/GovGRLogo/__snapshots__/index.test.tsx.snap +27 -0
- package/src/GovGRLogo/govgr-logo-base64.js +1 -0
- package/src/GovGRLogo/govgr-logo-blue-base64.ts +1 -0
- package/src/GovGRLogo/index.test.tsx +8 -0
- package/src/GovGRLogo/index.tsx +42 -0
- package/src/Grid/__snapshots__/index.test.tsx.snap +135 -0
- package/src/Grid/index.test.tsx +29 -0
- package/src/Grid/index.tsx +126 -0
- package/src/Header/__snapshots__/index.test.tsx.snap +18 -0
- package/src/Header/index.test.tsx +8 -0
- package/src/Header/index.tsx +28 -0
- package/src/HeaderContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderContent/index.test.tsx +8 -0
- package/src/HeaderContent/index.tsx +27 -0
- package/src/HeaderLogo/__snapshots__/index.test.tsx.snap +18 -0
- package/src/HeaderLogo/index.test.tsx +8 -0
- package/src/HeaderLogo/index.tsx +45 -0
- package/src/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderNavMenuContent/index.test.tsx +10 -0
- package/src/HeaderNavMenuContent/index.tsx +29 -0
- package/src/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +48 -0
- package/src/HeaderSecondaryLogo/index.test.tsx +26 -0
- package/src/HeaderSecondaryLogo/index.tsx +52 -0
- package/src/HeaderSection/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderSection/index.test.tsx +8 -0
- package/src/HeaderSection/index.tsx +27 -0
- package/src/HeaderSubtitle/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderSubtitle/index.test.tsx +8 -0
- package/src/HeaderSubtitle/index.tsx +20 -0
- package/src/HeaderTitle/__snapshots__/index.test.tsx.snap +37 -0
- package/src/HeaderTitle/index.test.tsx +13 -0
- package/src/HeaderTitle/index.tsx +33 -0
- package/src/Heading/__snapshots__/index.test.tsx.snap +300 -0
- package/src/Heading/index.test.tsx +144 -0
- package/src/Heading/index.tsx +64 -0
- package/src/HeadingCaption/__snapshots__/index.test.tsx.snap +67 -0
- package/src/HeadingCaption/index.test.tsx +26 -0
- package/src/HeadingCaption/index.tsx +36 -0
- package/src/HellenicRepublicLogo/__snapshots__/index.test.tsx.snap +30 -0
- package/src/HellenicRepublicLogo/index.test.tsx +8 -0
- package/src/HellenicRepublicLogo/index.tsx +61 -0
- package/src/HellenicRepublicLogo/logo-el.ts +1 -0
- package/src/HellenicRepublicLogo/logo-en.ts +1 -0
- package/src/HellenicRepublicLogo/logo-inverted-el.ts +1 -0
- package/src/HellenicRepublicLogo/logo-inverted-en.ts +1 -0
- package/src/Hidden/__snapshots__/index.test.tsx.snap +96 -0
- package/src/Hidden/index.test.tsx +50 -0
- package/src/Hidden/index.tsx +51 -0
- package/src/Hint/__snapshots__/index.test.tsx.snap +67 -0
- package/src/Hint/index.test.tsx +17 -0
- package/src/Hint/index.tsx +35 -0
- package/src/LabelContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/LabelContainer/index.test.tsx +8 -0
- package/src/LabelContainer/index.tsx +27 -0
- package/src/LabelTitle/__snapshots__/index.test.tsx.snap +193 -0
- package/src/LabelTitle/index.test.tsx +68 -0
- package/src/LabelTitle/index.tsx +44 -0
- package/src/Layout/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Layout/index.test.tsx +8 -0
- package/src/Layout/index.tsx +29 -0
- package/src/LinkBase/__snapshots__/index.test.tsx.snap +50 -0
- package/src/LinkBase/index.test.tsx +16 -0
- package/src/LinkBase/index.tsx +33 -0
- package/src/List/__snapshots__/index.test.tsx.snap +212 -0
- package/src/List/index.test.tsx +61 -0
- package/src/List/index.tsx +40 -0
- package/src/ListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ListItem/index.test.tsx +8 -0
- package/src/ListItem/index.tsx +26 -0
- package/src/Main/__snapshots__/index.test.tsx.snap +18 -0
- package/src/Main/index.test.tsx +8 -0
- package/src/Main/index.tsx +28 -0
- package/src/Masthead/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Masthead/index.test.tsx +8 -0
- package/src/Masthead/index.tsx +27 -0
- package/src/MastheadBody/__snapshots__/index.test.tsx.snap +16 -0
- package/src/MastheadBody/index.test.tsx +8 -0
- package/src/MastheadBody/index.tsx +27 -0
- package/src/MoreVertIcon/__snapshots__/index.test.tsx.snap +632 -0
- package/src/MoreVertIcon/index.test.tsx +50 -0
- package/src/MoreVertIcon/index.tsx +36 -0
- package/src/NavHorizontal/__snapshots__/index.test.tsx.snap +33 -0
- package/src/NavHorizontal/index.test.tsx +12 -0
- package/src/NavHorizontal/index.tsx +35 -0
- package/src/NavHorizontalList/__snapshots__/index.test.tsx.snap +33 -0
- package/src/NavHorizontalList/index.test.tsx +13 -0
- package/src/NavHorizontalList/index.tsx +39 -0
- package/src/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavHorizontalListItem/index.test.tsx +10 -0
- package/src/NavHorizontalListItem/index.tsx +28 -0
- package/src/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/src/NavHorizontalListItemButton/index.test.tsx +29 -0
- package/src/NavHorizontalListItemButton/index.tsx +47 -0
- package/src/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/src/NavHorizontalListItemLink/index.test.tsx +45 -0
- package/src/NavHorizontalListItemLink/index.tsx +44 -0
- package/src/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavMenu/index.test.tsx +7 -0
- package/src/NavMenu/index.tsx +27 -0
- package/src/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/src/NavMenuContainer/index.test.tsx +7 -0
- package/src/NavMenuContainer/index.tsx +22 -0
- package/src/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/src/NavMenuContainerContent/index.test.tsx +9 -0
- package/src/NavMenuContainerContent/index.tsx +23 -0
- package/src/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavMenuContainerContentList/index.test.tsx +9 -0
- package/src/NavMenuContainerContentList/index.tsx +28 -0
- package/src/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavMenuContainerContentListItem/index.test.tsx +11 -0
- package/src/NavMenuContainerContentListItem/index.tsx +31 -0
- package/src/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/src/NavMenuContainerTitle/index.test.tsx +9 -0
- package/src/NavMenuContainerTitle/index.tsx +26 -0
- package/src/NavVertical/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavVertical/index.test.tsx +8 -0
- package/src/NavVertical/index.tsx +28 -0
- package/src/NavVerticalItem/__snapshots__/index.test.tsx.snap +50 -0
- package/src/NavVerticalItem/index.test.tsx +20 -0
- package/src/NavVerticalItem/index.tsx +35 -0
- package/src/NormalText/__snapshots__/index.test.tsx.snap +707 -0
- package/src/NormalText/index.test.tsx +346 -0
- package/src/NormalText/index.tsx +62 -0
- package/src/NotificationBannerContainer/__snapshots__/index.test.tsx.snap +68 -0
- package/src/NotificationBannerContainer/index.test.tsx +30 -0
- package/src/NotificationBannerContainer/index.tsx +43 -0
- package/src/NotificationBannerContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NotificationBannerContent/index.test.tsx +10 -0
- package/src/NotificationBannerContent/index.tsx +30 -0
- package/src/NotificationBannerHeader/__snapshots__/index.test.tsx.snap +20 -0
- package/src/NotificationBannerHeader/index.test.tsx +10 -0
- package/src/NotificationBannerHeader/index.tsx +35 -0
- package/src/NotificationBannerHeading/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NotificationBannerHeading/index.test.tsx +10 -0
- package/src/NotificationBannerHeading/index.tsx +29 -0
- package/src/NotificationBannerLink/__snapshots__/index.test.tsx.snap +37 -0
- package/src/NotificationBannerLink/index.test.tsx +20 -0
- package/src/NotificationBannerLink/index.tsx +38 -0
- package/src/PageTitle/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PageTitle/index.test.tsx +8 -0
- package/src/PageTitle/index.tsx +19 -0
- package/src/PageTitleCaption/__snapshots__/index.test.tsx.snap +67 -0
- package/src/PageTitleCaption/index.test.tsx +26 -0
- package/src/PageTitleCaption/index.tsx +38 -0
- package/src/PageTitleHeading/__snapshots__/index.test.tsx.snap +84 -0
- package/src/PageTitleHeading/index.test.tsx +32 -0
- package/src/PageTitleHeading/index.tsx +38 -0
- package/src/PageTitleSection/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PageTitleSection/index.test.tsx +8 -0
- package/src/PageTitleSection/index.tsx +21 -0
- package/src/Paragraph/__snapshots__/index.test.tsx.snap +724 -0
- package/src/Paragraph/index.test.tsx +331 -0
- package/src/Paragraph/index.tsx +61 -0
- package/src/PhaseBanner/__snapshots__/index.test.tsx.snap +41 -0
- package/src/PhaseBanner/index.test.tsx +12 -0
- package/src/PhaseBanner/index.tsx +43 -0
- package/src/PhaseBannerHeaderContainer/__snapshots__/inde.test.tsx.snap +16 -0
- package/src/PhaseBannerHeaderContainer/inde.test.tsx +10 -0
- package/src/PhaseBannerHeaderContainer/index.tsx +28 -0
- package/src/PhaseBannerTag/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PhaseBannerTag/index.test.tsx +8 -0
- package/src/PhaseBannerTag/index.tsx +28 -0
- package/src/PhaseBannerText/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PhaseBannerText/index.test.tsx +8 -0
- package/src/PhaseBannerText/index.tsx +29 -0
- package/src/RadioConditional/__snapshots__/index.test.tsx.snap +24 -0
- package/src/RadioConditional/index.test.tsx +8 -0
- package/src/RadioConditional/index.tsx +41 -0
- package/src/RadioContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/RadioContainer/index.test.tsx +8 -0
- package/src/RadioContainer/index.tsx +34 -0
- package/src/RadioItem/__snapshots__/index.test.tsx.snap +112 -0
- package/src/RadioItem/index.test.tsx +28 -0
- package/src/RadioItem/index.tsx +51 -0
- package/src/SectionBreak/__snapshots__/index.test.tsx.snap +89 -0
- package/src/SectionBreak/index.test.tsx +28 -0
- package/src/SectionBreak/index.tsx +39 -0
- package/src/SelectContainer/__snapshots__/index.test.tsx.snap +57 -0
- package/src/SelectContainer/index.test.tsx +24 -0
- package/src/SelectContainer/index.tsx +34 -0
- package/src/SelectOption/__snapshots__/index.test.tsx.snap +35 -0
- package/src/SelectOption/index.test.tsx +14 -0
- package/src/SelectOption/index.tsx +41 -0
- package/src/SkipLink/__snapshots__/index.test.tsx.snap +20 -0
- package/src/SkipLink/index.test.tsx +8 -0
- package/src/SkipLink/index.tsx +33 -0
- package/src/SummaryList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryList/index.test.tsx +8 -0
- package/src/SummaryList/index.tsx +35 -0
- package/src/SummaryListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItem/index.test.tsx +8 -0
- package/src/SummaryListItem/index.tsx +28 -0
- package/src/SummaryListItemAction/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItemAction/index.test.tsx +10 -0
- package/src/SummaryListItemAction/index.tsx +28 -0
- package/src/SummaryListItemKey/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItemKey/index.test.tsx +10 -0
- package/src/SummaryListItemKey/index.tsx +28 -0
- package/src/SummaryListItemValue/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItemValue/index.test.tsx +10 -0
- package/src/SummaryListItemValue/index.tsx +27 -0
- package/src/SvgIcon/__snapshots__/index.test.tsx.snap +344 -0
- package/src/SvgIcon/index.test.tsx +62 -0
- package/src/SvgIcon/index.tsx +64 -0
- package/src/Table/__snapshots__/index.test.tsx.snap +84 -0
- package/src/Table/index.test.tsx +24 -0
- package/src/Table/index.tsx +69 -0
- package/src/TableBody/__snapshots__/index.test.tsx.snap +16 -0
- package/src/TableBody/index.test.tsx +8 -0
- package/src/TableBody/index.tsx +27 -0
- package/src/TableCaption/__snapshots__/index.test.tsx.snap +84 -0
- package/src/TableCaption/index.test.tsx +32 -0
- package/src/TableCaption/index.tsx +37 -0
- package/src/TableContainer/__snapshots__/index.test.tsx.snap +33 -0
- package/src/TableContainer/index.test.tsx +13 -0
- package/src/TableContainer/index.tsx +36 -0
- package/src/TableDataCell/__snapshots__/index.test.tsx.snap +33 -0
- package/src/TableDataCell/index.test.tsx +14 -0
- package/src/TableDataCell/index.tsx +38 -0
- package/src/TableHead/__snapshots__/index.test.tsx.snap +16 -0
- package/src/TableHead/index.test.tsx +8 -0
- package/src/TableHead/index.tsx +27 -0
- package/src/TableHeadCell/__snapshots__/index.test.tsx.snap +219 -0
- package/src/TableHeadCell/index.test.tsx +105 -0
- package/src/TableHeadCell/index.tsx +56 -0
- package/src/TableNoDataRow/__snapshots__/index.test.tsx.snap +22 -0
- package/src/TableNoDataRow/index.test.tsx +8 -0
- package/src/TableNoDataRow/index.tsx +31 -0
- package/src/TableRow/__snapshots__/index.test.tsx.snap +16 -0
- package/src/TableRow/index.test.tsx +8 -0
- package/src/TableRow/index.tsx +26 -0
- package/src/Tabs/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Tabs/index.test.tsx +8 -0
- package/src/Tabs/index.tsx +28 -0
- package/src/TabsHeading/__snapshots__/index.test.tsx.snap +50 -0
- package/src/TabsHeading/index.test.tsx +16 -0
- package/src/TabsHeading/index.tsx +36 -0
- package/src/TabsList/__snapshots__/index.test.tsx.snap +18 -0
- package/src/TabsList/index.test.tsx +8 -0
- package/src/TabsList/index.tsx +28 -0
- package/src/TabsListItem/__snapshots__/index.test.tsx.snap +133 -0
- package/src/TabsListItem/index.test.tsx +38 -0
- package/src/TabsListItem/index.tsx +50 -0
- package/src/TabsPanel/__snapshots__/index.test.tsx.snap +83 -0
- package/src/TabsPanel/index.test.tsx +20 -0
- package/src/TabsPanel/index.tsx +37 -0
- package/src/TextArea/__snapshots__/index.test.tsx.snap +113 -0
- package/src/TextArea/index.test.tsx +28 -0
- package/src/TextArea/index.tsx +49 -0
- package/src/TextInput/__snapshots__/index.test.tsx.snap +760 -0
- package/src/TextInput/index.test.tsx +256 -0
- package/src/TextInput/index.tsx +82 -0
- package/src/Top/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Top/index.test.tsx +8 -0
- package/src/Top/index.tsx +27 -0
- package/src/UncheckIcon/__snapshots__/index.test.tsx.snap +452 -0
- package/src/UncheckIcon/index.test.tsx +50 -0
- package/src/UncheckIcon/index.tsx +34 -0
- package/src/Unpurge/index.tsx +112 -0
- package/src/VisuallyHidden/__snapshots__/index.test.tsx.snap +16 -0
- package/src/VisuallyHidden/index.test.tsx +8 -0
- package/src/VisuallyHidden/index.tsx +28 -0
- package/src/WarningText/__snapshots__/index.test.tsx.snap +30 -0
- package/src/WarningText/index.test.tsx +8 -0
- package/src/WarningText/index.tsx +48 -0
- package/src/index.ts +147 -0
- package/src/registry.js +336 -0
|
@@ -0,0 +1,707 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`renders the NormalText with fontSize=14 1`] = `
|
|
4
|
+
<ForwardRef(NormalText)
|
|
5
|
+
fontSize="14"
|
|
6
|
+
>
|
|
7
|
+
<ForwardRef(Base)
|
|
8
|
+
as="span"
|
|
9
|
+
className="govgr-!-font-size-14 govgr-body"
|
|
10
|
+
>
|
|
11
|
+
<span
|
|
12
|
+
className="govgr-!-font-size-14 govgr-body"
|
|
13
|
+
>
|
|
14
|
+
hello
|
|
15
|
+
</span>
|
|
16
|
+
</ForwardRef(Base)>
|
|
17
|
+
</ForwardRef(NormalText)>
|
|
18
|
+
`;
|
|
19
|
+
|
|
20
|
+
exports[`renders the NormalText with fontSize=16 1`] = `
|
|
21
|
+
<ForwardRef(NormalText)
|
|
22
|
+
fontSize="16"
|
|
23
|
+
>
|
|
24
|
+
<ForwardRef(Base)
|
|
25
|
+
as="span"
|
|
26
|
+
className="govgr-!-font-size-16 govgr-body"
|
|
27
|
+
>
|
|
28
|
+
<span
|
|
29
|
+
className="govgr-!-font-size-16 govgr-body"
|
|
30
|
+
>
|
|
31
|
+
hello
|
|
32
|
+
</span>
|
|
33
|
+
</ForwardRef(Base)>
|
|
34
|
+
</ForwardRef(NormalText)>
|
|
35
|
+
`;
|
|
36
|
+
|
|
37
|
+
exports[`renders the NormalText with fontSize=19 1`] = `
|
|
38
|
+
<ForwardRef(NormalText)
|
|
39
|
+
fontSize="19"
|
|
40
|
+
>
|
|
41
|
+
<ForwardRef(Base)
|
|
42
|
+
as="span"
|
|
43
|
+
className="govgr-!-font-size-19 govgr-body"
|
|
44
|
+
>
|
|
45
|
+
<span
|
|
46
|
+
className="govgr-!-font-size-19 govgr-body"
|
|
47
|
+
>
|
|
48
|
+
hello
|
|
49
|
+
</span>
|
|
50
|
+
</ForwardRef(Base)>
|
|
51
|
+
</ForwardRef(NormalText)>
|
|
52
|
+
`;
|
|
53
|
+
|
|
54
|
+
exports[`renders the NormalText with fontSize=24 1`] = `
|
|
55
|
+
<ForwardRef(NormalText)
|
|
56
|
+
fontSize="24"
|
|
57
|
+
>
|
|
58
|
+
<ForwardRef(Base)
|
|
59
|
+
as="span"
|
|
60
|
+
className="govgr-!-font-size-24 govgr-body"
|
|
61
|
+
>
|
|
62
|
+
<span
|
|
63
|
+
className="govgr-!-font-size-24 govgr-body"
|
|
64
|
+
>
|
|
65
|
+
hello
|
|
66
|
+
</span>
|
|
67
|
+
</ForwardRef(Base)>
|
|
68
|
+
</ForwardRef(NormalText)>
|
|
69
|
+
`;
|
|
70
|
+
|
|
71
|
+
exports[`renders the NormalText with fontSize=30 1`] = `
|
|
72
|
+
<ForwardRef(NormalText)
|
|
73
|
+
fontSize="30"
|
|
74
|
+
>
|
|
75
|
+
<ForwardRef(Base)
|
|
76
|
+
as="span"
|
|
77
|
+
className="govgr-!-font-size-30 govgr-body"
|
|
78
|
+
>
|
|
79
|
+
<span
|
|
80
|
+
className="govgr-!-font-size-30 govgr-body"
|
|
81
|
+
>
|
|
82
|
+
hello
|
|
83
|
+
</span>
|
|
84
|
+
</ForwardRef(Base)>
|
|
85
|
+
</ForwardRef(NormalText)>
|
|
86
|
+
`;
|
|
87
|
+
|
|
88
|
+
exports[`renders the NormalText with fontSize=36 1`] = `
|
|
89
|
+
<ForwardRef(NormalText)
|
|
90
|
+
fontSize="36"
|
|
91
|
+
>
|
|
92
|
+
<ForwardRef(Base)
|
|
93
|
+
as="span"
|
|
94
|
+
className="govgr-!-font-size-36 govgr-body"
|
|
95
|
+
>
|
|
96
|
+
<span
|
|
97
|
+
className="govgr-!-font-size-36 govgr-body"
|
|
98
|
+
>
|
|
99
|
+
hello
|
|
100
|
+
</span>
|
|
101
|
+
</ForwardRef(Base)>
|
|
102
|
+
</ForwardRef(NormalText)>
|
|
103
|
+
`;
|
|
104
|
+
|
|
105
|
+
exports[`renders the NormalText with fontSize=48 1`] = `
|
|
106
|
+
<ForwardRef(NormalText)
|
|
107
|
+
fontSize="48"
|
|
108
|
+
>
|
|
109
|
+
<ForwardRef(Base)
|
|
110
|
+
as="span"
|
|
111
|
+
className="govgr-!-font-size-48 govgr-body"
|
|
112
|
+
>
|
|
113
|
+
<span
|
|
114
|
+
className="govgr-!-font-size-48 govgr-body"
|
|
115
|
+
>
|
|
116
|
+
hello
|
|
117
|
+
</span>
|
|
118
|
+
</ForwardRef(Base)>
|
|
119
|
+
</ForwardRef(NormalText)>
|
|
120
|
+
`;
|
|
121
|
+
|
|
122
|
+
exports[`renders the NormalText with fontSize=72 1`] = `
|
|
123
|
+
<ForwardRef(NormalText)
|
|
124
|
+
fontSize="72"
|
|
125
|
+
>
|
|
126
|
+
<ForwardRef(Base)
|
|
127
|
+
as="span"
|
|
128
|
+
className="govgr-!-font-size-72 govgr-body"
|
|
129
|
+
>
|
|
130
|
+
<span
|
|
131
|
+
className="govgr-!-font-size-72 govgr-body"
|
|
132
|
+
>
|
|
133
|
+
hello
|
|
134
|
+
</span>
|
|
135
|
+
</ForwardRef(Base)>
|
|
136
|
+
</ForwardRef(NormalText)>
|
|
137
|
+
`;
|
|
138
|
+
|
|
139
|
+
exports[`renders the NormalText with fontWeight=bold 1`] = `
|
|
140
|
+
<ForwardRef(NormalText)
|
|
141
|
+
fontWeight="bold"
|
|
142
|
+
>
|
|
143
|
+
<ForwardRef(Base)
|
|
144
|
+
as="span"
|
|
145
|
+
className="govgr-!-font-weight-bold govgr-body"
|
|
146
|
+
>
|
|
147
|
+
<span
|
|
148
|
+
className="govgr-!-font-weight-bold govgr-body"
|
|
149
|
+
>
|
|
150
|
+
hello
|
|
151
|
+
</span>
|
|
152
|
+
</ForwardRef(Base)>
|
|
153
|
+
</ForwardRef(NormalText)>
|
|
154
|
+
`;
|
|
155
|
+
|
|
156
|
+
exports[`renders the NormalText with fontWeight=regular 1`] = `
|
|
157
|
+
<ForwardRef(NormalText)
|
|
158
|
+
fontWeight="regular"
|
|
159
|
+
>
|
|
160
|
+
<ForwardRef(Base)
|
|
161
|
+
as="span"
|
|
162
|
+
className="govgr-!-font-weight-regular govgr-body"
|
|
163
|
+
>
|
|
164
|
+
<span
|
|
165
|
+
className="govgr-!-font-weight-regular govgr-body"
|
|
166
|
+
>
|
|
167
|
+
hello
|
|
168
|
+
</span>
|
|
169
|
+
</ForwardRef(Base)>
|
|
170
|
+
</ForwardRef(NormalText)>
|
|
171
|
+
`;
|
|
172
|
+
|
|
173
|
+
exports[`renders the NormalText with no props 1`] = `
|
|
174
|
+
<ForwardRef(NormalText)>
|
|
175
|
+
<ForwardRef(Base)
|
|
176
|
+
as="span"
|
|
177
|
+
className="govgr-body"
|
|
178
|
+
>
|
|
179
|
+
<span
|
|
180
|
+
className="govgr-body"
|
|
181
|
+
>
|
|
182
|
+
hello
|
|
183
|
+
</span>
|
|
184
|
+
</ForwardRef(Base)>
|
|
185
|
+
</ForwardRef(NormalText)>
|
|
186
|
+
`;
|
|
187
|
+
|
|
188
|
+
exports[`renders the NormalText with variant=lead 1`] = `
|
|
189
|
+
<ForwardRef(NormalText)
|
|
190
|
+
variant="lead"
|
|
191
|
+
>
|
|
192
|
+
<ForwardRef(Base)
|
|
193
|
+
as="span"
|
|
194
|
+
className="govgr-body-l govgr-body"
|
|
195
|
+
>
|
|
196
|
+
<span
|
|
197
|
+
className="govgr-body-l govgr-body"
|
|
198
|
+
>
|
|
199
|
+
hello
|
|
200
|
+
</span>
|
|
201
|
+
</ForwardRef(Base)>
|
|
202
|
+
</ForwardRef(NormalText)>
|
|
203
|
+
`;
|
|
204
|
+
|
|
205
|
+
exports[`renders the NormalText with variant=lead and font size fontSize=48 1`] = `
|
|
206
|
+
<ForwardRef(NormalText)
|
|
207
|
+
fontSize="48"
|
|
208
|
+
variant="lead"
|
|
209
|
+
>
|
|
210
|
+
<ForwardRef(Base)
|
|
211
|
+
as="span"
|
|
212
|
+
className="govgr-body-l govgr-!-font-size-48 govgr-body"
|
|
213
|
+
>
|
|
214
|
+
<span
|
|
215
|
+
className="govgr-body-l govgr-!-font-size-48 govgr-body"
|
|
216
|
+
>
|
|
217
|
+
hello
|
|
218
|
+
</span>
|
|
219
|
+
</ForwardRef(Base)>
|
|
220
|
+
</ForwardRef(NormalText)>
|
|
221
|
+
`;
|
|
222
|
+
|
|
223
|
+
exports[`renders the NormalText with variant=lead and font size fontSize=72 1`] = `
|
|
224
|
+
<ForwardRef(NormalText)
|
|
225
|
+
fontSize="72"
|
|
226
|
+
variant="lead"
|
|
227
|
+
>
|
|
228
|
+
<ForwardRef(Base)
|
|
229
|
+
as="span"
|
|
230
|
+
className="govgr-body-l govgr-!-font-size-72 govgr-body"
|
|
231
|
+
>
|
|
232
|
+
<span
|
|
233
|
+
className="govgr-body-l govgr-!-font-size-72 govgr-body"
|
|
234
|
+
>
|
|
235
|
+
hello
|
|
236
|
+
</span>
|
|
237
|
+
</ForwardRef(Base)>
|
|
238
|
+
</ForwardRef(NormalText)>
|
|
239
|
+
`;
|
|
240
|
+
|
|
241
|
+
exports[`renders the NormalText with variant=lead and fontSize=14 1`] = `
|
|
242
|
+
<ForwardRef(NormalText)
|
|
243
|
+
fontSize="14"
|
|
244
|
+
variant="lead"
|
|
245
|
+
>
|
|
246
|
+
<ForwardRef(Base)
|
|
247
|
+
as="span"
|
|
248
|
+
className="govgr-body-l govgr-!-font-size-14 govgr-body"
|
|
249
|
+
>
|
|
250
|
+
<span
|
|
251
|
+
className="govgr-body-l govgr-!-font-size-14 govgr-body"
|
|
252
|
+
>
|
|
253
|
+
hello
|
|
254
|
+
</span>
|
|
255
|
+
</ForwardRef(Base)>
|
|
256
|
+
</ForwardRef(NormalText)>
|
|
257
|
+
`;
|
|
258
|
+
|
|
259
|
+
exports[`renders the NormalText with variant=lead and fontSize=19 1`] = `
|
|
260
|
+
<ForwardRef(NormalText)
|
|
261
|
+
fontSize="19"
|
|
262
|
+
variant="lead"
|
|
263
|
+
>
|
|
264
|
+
<ForwardRef(Base)
|
|
265
|
+
as="span"
|
|
266
|
+
className="govgr-body-l govgr-!-font-size-19 govgr-body"
|
|
267
|
+
>
|
|
268
|
+
<span
|
|
269
|
+
className="govgr-body-l govgr-!-font-size-19 govgr-body"
|
|
270
|
+
>
|
|
271
|
+
hello
|
|
272
|
+
</span>
|
|
273
|
+
</ForwardRef(Base)>
|
|
274
|
+
</ForwardRef(NormalText)>
|
|
275
|
+
`;
|
|
276
|
+
|
|
277
|
+
exports[`renders the NormalText with variant=lead and fontSize=24 1`] = `
|
|
278
|
+
<ForwardRef(NormalText)
|
|
279
|
+
fontSize="24"
|
|
280
|
+
variant="lead"
|
|
281
|
+
>
|
|
282
|
+
<ForwardRef(Base)
|
|
283
|
+
as="span"
|
|
284
|
+
className="govgr-body-l govgr-!-font-size-24 govgr-body"
|
|
285
|
+
>
|
|
286
|
+
<span
|
|
287
|
+
className="govgr-body-l govgr-!-font-size-24 govgr-body"
|
|
288
|
+
>
|
|
289
|
+
hello
|
|
290
|
+
</span>
|
|
291
|
+
</ForwardRef(Base)>
|
|
292
|
+
</ForwardRef(NormalText)>
|
|
293
|
+
`;
|
|
294
|
+
|
|
295
|
+
exports[`renders the NormalText with variant=lead and fontSize=30 1`] = `
|
|
296
|
+
<ForwardRef(NormalText)
|
|
297
|
+
fontSize="30"
|
|
298
|
+
variant="lead"
|
|
299
|
+
>
|
|
300
|
+
<ForwardRef(Base)
|
|
301
|
+
as="span"
|
|
302
|
+
className="govgr-body-l govgr-!-font-size-30 govgr-body"
|
|
303
|
+
>
|
|
304
|
+
<span
|
|
305
|
+
className="govgr-body-l govgr-!-font-size-30 govgr-body"
|
|
306
|
+
>
|
|
307
|
+
hello
|
|
308
|
+
</span>
|
|
309
|
+
</ForwardRef(Base)>
|
|
310
|
+
</ForwardRef(NormalText)>
|
|
311
|
+
`;
|
|
312
|
+
|
|
313
|
+
exports[`renders the NormalText with variant=lead and fontSize=36 1`] = `
|
|
314
|
+
<ForwardRef(NormalText)
|
|
315
|
+
fontSize="36"
|
|
316
|
+
variant="lead"
|
|
317
|
+
>
|
|
318
|
+
<ForwardRef(Base)
|
|
319
|
+
as="span"
|
|
320
|
+
className="govgr-body-l govgr-!-font-size-36 govgr-body"
|
|
321
|
+
>
|
|
322
|
+
<span
|
|
323
|
+
className="govgr-body-l govgr-!-font-size-36 govgr-body"
|
|
324
|
+
>
|
|
325
|
+
hello
|
|
326
|
+
</span>
|
|
327
|
+
</ForwardRef(Base)>
|
|
328
|
+
</ForwardRef(NormalText)>
|
|
329
|
+
`;
|
|
330
|
+
|
|
331
|
+
exports[`renders the NormalText with variant=lead and fontSize=36 2`] = `
|
|
332
|
+
<ForwardRef(NormalText)
|
|
333
|
+
fontSize="36"
|
|
334
|
+
variant="lead"
|
|
335
|
+
>
|
|
336
|
+
<ForwardRef(Base)
|
|
337
|
+
as="span"
|
|
338
|
+
className="govgr-body-l govgr-!-font-size-36 govgr-body"
|
|
339
|
+
>
|
|
340
|
+
<span
|
|
341
|
+
className="govgr-body-l govgr-!-font-size-36 govgr-body"
|
|
342
|
+
>
|
|
343
|
+
hello
|
|
344
|
+
</span>
|
|
345
|
+
</ForwardRef(Base)>
|
|
346
|
+
</ForwardRef(NormalText)>
|
|
347
|
+
`;
|
|
348
|
+
|
|
349
|
+
exports[`renders the NormalText with variant=lead and ontSize=16 1`] = `
|
|
350
|
+
<ForwardRef(NormalText)
|
|
351
|
+
fontSize="16"
|
|
352
|
+
variant="lead"
|
|
353
|
+
>
|
|
354
|
+
<ForwardRef(Base)
|
|
355
|
+
as="span"
|
|
356
|
+
className="govgr-body-l govgr-!-font-size-16 govgr-body"
|
|
357
|
+
>
|
|
358
|
+
<span
|
|
359
|
+
className="govgr-body-l govgr-!-font-size-16 govgr-body"
|
|
360
|
+
>
|
|
361
|
+
hello
|
|
362
|
+
</span>
|
|
363
|
+
</ForwardRef(Base)>
|
|
364
|
+
</ForwardRef(NormalText)>
|
|
365
|
+
`;
|
|
366
|
+
|
|
367
|
+
exports[`renders the NormalText with variant=normal 1`] = `
|
|
368
|
+
<ForwardRef(NormalText)
|
|
369
|
+
variant="normal"
|
|
370
|
+
>
|
|
371
|
+
<ForwardRef(Base)
|
|
372
|
+
as="span"
|
|
373
|
+
className="govgr-body"
|
|
374
|
+
>
|
|
375
|
+
<span
|
|
376
|
+
className="govgr-body"
|
|
377
|
+
>
|
|
378
|
+
hello
|
|
379
|
+
</span>
|
|
380
|
+
</ForwardRef(Base)>
|
|
381
|
+
</ForwardRef(NormalText)>
|
|
382
|
+
`;
|
|
383
|
+
|
|
384
|
+
exports[`renders the NormalText with variant=normal and font size fontSize=48 1`] = `
|
|
385
|
+
<ForwardRef(NormalText)
|
|
386
|
+
fontSize="48"
|
|
387
|
+
variant="normal"
|
|
388
|
+
>
|
|
389
|
+
<ForwardRef(Base)
|
|
390
|
+
as="span"
|
|
391
|
+
className="govgr-!-font-size-48 govgr-body"
|
|
392
|
+
>
|
|
393
|
+
<span
|
|
394
|
+
className="govgr-!-font-size-48 govgr-body"
|
|
395
|
+
>
|
|
396
|
+
hello
|
|
397
|
+
</span>
|
|
398
|
+
</ForwardRef(Base)>
|
|
399
|
+
</ForwardRef(NormalText)>
|
|
400
|
+
`;
|
|
401
|
+
|
|
402
|
+
exports[`renders the NormalText with variant=normal and font size fontSize=72 1`] = `
|
|
403
|
+
<ForwardRef(NormalText)
|
|
404
|
+
fontSize="72"
|
|
405
|
+
variant="normal"
|
|
406
|
+
>
|
|
407
|
+
<ForwardRef(Base)
|
|
408
|
+
as="span"
|
|
409
|
+
className="govgr-!-font-size-72 govgr-body"
|
|
410
|
+
>
|
|
411
|
+
<span
|
|
412
|
+
className="govgr-!-font-size-72 govgr-body"
|
|
413
|
+
>
|
|
414
|
+
hello
|
|
415
|
+
</span>
|
|
416
|
+
</ForwardRef(Base)>
|
|
417
|
+
</ForwardRef(NormalText)>
|
|
418
|
+
`;
|
|
419
|
+
|
|
420
|
+
exports[`renders the NormalText with variant=normal and fontSize=14 1`] = `
|
|
421
|
+
<ForwardRef(NormalText)
|
|
422
|
+
fontSize="14"
|
|
423
|
+
variant="normal"
|
|
424
|
+
>
|
|
425
|
+
<ForwardRef(Base)
|
|
426
|
+
as="span"
|
|
427
|
+
className="govgr-!-font-size-14 govgr-body"
|
|
428
|
+
>
|
|
429
|
+
<span
|
|
430
|
+
className="govgr-!-font-size-14 govgr-body"
|
|
431
|
+
>
|
|
432
|
+
hello
|
|
433
|
+
</span>
|
|
434
|
+
</ForwardRef(Base)>
|
|
435
|
+
</ForwardRef(NormalText)>
|
|
436
|
+
`;
|
|
437
|
+
|
|
438
|
+
exports[`renders the NormalText with variant=normal and fontSize=19 1`] = `
|
|
439
|
+
<ForwardRef(NormalText)
|
|
440
|
+
fontSize="19"
|
|
441
|
+
variant="normal"
|
|
442
|
+
>
|
|
443
|
+
<ForwardRef(Base)
|
|
444
|
+
as="span"
|
|
445
|
+
className="govgr-!-font-size-19 govgr-body"
|
|
446
|
+
>
|
|
447
|
+
<span
|
|
448
|
+
className="govgr-!-font-size-19 govgr-body"
|
|
449
|
+
>
|
|
450
|
+
hello
|
|
451
|
+
</span>
|
|
452
|
+
</ForwardRef(Base)>
|
|
453
|
+
</ForwardRef(NormalText)>
|
|
454
|
+
`;
|
|
455
|
+
|
|
456
|
+
exports[`renders the NormalText with variant=normal and fontSize=24 1`] = `
|
|
457
|
+
<ForwardRef(NormalText)
|
|
458
|
+
fontSize="24"
|
|
459
|
+
variant="normal"
|
|
460
|
+
>
|
|
461
|
+
<ForwardRef(Base)
|
|
462
|
+
as="span"
|
|
463
|
+
className="govgr-!-font-size-24 govgr-body"
|
|
464
|
+
>
|
|
465
|
+
<span
|
|
466
|
+
className="govgr-!-font-size-24 govgr-body"
|
|
467
|
+
>
|
|
468
|
+
hello
|
|
469
|
+
</span>
|
|
470
|
+
</ForwardRef(Base)>
|
|
471
|
+
</ForwardRef(NormalText)>
|
|
472
|
+
`;
|
|
473
|
+
|
|
474
|
+
exports[`renders the NormalText with variant=normal and fontSize=30 1`] = `
|
|
475
|
+
<ForwardRef(NormalText)
|
|
476
|
+
fontSize="30"
|
|
477
|
+
variant="normal"
|
|
478
|
+
>
|
|
479
|
+
<ForwardRef(Base)
|
|
480
|
+
as="span"
|
|
481
|
+
className="govgr-!-font-size-30 govgr-body"
|
|
482
|
+
>
|
|
483
|
+
<span
|
|
484
|
+
className="govgr-!-font-size-30 govgr-body"
|
|
485
|
+
>
|
|
486
|
+
hello
|
|
487
|
+
</span>
|
|
488
|
+
</ForwardRef(Base)>
|
|
489
|
+
</ForwardRef(NormalText)>
|
|
490
|
+
`;
|
|
491
|
+
|
|
492
|
+
exports[`renders the NormalText with variant=normal and fontSize=36 1`] = `
|
|
493
|
+
<ForwardRef(NormalText)
|
|
494
|
+
fontSize="36"
|
|
495
|
+
variant="normal"
|
|
496
|
+
>
|
|
497
|
+
<ForwardRef(Base)
|
|
498
|
+
as="span"
|
|
499
|
+
className="govgr-!-font-size-36 govgr-body"
|
|
500
|
+
>
|
|
501
|
+
<span
|
|
502
|
+
className="govgr-!-font-size-36 govgr-body"
|
|
503
|
+
>
|
|
504
|
+
hello
|
|
505
|
+
</span>
|
|
506
|
+
</ForwardRef(Base)>
|
|
507
|
+
</ForwardRef(NormalText)>
|
|
508
|
+
`;
|
|
509
|
+
|
|
510
|
+
exports[`renders the NormalText with variant=normal and ontSize=16 1`] = `
|
|
511
|
+
<ForwardRef(NormalText)
|
|
512
|
+
fontSize="16"
|
|
513
|
+
variant="normal"
|
|
514
|
+
>
|
|
515
|
+
<ForwardRef(Base)
|
|
516
|
+
as="span"
|
|
517
|
+
className="govgr-!-font-size-16 govgr-body"
|
|
518
|
+
>
|
|
519
|
+
<span
|
|
520
|
+
className="govgr-!-font-size-16 govgr-body"
|
|
521
|
+
>
|
|
522
|
+
hello
|
|
523
|
+
</span>
|
|
524
|
+
</ForwardRef(Base)>
|
|
525
|
+
</ForwardRef(NormalText)>
|
|
526
|
+
`;
|
|
527
|
+
|
|
528
|
+
exports[`renders the NormalText with variant=small 1`] = `
|
|
529
|
+
<ForwardRef(NormalText)
|
|
530
|
+
variant="small"
|
|
531
|
+
>
|
|
532
|
+
<ForwardRef(Base)
|
|
533
|
+
as="span"
|
|
534
|
+
className="govgr-body-s govgr-body"
|
|
535
|
+
>
|
|
536
|
+
<span
|
|
537
|
+
className="govgr-body-s govgr-body"
|
|
538
|
+
>
|
|
539
|
+
hello
|
|
540
|
+
</span>
|
|
541
|
+
</ForwardRef(Base)>
|
|
542
|
+
</ForwardRef(NormalText)>
|
|
543
|
+
`;
|
|
544
|
+
|
|
545
|
+
exports[`renders the NormalText with variant=small and font size fontSize=48 1`] = `
|
|
546
|
+
<ForwardRef(NormalText)
|
|
547
|
+
fontSize="48"
|
|
548
|
+
variant="small"
|
|
549
|
+
>
|
|
550
|
+
<ForwardRef(Base)
|
|
551
|
+
as="span"
|
|
552
|
+
className="govgr-body-s govgr-!-font-size-48 govgr-body"
|
|
553
|
+
>
|
|
554
|
+
<span
|
|
555
|
+
className="govgr-body-s govgr-!-font-size-48 govgr-body"
|
|
556
|
+
>
|
|
557
|
+
hello
|
|
558
|
+
</span>
|
|
559
|
+
</ForwardRef(Base)>
|
|
560
|
+
</ForwardRef(NormalText)>
|
|
561
|
+
`;
|
|
562
|
+
|
|
563
|
+
exports[`renders the NormalText with variant=small and font size fontSize=72 1`] = `
|
|
564
|
+
<ForwardRef(NormalText)
|
|
565
|
+
fontSize="72"
|
|
566
|
+
variant="small"
|
|
567
|
+
>
|
|
568
|
+
<ForwardRef(Base)
|
|
569
|
+
as="span"
|
|
570
|
+
className="govgr-body-s govgr-!-font-size-72 govgr-body"
|
|
571
|
+
>
|
|
572
|
+
<span
|
|
573
|
+
className="govgr-body-s govgr-!-font-size-72 govgr-body"
|
|
574
|
+
>
|
|
575
|
+
hello
|
|
576
|
+
</span>
|
|
577
|
+
</ForwardRef(Base)>
|
|
578
|
+
</ForwardRef(NormalText)>
|
|
579
|
+
`;
|
|
580
|
+
|
|
581
|
+
exports[`renders the NormalText with variant=small and fontSize=14 1`] = `
|
|
582
|
+
<ForwardRef(NormalText)
|
|
583
|
+
fontSize="14"
|
|
584
|
+
variant="small"
|
|
585
|
+
>
|
|
586
|
+
<ForwardRef(Base)
|
|
587
|
+
as="span"
|
|
588
|
+
className="govgr-body-s govgr-!-font-size-14 govgr-body"
|
|
589
|
+
>
|
|
590
|
+
<span
|
|
591
|
+
className="govgr-body-s govgr-!-font-size-14 govgr-body"
|
|
592
|
+
>
|
|
593
|
+
hello
|
|
594
|
+
</span>
|
|
595
|
+
</ForwardRef(Base)>
|
|
596
|
+
</ForwardRef(NormalText)>
|
|
597
|
+
`;
|
|
598
|
+
|
|
599
|
+
exports[`renders the NormalText with variant=small and fontSize=19 1`] = `
|
|
600
|
+
<ForwardRef(NormalText)
|
|
601
|
+
fontSize="19"
|
|
602
|
+
variant="small"
|
|
603
|
+
>
|
|
604
|
+
<ForwardRef(Base)
|
|
605
|
+
as="span"
|
|
606
|
+
className="govgr-body-s govgr-!-font-size-19 govgr-body"
|
|
607
|
+
>
|
|
608
|
+
<span
|
|
609
|
+
className="govgr-body-s govgr-!-font-size-19 govgr-body"
|
|
610
|
+
>
|
|
611
|
+
hello
|
|
612
|
+
</span>
|
|
613
|
+
</ForwardRef(Base)>
|
|
614
|
+
</ForwardRef(NormalText)>
|
|
615
|
+
`;
|
|
616
|
+
|
|
617
|
+
exports[`renders the NormalText with variant=small and fontSize=24 1`] = `
|
|
618
|
+
<ForwardRef(NormalText)
|
|
619
|
+
fontSize="24"
|
|
620
|
+
variant="small"
|
|
621
|
+
>
|
|
622
|
+
<ForwardRef(Base)
|
|
623
|
+
as="span"
|
|
624
|
+
className="govgr-body-s govgr-!-font-size-24 govgr-body"
|
|
625
|
+
>
|
|
626
|
+
<span
|
|
627
|
+
className="govgr-body-s govgr-!-font-size-24 govgr-body"
|
|
628
|
+
>
|
|
629
|
+
hello
|
|
630
|
+
</span>
|
|
631
|
+
</ForwardRef(Base)>
|
|
632
|
+
</ForwardRef(NormalText)>
|
|
633
|
+
`;
|
|
634
|
+
|
|
635
|
+
exports[`renders the NormalText with variant=small and fontSize=30 1`] = `
|
|
636
|
+
<ForwardRef(NormalText)
|
|
637
|
+
fontSize="30"
|
|
638
|
+
variant="small"
|
|
639
|
+
>
|
|
640
|
+
<ForwardRef(Base)
|
|
641
|
+
as="span"
|
|
642
|
+
className="govgr-body-s govgr-!-font-size-30 govgr-body"
|
|
643
|
+
>
|
|
644
|
+
<span
|
|
645
|
+
className="govgr-body-s govgr-!-font-size-30 govgr-body"
|
|
646
|
+
>
|
|
647
|
+
hello
|
|
648
|
+
</span>
|
|
649
|
+
</ForwardRef(Base)>
|
|
650
|
+
</ForwardRef(NormalText)>
|
|
651
|
+
`;
|
|
652
|
+
|
|
653
|
+
exports[`renders the NormalText with variant=small and ontSize=16 1`] = `
|
|
654
|
+
<ForwardRef(NormalText)
|
|
655
|
+
fontSize="16"
|
|
656
|
+
variant="small"
|
|
657
|
+
>
|
|
658
|
+
<ForwardRef(Base)
|
|
659
|
+
as="span"
|
|
660
|
+
className="govgr-body-s govgr-!-font-size-16 govgr-body"
|
|
661
|
+
>
|
|
662
|
+
<span
|
|
663
|
+
className="govgr-body-s govgr-!-font-size-16 govgr-body"
|
|
664
|
+
>
|
|
665
|
+
hello
|
|
666
|
+
</span>
|
|
667
|
+
</ForwardRef(Base)>
|
|
668
|
+
</ForwardRef(NormalText)>
|
|
669
|
+
`;
|
|
670
|
+
|
|
671
|
+
exports[`renders the NormalText with variant=small, font size fontSize=72 and fontWeight=bold 1`] = `
|
|
672
|
+
<ForwardRef(NormalText)
|
|
673
|
+
fontSize="72"
|
|
674
|
+
fontWeight="bold"
|
|
675
|
+
variant="small"
|
|
676
|
+
>
|
|
677
|
+
<ForwardRef(Base)
|
|
678
|
+
as="span"
|
|
679
|
+
className="govgr-!-font-weight-bold govgr-body-s govgr-!-font-size-72 govgr-body"
|
|
680
|
+
>
|
|
681
|
+
<span
|
|
682
|
+
className="govgr-!-font-weight-bold govgr-body-s govgr-!-font-size-72 govgr-body"
|
|
683
|
+
>
|
|
684
|
+
hello
|
|
685
|
+
</span>
|
|
686
|
+
</ForwardRef(Base)>
|
|
687
|
+
</ForwardRef(NormalText)>
|
|
688
|
+
`;
|
|
689
|
+
|
|
690
|
+
exports[`renders the NormalText with variant=small, font size fontSize=72 and fontWeight=regular 1`] = `
|
|
691
|
+
<ForwardRef(NormalText)
|
|
692
|
+
fontSize="72"
|
|
693
|
+
fontWeight="regular"
|
|
694
|
+
variant="small"
|
|
695
|
+
>
|
|
696
|
+
<ForwardRef(Base)
|
|
697
|
+
as="span"
|
|
698
|
+
className="govgr-!-font-weight-regular govgr-body-s govgr-!-font-size-72 govgr-body"
|
|
699
|
+
>
|
|
700
|
+
<span
|
|
701
|
+
className="govgr-!-font-weight-regular govgr-body-s govgr-!-font-size-72 govgr-body"
|
|
702
|
+
>
|
|
703
|
+
hello
|
|
704
|
+
</span>
|
|
705
|
+
</ForwardRef(Base)>
|
|
706
|
+
</ForwardRef(NormalText)>
|
|
707
|
+
`;
|