xertica-ui 1.9.2 → 1.9.4
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/CHANGELOG.md +27 -0
- package/assets/xertica-logo.svg +37 -37
- package/assets/xertica-x-logo.svg +20 -20
- package/components/examples/MapExamples.tsx +282 -282
- package/components/examples/SimpleFilterableMap.tsx +191 -191
- package/components/examples/index.ts +51 -51
- package/components/figma/ImageWithFallback.tsx +27 -27
- package/components/layout/header/header.stories.tsx +29 -1
- package/components/layout/header/header.tsx +20 -0
- package/components/layout/sidebar/sidebar.stories.tsx +72 -0
- package/components/layout/sidebar/sidebar.tsx +169 -190
- package/components/pages/home-content/HomeContent.tsx +4 -4
- package/components/pages/home-page/HomePage.tsx +4 -4
- package/components/pages/home-page/home-page.test.tsx +1 -0
- package/components/pages/template-content/TemplateContent.tsx +6 -1
- package/components/pages/template-page/template-page.test.tsx +1 -0
- package/components/ui/avatar/avatar.stories.tsx +11 -4
- package/components/ui/badge/badge.stories.tsx +16 -1
- package/components/ui/button/button.stories.tsx +13 -1
- package/components/ui/button/button.tsx +7 -1
- package/components/ui/dialog/dialog.stories.tsx +59 -18
- package/components/ui/dialog/dialog.tsx +33 -7
- package/components/ui/index.ts +1 -1
- package/components/ui/input/input.stories.tsx +10 -0
- package/components/ui/notification-badge/notification-badge.stories.tsx +1 -1
- package/components/ui/notification-badge/notification-badge.tsx +88 -74
- package/components/ui/progress/progress.stories.tsx +16 -0
- package/components/ui/progress/progress.tsx +68 -43
- package/components/ui/rating/rating.stories.tsx +2 -2
- package/components/ui/search/search.test.tsx +3 -3
- package/components/ui/search/search.tsx +1 -1
- package/components/ui/select/select.stories.tsx +11 -3
- package/components/ui/timeline/timeline.stories.tsx +11 -2
- package/components/ui/timeline/timeline.tsx +9 -5
- package/components.json +1 -1
- package/dist/components/layout/header/header.d.ts +14 -1
- package/dist/components/layout/sidebar/sidebar.d.ts +2 -0
- package/dist/components/ui/alert/alert.d.ts +1 -1
- package/dist/components/ui/badge/badge.d.ts +1 -1
- package/dist/components/ui/button/button.d.ts +2 -2
- package/dist/components/ui/dialog/dialog.d.ts +14 -1
- package/dist/components/ui/index.d.ts +1 -1
- package/dist/components/ui/notification-badge/notification-badge.d.ts +4 -2
- package/dist/components/ui/progress/progress.d.ts +9 -3
- package/dist/components/ui/timeline/timeline.d.ts +1 -1
- package/dist/index.es.js +165 -124
- package/dist/index.umd.js +165 -124
- package/dist/xertica-ui.css +1 -1
- package/docs/components/badge.md +84 -75
- package/docs/components/button.md +156 -162
- package/docs/components/dialog.md +180 -155
- package/docs/components/header.md +175 -214
- package/docs/components/notification-badge.md +78 -61
- package/docs/components/progress.md +103 -80
- package/docs/components/rating.md +77 -77
- package/docs/components/search.md +87 -77
- package/docs/components/sidebar.md +146 -89
- package/docs/components/timeline.md +117 -81
- package/hooks/useTheme.ts +3 -3
- package/imports/Podcast.tsx +388 -388
- package/imports/XerticaAi.tsx +45 -45
- package/imports/XerticaX.tsx +19 -19
- package/imports/svg-aueiaqngck.ts +11 -11
- package/imports/svg-v9krss1ozd.ts +16 -16
- package/imports/svg-vhrdofe3qe.ts +5 -5
- package/llms-full.txt +173 -89
- package/package.json +2 -2
- package/styles/globals.css +15 -15
- package/styles/xertica/app-overrides/chat.css +61 -61
- package/styles/xertica/app-overrides/scrollbar.css +33 -33
- package/styles/xertica/integrations/google-maps.css +76 -76
- package/styles/xertica/integrations/sonner.css +73 -73
- package/styles/xertica/theme-map.css +9 -1
- package/templates/package.json +14 -11
- package/templates/src/app/App.d.ts +1 -1
- package/templates/src/app/App.js +70 -70
- package/templates/src/app/pages/CrudTemplate.d.ts +1 -1
- package/templates/src/app/pages/CrudTemplate.js +6 -6
- package/templates/src/app/pages/DashboardTemplate.d.ts +1 -1
- package/templates/src/app/pages/DashboardTemplate.js +9 -9
- package/templates/src/app/pages/ForgotPassword/ForgotPasswordContent.d.ts +1 -1
- package/templates/src/app/pages/ForgotPassword/ForgotPasswordContent.js +21 -21
- package/templates/src/app/pages/ForgotPasswordPage.d.ts +1 -1
- package/templates/src/app/pages/ForgotPasswordPage.js +5 -5
- package/templates/src/app/pages/FormTemplate.d.ts +1 -1
- package/templates/src/app/pages/FormTemplate.js +23 -23
- package/templates/src/app/pages/Home/HomeContent.d.ts +1 -1
- package/templates/src/app/pages/Home/HomeContent.js +24 -24
- package/templates/src/app/pages/Home/HomeContent.tsx +1 -1
- package/templates/src/app/pages/HomePage.d.ts +8 -8
- package/templates/src/app/pages/HomePage.js +24 -24
- package/templates/src/app/pages/Login/LoginContent.d.ts +5 -5
- package/templates/src/app/pages/Login/LoginContent.js +28 -28
- package/templates/src/app/pages/LoginPage.d.ts +5 -5
- package/templates/src/app/pages/LoginPage.js +5 -5
- package/templates/src/app/pages/LoginTemplate.d.ts +1 -1
- package/templates/src/app/pages/LoginTemplate.js +6 -6
- package/templates/src/app/pages/ResetPassword/ResetPasswordContent.d.ts +1 -1
- package/templates/src/app/pages/ResetPassword/ResetPasswordContent.js +73 -73
- package/templates/src/app/pages/ResetPasswordPage.d.ts +1 -1
- package/templates/src/app/pages/ResetPasswordPage.js +5 -5
- package/templates/src/app/pages/Template/TemplateContent.d.ts +1 -1
- package/templates/src/app/pages/Template/TemplateContent.js +75 -75
- package/templates/src/app/pages/Template/TemplateContent.tsx +6 -1
- package/templates/src/app/pages/TemplatePage.d.ts +8 -8
- package/templates/src/app/pages/TemplatePage.js +11 -11
- package/templates/src/app/pages/VerifyEmail/VerifyEmailContent.d.ts +1 -1
- package/templates/src/app/pages/VerifyEmail/VerifyEmailContent.js +24 -24
- package/templates/src/app/pages/VerifyEmailPage.d.ts +1 -1
- package/templates/src/app/pages/VerifyEmailPage.js +5 -5
- package/templates/src/app/routes.d.ts +10 -10
- package/templates/src/app/routes.js +22 -22
- package/templates/src/main.d.ts +1 -1
- package/templates/src/main.js +6 -6
- package/templates/src/styles/index.css +2 -2
- package/templates/vite.config.d.ts +2 -2
- package/templates/vite.config.js +6 -6
- package/utils/gemini.ts +140 -140
- package/dist/components/blocks/audio-player/AudioPlayer.d.ts +0 -35
- package/dist/components/blocks/audio-player/index.d.ts +0 -1
- package/dist/components/blocks/document-editor/DocumentEditor.d.ts +0 -26
- package/dist/components/blocks/document-editor/index.d.ts +0 -1
- package/dist/components/blocks/podcast-player/PodcastPlayer.d.ts +0 -41
- package/dist/components/blocks/podcast-player/index.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [1.10.0] — 2026-05-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Semantic Variants** — Added `success`, `info`, and `warning` variants to components that lacked them:
|
|
15
|
+
- **Button** — now supports 9 variants: `default`, `secondary`, `outline`, `ghost`, `destructive`, `link`, `success`, `info`, `warning`.
|
|
16
|
+
- **Progress** — new `variant` prop (`default`, `success`, `info`, `warning`, `destructive`) colors both the track and the indicator.
|
|
17
|
+
- **NotificationBadge** — added `secondary`, `outline`, `success`, `info`, `warning`; standardized `default` to primary color for consistency with Badge and Button.
|
|
18
|
+
- **TimelineDot** — added `info` and `outline` variants; replaced hardcoded `rgb()` values with semantic CSS tokens (`bg-success`, `bg-warning`).
|
|
19
|
+
- **DialogBody** — new sub-component for the Dialog. When used, `DialogHeader` and `DialogFooter` stay pinned while `DialogBody` scrolls independently. Exported from `xertica-ui`.
|
|
20
|
+
- **Dialog height management** — `DialogContent` now has `max-h-[calc(100dvh-2rem)] overflow-hidden`. The close button (×) is pinned and never scrolls with content. `size="full"` fills the full viewport height.
|
|
21
|
+
- **Header `breadcrumbSlot`** — new prop accepting any `ReactNode` rendered immediately after the breadcrumb/title area (badges, buttons, status chips, etc.).
|
|
22
|
+
- **Sidebar default variant groups** — `variant="default"` now renders `navigationGroups` with labeled group headers. Each `RouteConfig` supports a `children` field (sub-routes shown in a contextual `DropdownMenu` via a `ChevronRight` button at the end of the item).
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- **Search double clear icon** — `type="search"` caused browsers to inject a native clear button on top of the custom × icon. Changed to `type="text"`.
|
|
27
|
+
- **CSS `@source` path** — CLI template `src/styles/index.css` had `../node_modules/xertica-ui` (one level short); corrected to `../../node_modules/xertica-ui/components`.
|
|
28
|
+
- **`theme-map.css` incomplete** — `--color-success`, `--color-info`, `--color-warning` and their `foreground` variants were missing, preventing `bg-success`, `text-info`, etc. from being generated in the compiled library CSS.
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- **Storybook argTypes** — Multiple components had controls missing from the Storybook panel: Badge (`success`/`info`/`warning` options), Select (`size`), Avatar (`size`), Rating (`readonly` casing), Timeline (`dotVariant`), Dialog (`size` available in all stories). All corrected.
|
|
33
|
+
- **LLM documentation** (`llms-full.txt`) — Updated Badge, Button, Dialog, Header, NotificationBadge, Progress, Search, Sidebar, and Timeline sections to reflect current APIs.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
10
37
|
## [1.9.0] — 2026-05-05
|
|
11
38
|
|
|
12
39
|
### Added
|
package/assets/xertica-logo.svg
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
fill="none"
|
|
3
|
-
preserveAspectRatio="xMidYMid meet"
|
|
4
|
-
viewBox="0 0 1543 289"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
>
|
|
7
|
-
<g id="Xertica.ai">
|
|
8
|
-
<path d="M1352.82 239.808V285.425H1304.73V239.808H1352.82Z" fill="#00BEFF" />
|
|
9
|
-
<path d="M814.8 284.848H766.711V77.4971H814.8V284.848Z" fill="#00BEFF" />
|
|
10
|
-
<path d="M1543 284.438H1514.2V160.28H1543V284.438Z" fill="#00BEFF" />
|
|
11
|
-
<path
|
|
12
|
-
clip-rule="evenodd"
|
|
13
|
-
d="M1432.83 157.796C1446.98 157.796 1459.14 162.515 1468.58 170.709V160.28H1497.38V284.438H1468.58V274.01C1459.14 282.451 1446.98 286.921 1432.83 286.921C1395.1 286.921 1368.29 260.352 1368.29 222.359C1368.29 184.616 1395.1 157.796 1432.83 157.796ZM1432.83 183.778C1410.79 183.778 1396.27 199.061 1396.27 222.359C1396.27 245.658 1410.79 260.94 1432.83 260.94C1454.63 260.94 1468.9 245.658 1468.9 222.359C1468.9 199.06 1454.63 183.778 1432.83 183.778Z"
|
|
14
|
-
fill="#00BEFF"
|
|
15
|
-
fill-rule="evenodd"
|
|
16
|
-
/>
|
|
17
|
-
<path d="M947.87 73.3516C1002.88 73.3516 1044.42 107.647 1053.57 159.234H1004.68C997.221 132.988 976.34 117.308 947.87 117.308C911.387 117.308 887.337 142.612 887.337 181.176C887.337 219.739 911.387 245.036 947.87 245.036C976.34 245.036 997.221 229.356 1004.68 203.109H1053.57C1044.47 254.701 1003.26 289 947.87 289C884.853 289 840.078 244.626 840.078 181.176C840.078 118.142 884.854 73.3516 947.87 73.3516Z" fill="#00BEFF" />
|
|
18
|
-
<path d="M88.4971 39.8242L157.353 142.191L83.5371 251.524L60.9277 284.854H0L96.3154 142.191L5.37695 7H66.3047L88.4971 39.8242Z" fill="#00BEFF" />
|
|
19
|
-
<path d="M254.314 284.855H193.387L151.914 223.71L182.548 178.551L254.314 284.855Z" fill="#00BEFF" />
|
|
20
|
-
<path
|
|
21
|
-
clip-rule="evenodd"
|
|
22
|
-
d="M1179.14 73.3477C1202.77 73.3477 1223.08 81.2286 1238.84 94.9121V77.4971H1286.94V284.847H1238.84V267.431C1223.09 281.528 1202.77 288.992 1179.14 288.992C1116.12 288.992 1071.35 244.622 1071.35 181.172C1071.35 118.139 1116.12 73.3478 1179.14 73.3477ZM1179.14 117.308C1142.66 117.308 1118.61 142.604 1118.61 181.172C1118.61 219.739 1142.66 245.035 1179.14 245.035C1215.21 245.035 1238.84 219.739 1238.84 181.172C1238.84 142.605 1215.21 117.308 1179.14 117.308Z"
|
|
23
|
-
fill="#00BEFF"
|
|
24
|
-
fill-rule="evenodd"
|
|
25
|
-
/>
|
|
26
|
-
<path d="M1543 145.383H1514.2V118.067H1543V145.383Z" fill="#00BEFF" />
|
|
27
|
-
<path d="M672.466 77.501H736.31V121.457H672.466V211.448C672.466 230.939 682.415 240.891 702.313 240.891H736.309V284.852H698.999C649.246 284.851 625.203 259.968 625.203 211.449V7H672.466V77.501Z" fill="#00BEFF" />
|
|
28
|
-
<path d="M814.8 52.6172H766.711V7H814.8V52.6172Z" fill="#00BEFF" />
|
|
29
|
-
<path
|
|
30
|
-
clip-rule="evenodd"
|
|
31
|
-
d="M354.069 73.3516C417.086 73.3517 461.864 118.143 461.864 181.176C461.864 187.396 461.031 193.615 460.204 199.422H295.197C301.829 228.864 323.392 246.696 354.069 246.696C372.724 246.696 389.309 241.721 399.675 226.376H452.742C441.132 265.774 400.501 288.996 354.069 288.996C291.053 288.996 246.274 244.626 246.273 181.176C246.273 118.142 291.053 73.3516 354.069 73.3516ZM354.068 115.65C325.044 115.65 303.902 131.826 296.44 158.78H410.863C403.819 131.826 382.672 115.65 354.068 115.65Z"
|
|
32
|
-
fill="#00BEFF"
|
|
33
|
-
fill-rule="evenodd"
|
|
34
|
-
/>
|
|
35
|
-
<path d="M596.957 121.453H562.962C543.064 121.453 533.114 131.409 533.114 150.899V284.847H485.852V150.899C485.852 102.38 509.894 77.4972 559.647 77.4971H596.957V121.453Z" fill="#00BEFF" />
|
|
36
|
-
<path d="M182.552 98.6992L151.922 53.3906L188.014 0H248.941L182.552 98.6992Z" fill="#00BEFF" />
|
|
37
|
-
</g>
|
|
1
|
+
<svg
|
|
2
|
+
fill="none"
|
|
3
|
+
preserveAspectRatio="xMidYMid meet"
|
|
4
|
+
viewBox="0 0 1543 289"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
>
|
|
7
|
+
<g id="Xertica.ai">
|
|
8
|
+
<path d="M1352.82 239.808V285.425H1304.73V239.808H1352.82Z" fill="#00BEFF" />
|
|
9
|
+
<path d="M814.8 284.848H766.711V77.4971H814.8V284.848Z" fill="#00BEFF" />
|
|
10
|
+
<path d="M1543 284.438H1514.2V160.28H1543V284.438Z" fill="#00BEFF" />
|
|
11
|
+
<path
|
|
12
|
+
clip-rule="evenodd"
|
|
13
|
+
d="M1432.83 157.796C1446.98 157.796 1459.14 162.515 1468.58 170.709V160.28H1497.38V284.438H1468.58V274.01C1459.14 282.451 1446.98 286.921 1432.83 286.921C1395.1 286.921 1368.29 260.352 1368.29 222.359C1368.29 184.616 1395.1 157.796 1432.83 157.796ZM1432.83 183.778C1410.79 183.778 1396.27 199.061 1396.27 222.359C1396.27 245.658 1410.79 260.94 1432.83 260.94C1454.63 260.94 1468.9 245.658 1468.9 222.359C1468.9 199.06 1454.63 183.778 1432.83 183.778Z"
|
|
14
|
+
fill="#00BEFF"
|
|
15
|
+
fill-rule="evenodd"
|
|
16
|
+
/>
|
|
17
|
+
<path d="M947.87 73.3516C1002.88 73.3516 1044.42 107.647 1053.57 159.234H1004.68C997.221 132.988 976.34 117.308 947.87 117.308C911.387 117.308 887.337 142.612 887.337 181.176C887.337 219.739 911.387 245.036 947.87 245.036C976.34 245.036 997.221 229.356 1004.68 203.109H1053.57C1044.47 254.701 1003.26 289 947.87 289C884.853 289 840.078 244.626 840.078 181.176C840.078 118.142 884.854 73.3516 947.87 73.3516Z" fill="#00BEFF" />
|
|
18
|
+
<path d="M88.4971 39.8242L157.353 142.191L83.5371 251.524L60.9277 284.854H0L96.3154 142.191L5.37695 7H66.3047L88.4971 39.8242Z" fill="#00BEFF" />
|
|
19
|
+
<path d="M254.314 284.855H193.387L151.914 223.71L182.548 178.551L254.314 284.855Z" fill="#00BEFF" />
|
|
20
|
+
<path
|
|
21
|
+
clip-rule="evenodd"
|
|
22
|
+
d="M1179.14 73.3477C1202.77 73.3477 1223.08 81.2286 1238.84 94.9121V77.4971H1286.94V284.847H1238.84V267.431C1223.09 281.528 1202.77 288.992 1179.14 288.992C1116.12 288.992 1071.35 244.622 1071.35 181.172C1071.35 118.139 1116.12 73.3478 1179.14 73.3477ZM1179.14 117.308C1142.66 117.308 1118.61 142.604 1118.61 181.172C1118.61 219.739 1142.66 245.035 1179.14 245.035C1215.21 245.035 1238.84 219.739 1238.84 181.172C1238.84 142.605 1215.21 117.308 1179.14 117.308Z"
|
|
23
|
+
fill="#00BEFF"
|
|
24
|
+
fill-rule="evenodd"
|
|
25
|
+
/>
|
|
26
|
+
<path d="M1543 145.383H1514.2V118.067H1543V145.383Z" fill="#00BEFF" />
|
|
27
|
+
<path d="M672.466 77.501H736.31V121.457H672.466V211.448C672.466 230.939 682.415 240.891 702.313 240.891H736.309V284.852H698.999C649.246 284.851 625.203 259.968 625.203 211.449V7H672.466V77.501Z" fill="#00BEFF" />
|
|
28
|
+
<path d="M814.8 52.6172H766.711V7H814.8V52.6172Z" fill="#00BEFF" />
|
|
29
|
+
<path
|
|
30
|
+
clip-rule="evenodd"
|
|
31
|
+
d="M354.069 73.3516C417.086 73.3517 461.864 118.143 461.864 181.176C461.864 187.396 461.031 193.615 460.204 199.422H295.197C301.829 228.864 323.392 246.696 354.069 246.696C372.724 246.696 389.309 241.721 399.675 226.376H452.742C441.132 265.774 400.501 288.996 354.069 288.996C291.053 288.996 246.274 244.626 246.273 181.176C246.273 118.142 291.053 73.3516 354.069 73.3516ZM354.068 115.65C325.044 115.65 303.902 131.826 296.44 158.78H410.863C403.819 131.826 382.672 115.65 354.068 115.65Z"
|
|
32
|
+
fill="#00BEFF"
|
|
33
|
+
fill-rule="evenodd"
|
|
34
|
+
/>
|
|
35
|
+
<path d="M596.957 121.453H562.962C543.064 121.453 533.114 131.409 533.114 150.899V284.847H485.852V150.899C485.852 102.38 509.894 77.4972 559.647 77.4971H596.957V121.453Z" fill="#00BEFF" />
|
|
36
|
+
<path d="M182.552 98.6992L151.922 53.3906L188.014 0H248.941L182.552 98.6992Z" fill="#00BEFF" />
|
|
37
|
+
</g>
|
|
38
38
|
</svg>
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
fill="none"
|
|
3
|
-
preserveAspectRatio="xMidYMid meet"
|
|
4
|
-
viewBox="0 0 258 282"
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
>
|
|
7
|
-
<g id="Xertica X">
|
|
8
|
-
<path
|
|
9
|
-
d="M67.2666 0.0361328L89.7793 33.3447L159.63 137.228L84.7471 248.178L61.8115 282H0L97.7109 137.228L5.45508 0.0361328H67.2666Z"
|
|
10
|
-
fill="#00BEFF"
|
|
11
|
-
/>
|
|
12
|
-
<path
|
|
13
|
-
d="M258 282H196.185L154.114 219.951L185.192 174.123L258 282Z"
|
|
14
|
-
fill="#00BEFF"
|
|
15
|
-
/>
|
|
16
|
-
<path
|
|
17
|
-
d="M252.696 0.186523L185.042 100.142L154.106 54.0693L190.884 0L252.696 0.186523Z"
|
|
18
|
-
fill="#00BEFF"
|
|
19
|
-
/>
|
|
20
|
-
</g>
|
|
1
|
+
<svg
|
|
2
|
+
fill="none"
|
|
3
|
+
preserveAspectRatio="xMidYMid meet"
|
|
4
|
+
viewBox="0 0 258 282"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
>
|
|
7
|
+
<g id="Xertica X">
|
|
8
|
+
<path
|
|
9
|
+
d="M67.2666 0.0361328L89.7793 33.3447L159.63 137.228L84.7471 248.178L61.8115 282H0L97.7109 137.228L5.45508 0.0361328H67.2666Z"
|
|
10
|
+
fill="#00BEFF"
|
|
11
|
+
/>
|
|
12
|
+
<path
|
|
13
|
+
d="M258 282H196.185L154.114 219.951L185.192 174.123L258 282Z"
|
|
14
|
+
fill="#00BEFF"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M252.696 0.186523L185.042 100.142L154.106 54.0693L190.884 0L252.696 0.186523Z"
|
|
18
|
+
fill="#00BEFF"
|
|
19
|
+
/>
|
|
20
|
+
</g>
|
|
21
21
|
</svg>
|