sdaia-ui 1.0.1
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/README.md +89 -0
- package/dist/PlayVideoIcon-BM-4pwUd.d.cts +7 -0
- package/dist/PlayVideoIcon-BM-4pwUd.d.ts +7 -0
- package/dist/dga-icons.cjs +14 -0
- package/dist/dga-icons.cjs.map +1 -0
- package/dist/dga-icons.d.cts +1 -0
- package/dist/dga-icons.d.ts +1 -0
- package/dist/dga-icons.js +3 -0
- package/dist/dga-icons.js.map +1 -0
- package/dist/icons.cjs +4014 -0
- package/dist/icons.cjs.map +1 -0
- package/dist/icons.d.cts +756 -0
- package/dist/icons.d.ts +756 -0
- package/dist/icons.js +3871 -0
- package/dist/icons.js.map +1 -0
- package/dist/index.cjs +43620 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +9407 -0
- package/dist/index.d.ts +9407 -0
- package/dist/index.js +43411 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +242 -0
- package/package.json +65 -0
- package/src/components/Accordion/Accordion.tsx +207 -0
- package/src/components/Accordion/Accordion.types.ts +36 -0
- package/src/components/Accordion/Accordion.variants.ts +283 -0
- package/src/components/Accordion/index.ts +9 -0
- package/src/components/ActionBar/ActionBar.tsx +192 -0
- package/src/components/ActionBar/ActionBar.types.ts +67 -0
- package/src/components/ActionBar/ActionBar.variants.ts +95 -0
- package/src/components/ActionBar/index.ts +8 -0
- package/src/components/Activity/Activity.tsx +52 -0
- package/src/components/Activity/Activity.types.ts +19 -0
- package/src/components/Activity/Activity.variants.ts +15 -0
- package/src/components/Activity/index.ts +2 -0
- package/src/components/ActivityItem/ActivityItem.tsx +298 -0
- package/src/components/ActivityItem/ActivityItem.types.ts +76 -0
- package/src/components/ActivityItem/ActivityItem.variants.ts +117 -0
- package/src/components/ActivityItem/index.ts +8 -0
- package/src/components/Alert/Alert.tsx +183 -0
- package/src/components/Alert/Alert.types.ts +34 -0
- package/src/components/Alert/Alert.variants.ts +168 -0
- package/src/components/Alert/index.ts +2 -0
- package/src/components/AreaChart/AreaChart.tsx +454 -0
- package/src/components/AreaChart/AreaChart.types.ts +117 -0
- package/src/components/AreaChart/AreaChart.variants.ts +202 -0
- package/src/components/AreaChart/index.ts +2 -0
- package/src/components/AspectRatio/AspectRatio.tsx +36 -0
- package/src/components/AspectRatio/AspectRatio.types.ts +33 -0
- package/src/components/AspectRatio/AspectRatio.variants.ts +42 -0
- package/src/components/AspectRatio/index.ts +2 -0
- package/src/components/AudioPlayer/AudioPlayer.tsx +294 -0
- package/src/components/AudioPlayer/AudioPlayer.types.ts +64 -0
- package/src/components/AudioPlayer/AudioPlayer.variants.ts +225 -0
- package/src/components/AudioPlayer/index.ts +2 -0
- package/src/components/Autocomplete/Autocomplete.tsx +353 -0
- package/src/components/Autocomplete/Autocomplete.types.ts +93 -0
- package/src/components/Autocomplete/Autocomplete.variants.ts +149 -0
- package/src/components/Autocomplete/index.ts +6 -0
- package/src/components/Avatar/Avatar.tsx +168 -0
- package/src/components/Avatar/Avatar.types.ts +36 -0
- package/src/components/Avatar/Avatar.variants.ts +102 -0
- package/src/components/Avatar/index.ts +7 -0
- package/src/components/AvatarGroup/AvatarGroup.tsx +87 -0
- package/src/components/AvatarGroup/AvatarGroup.types.ts +44 -0
- package/src/components/AvatarGroup/AvatarGroup.variants.ts +17 -0
- package/src/components/AvatarGroup/index.ts +6 -0
- package/src/components/Badge/Badge.tsx +74 -0
- package/src/components/Badge/Badge.types.ts +31 -0
- package/src/components/Badge/Badge.variants.ts +83 -0
- package/src/components/Badge/index.ts +2 -0
- package/src/components/Bar/Bar.tsx +57 -0
- package/src/components/Bar/Bar.types.ts +18 -0
- package/src/components/Bar/Bar.variants.ts +20 -0
- package/src/components/Bar/index.ts +2 -0
- package/src/components/BarChart/BarChart.tsx +179 -0
- package/src/components/BarChart/BarChart.types.ts +72 -0
- package/src/components/BarChart/BarChart.variants.ts +134 -0
- package/src/components/BarChart/index.ts +2 -0
- package/src/components/BarGroup/BarGroup.tsx +119 -0
- package/src/components/BarGroup/BarGroup.types.ts +50 -0
- package/src/components/BarGroup/BarGroup.variants.ts +76 -0
- package/src/components/BarGroup/index.ts +2 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +137 -0
- package/src/components/Breadcrumb/Breadcrumb.types.ts +21 -0
- package/src/components/Breadcrumb/BreadcrumbItem.tsx +267 -0
- package/src/components/Breadcrumb/BreadcrumbItem.types.ts +66 -0
- package/src/components/Breadcrumb/BreadcrumbItem.variants.ts +102 -0
- package/src/components/Breadcrumb/index.ts +12 -0
- package/src/components/Button/Button.tsx +100 -0
- package/src/components/Button/Button.types.ts +44 -0
- package/src/components/Button/Button.variants.ts +183 -0
- package/src/components/Button/index.ts +2 -0
- package/src/components/ButtonClose/ButtonClose.tsx +57 -0
- package/src/components/ButtonClose/ButtonClose.types.ts +18 -0
- package/src/components/ButtonClose/ButtonClose.variants.ts +72 -0
- package/src/components/ButtonClose/index.ts +2 -0
- package/src/components/ButtonGroup/ButtonGroup.tsx +127 -0
- package/src/components/ButtonGroup/ButtonGroup.types.ts +51 -0
- package/src/components/ButtonGroup/ButtonGroup.variants.ts +65 -0
- package/src/components/ButtonGroup/index.ts +2 -0
- package/src/components/ButtonMenu/ButtonMenu.tsx +73 -0
- package/src/components/ButtonMenu/ButtonMenu.types.ts +43 -0
- package/src/components/ButtonMenu/ButtonMenu.variants.ts +18 -0
- package/src/components/ButtonMenu/index.ts +2 -0
- package/src/components/ButtonSplit/ButtonSplit.tsx +344 -0
- package/src/components/ButtonSplit/ButtonSplit.types.ts +95 -0
- package/src/components/ButtonSplit/ButtonSplit.variants.ts +165 -0
- package/src/components/ButtonSplit/index.ts +7 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonHoverPattern.tsx +69 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.tsx +130 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.types.ts +4 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.variants.ts +19 -0
- package/src/components/ButtonsWithSdaiaTouch/index.ts +6 -0
- package/src/components/CLAUDE.md +212 -0
- package/src/components/CalendarHeader/CalendarHeader.tsx +224 -0
- package/src/components/CalendarHeader/CalendarHeader.types.ts +51 -0
- package/src/components/CalendarHeader/CalendarHeader.variants.ts +65 -0
- package/src/components/CalendarHeader/index.ts +2 -0
- package/src/components/Card/Card.tsx +76 -0
- package/src/components/Card/Card.types.ts +11 -0
- package/src/components/Card/Card.variants.ts +30 -0
- package/src/components/Card/index.ts +2 -0
- package/src/components/CardContent/CardContent.tsx +178 -0
- package/src/components/CardContent/CardContent.types.ts +70 -0
- package/src/components/CardContent/CardContent.variants.ts +90 -0
- package/src/components/CardContent/index.ts +6 -0
- package/src/components/CardFooter/CardFooter.tsx +196 -0
- package/src/components/CardFooter/CardFooter.types.ts +59 -0
- package/src/components/CardFooter/CardFooter.variants.ts +127 -0
- package/src/components/CardFooter/index.ts +8 -0
- package/src/components/CardHeader/CardHeader.tsx +150 -0
- package/src/components/CardHeader/CardHeader.types.ts +42 -0
- package/src/components/CardHeader/CardHeader.variants.ts +72 -0
- package/src/components/CardHeader/index.ts +5 -0
- package/src/components/CardLeadingItem/CardLeadingItem.tsx +166 -0
- package/src/components/CardLeadingItem/CardLeadingItem.types.ts +75 -0
- package/src/components/CardLeadingItem/CardLeadingItem.variants.ts +66 -0
- package/src/components/CardLeadingItem/index.ts +6 -0
- package/src/components/CardMedia/CardMedia.tsx +324 -0
- package/src/components/CardMedia/CardMedia.types.ts +114 -0
- package/src/components/CardMedia/CardMedia.variants.ts +139 -0
- package/src/components/CardMedia/index.ts +2 -0
- package/src/components/Carousel/Carousel.tsx +182 -0
- package/src/components/Carousel/Carousel.types.ts +38 -0
- package/src/components/Carousel/Carousel.variants.ts +17 -0
- package/src/components/Carousel/index.ts +2 -0
- package/src/components/CarouselArrow/CarouselArrow.tsx +66 -0
- package/src/components/CarouselArrow/CarouselArrow.types.ts +26 -0
- package/src/components/CarouselArrow/CarouselArrow.variants.ts +83 -0
- package/src/components/CarouselArrow/index.ts +7 -0
- package/src/components/CarouselControlsGroup/CarouselControlsGroup.tsx +81 -0
- package/src/components/CarouselControlsGroup/CarouselControlsGroup.types.ts +24 -0
- package/src/components/CarouselControlsGroup/CarouselControlsGroup.variants.ts +60 -0
- package/src/components/CarouselControlsGroup/index.ts +6 -0
- package/src/components/CarouselImage/CarouselImage.tsx +253 -0
- package/src/components/CarouselImage/CarouselImage.types.ts +72 -0
- package/src/components/CarouselImage/CarouselImage.variants.ts +43 -0
- package/src/components/CarouselImage/index.ts +6 -0
- package/src/components/Chart/Chart.tsx +3 -0
- package/src/components/Chart/Chart.types.ts +2 -0
- package/src/components/Chart/Chart.variants.ts +2 -0
- package/src/components/Chart/index.ts +2 -0
- package/src/components/ChartBadge/ChartBadge.tsx +62 -0
- package/src/components/ChartBadge/ChartBadge.types.ts +27 -0
- package/src/components/ChartBadge/ChartBadge.variants.ts +62 -0
- package/src/components/ChartBadge/index.ts +2 -0
- package/src/components/Checkbox/Checkbox.tsx +243 -0
- package/src/components/Checkbox/Checkbox.types.ts +20 -0
- package/src/components/Checkbox/index.ts +2 -0
- package/src/components/CheckboxLabel/CheckboxLabel.tsx +148 -0
- package/src/components/CheckboxLabel/CheckboxLabel.types.ts +55 -0
- package/src/components/CheckboxLabel/CheckboxLabel.variants.ts +35 -0
- package/src/components/CheckboxLabel/index.ts +2 -0
- package/src/components/Chip/Chip.tsx +245 -0
- package/src/components/Chip/Chip.types.ts +83 -0
- package/src/components/Chip/Chip.variants.ts +143 -0
- package/src/components/Chip/index.ts +2 -0
- package/src/components/CircularItem/CircularItem.tsx +133 -0
- package/src/components/CircularItem/CircularItem.types.ts +45 -0
- package/src/components/CircularItem/CircularItem.variants.ts +128 -0
- package/src/components/CircularItem/index.ts +7 -0
- package/src/components/CodeSnippet/CodeSnippet.tsx +421 -0
- package/src/components/CodeSnippet/CodeSnippet.types.ts +99 -0
- package/src/components/CodeSnippet/CodeSnippet.variants.ts +76 -0
- package/src/components/CodeSnippet/index.ts +9 -0
- package/src/components/ColumnChart/ColumnChart.tsx +943 -0
- package/src/components/ColumnChart/ColumnChart.types.ts +98 -0
- package/src/components/ColumnChart/ColumnChart.variants.ts +117 -0
- package/src/components/ColumnChart/index.ts +9 -0
- package/src/components/ComplexComposition/ComplexComposition.tsx +82 -0
- package/src/components/ComplexComposition/ComplexComposition.types.ts +3 -0
- package/src/components/ComplexComposition/ComplexComposition.variants.ts +14 -0
- package/src/components/ComplexComposition/index.ts +2 -0
- package/src/components/ContentSwitcher/ContentSwitcher.tsx +104 -0
- package/src/components/ContentSwitcher/ContentSwitcher.types.ts +28 -0
- package/src/components/ContentSwitcher/ContentSwitcher.variants.ts +70 -0
- package/src/components/ContentSwitcher/index.ts +6 -0
- package/src/components/ContentSwitcherItem/ContentSwitcherItem.tsx +56 -0
- package/src/components/ContentSwitcherItem/ContentSwitcherItem.types.ts +14 -0
- package/src/components/ContentSwitcherItem/ContentSwitcherItem.variants.ts +65 -0
- package/src/components/ContentSwitcherItem/index.ts +6 -0
- package/src/components/ContextMenu/ContextMenu.tsx +101 -0
- package/src/components/ContextMenu/ContextMenu.types.ts +64 -0
- package/src/components/ContextMenu/ContextMenu.variants.ts +36 -0
- package/src/components/ContextMenu/index.ts +7 -0
- package/src/components/ContextMenuDropdown/ContextMenuDropdown.tsx +370 -0
- package/src/components/ContextMenuDropdown/ContextMenuDropdown.types.ts +89 -0
- package/src/components/ContextMenuDropdown/ContextMenuDropdown.variants.ts +88 -0
- package/src/components/ContextMenuDropdown/index.ts +5 -0
- package/src/components/DateCell/DateCell.tsx +181 -0
- package/src/components/DateCell/DateCell.types.ts +53 -0
- package/src/components/DateCell/DateCell.variants.ts +217 -0
- package/src/components/DateCell/index.ts +2 -0
- package/src/components/DatePicker/DatePicker.tsx +923 -0
- package/src/components/DatePicker/DatePicker.types.ts +102 -0
- package/src/components/DatePicker/DatePicker.variants.ts +274 -0
- package/src/components/DatePicker/index.ts +9 -0
- package/src/components/DateTab/DateTab.tsx +91 -0
- package/src/components/DateTab/DateTab.types.ts +9 -0
- package/src/components/DateTab/DateTab.variants.ts +98 -0
- package/src/components/DateTab/index.ts +2 -0
- package/src/components/DgaIcon/DgaIcon.tsx +68 -0
- package/src/components/DgaIcon/DgaIcon.types.ts +57 -0
- package/src/components/DgaIcon/DgaIcon.variants.ts +41 -0
- package/src/components/DgaIcon/DgaIconByName.tsx +76 -0
- package/src/components/DgaIcon/generated/icon-names.ts +4388 -0
- package/src/components/DgaIcon/index.ts +12 -0
- package/src/components/DgaIcon/lib/decodeDataUrl.ts +46 -0
- package/src/components/DigitalStamp/DigitalStamp.tsx +236 -0
- package/src/components/DigitalStamp/DigitalStamp.types.ts +38 -0
- package/src/components/DigitalStamp/DigitalStamp.variants.ts +185 -0
- package/src/components/DigitalStamp/index.ts +2 -0
- package/src/components/Divider/Divider.tsx +83 -0
- package/src/components/Divider/Divider.types.ts +49 -0
- package/src/components/Divider/Divider.variants.ts +55 -0
- package/src/components/Divider/index.ts +8 -0
- package/src/components/DonutChart/DonutChart.tsx +251 -0
- package/src/components/DonutChart/DonutChart.types.ts +97 -0
- package/src/components/DonutChart/DonutChart.variants.ts +203 -0
- package/src/components/DonutChart/index.ts +7 -0
- package/src/components/DonutChartPanel/DonutChartPanel.tsx +778 -0
- package/src/components/DonutChartPanel/DonutChartPanel.types.ts +143 -0
- package/src/components/DonutChartPanel/DonutChartPanel.variants.ts +154 -0
- package/src/components/DonutChartPanel/index.ts +9 -0
- package/src/components/DraggableItem/DraggableItem.tsx +228 -0
- package/src/components/DraggableItem/DraggableItem.types.ts +72 -0
- package/src/components/DraggableItem/DraggableItem.variants.ts +149 -0
- package/src/components/DraggableItem/index.ts +3 -0
- package/src/components/DraggableList/DraggableList.tsx +20 -0
- package/src/components/DraggableList/DraggableList.types.ts +16 -0
- package/src/components/DraggableList/DraggableList.variants.ts +13 -0
- package/src/components/DraggableList/index.ts +3 -0
- package/src/components/Dropdown/Dropdown.tsx +331 -0
- package/src/components/Dropdown/Dropdown.types.ts +108 -0
- package/src/components/Dropdown/Dropdown.variants.ts +73 -0
- package/src/components/Dropdown/index.ts +9 -0
- package/src/components/DropdownListHeader/DropdownListHeader.tsx +79 -0
- package/src/components/DropdownListHeader/DropdownListHeader.types.ts +24 -0
- package/src/components/DropdownListHeader/DropdownListHeader.variants.ts +65 -0
- package/src/components/DropdownListHeader/index.ts +2 -0
- package/src/components/EmptyState/EmptyState.tsx +221 -0
- package/src/components/EmptyState/EmptyState.types.ts +48 -0
- package/src/components/EmptyState/EmptyState.variants.ts +122 -0
- package/src/components/EmptyState/index.ts +3 -0
- package/src/components/Extension/Extension.tsx +240 -0
- package/src/components/Extension/Extension.types.ts +40 -0
- package/src/components/Extension/Extension.variants.ts +27 -0
- package/src/components/Extension/index.ts +6 -0
- package/src/components/Feedback/Feedback.tsx +55 -0
- package/src/components/Feedback/Feedback.types.ts +15 -0
- package/src/components/Feedback/Feedback.variants.ts +9 -0
- package/src/components/Feedback/index.ts +2 -0
- package/src/components/FeedbackOverview/FeedbackOverview.tsx +70 -0
- package/src/components/FeedbackOverview/FeedbackOverview.types.ts +11 -0
- package/src/components/FeedbackOverview/FeedbackOverview.variants.ts +17 -0
- package/src/components/FeedbackOverview/index.ts +2 -0
- package/src/components/FeedbackReaction/FeedbackReaction.tsx +81 -0
- package/src/components/FeedbackReaction/FeedbackReaction.types.ts +14 -0
- package/src/components/FeedbackReaction/FeedbackReaction.variants.ts +39 -0
- package/src/components/FeedbackReaction/index.ts +2 -0
- package/src/components/FileUploadBase/FileUploadBase.tsx +104 -0
- package/src/components/FileUploadBase/FileUploadBase.types.ts +48 -0
- package/src/components/FileUploadBase/FileUploadBase.variants.ts +51 -0
- package/src/components/FileUploadBase/index.ts +2 -0
- package/src/components/FileUploadItemBase/FileUploadItemBase.tsx +197 -0
- package/src/components/FileUploadItemBase/FileUploadItemBase.types.ts +58 -0
- package/src/components/FileUploadItemBase/FileUploadItemBase.variants.ts +67 -0
- package/src/components/FileUploadItemBase/index.ts +6 -0
- package/src/components/FileUploader/FileUploader.tsx +164 -0
- package/src/components/FileUploader/FileUploader.types.ts +46 -0
- package/src/components/FileUploader/FileUploader.variants.ts +9 -0
- package/src/components/FileUploader/index.ts +2 -0
- package/src/components/Filtration/Filtration.tsx +260 -0
- package/src/components/Filtration/Filtration.types.ts +95 -0
- package/src/components/Filtration/Filtration.variants.ts +70 -0
- package/src/components/Filtration/index.ts +6 -0
- package/src/components/FiltrationItem/FiltrationItem.tsx +200 -0
- package/src/components/FiltrationItem/FiltrationItem.types.ts +57 -0
- package/src/components/FiltrationItem/FiltrationItem.variants.ts +81 -0
- package/src/components/FiltrationItem/index.ts +2 -0
- package/src/components/FiltrationList/FiltrationList.tsx +611 -0
- package/src/components/FiltrationList/FiltrationList.types.ts +191 -0
- package/src/components/FiltrationList/FiltrationList.variants.ts +283 -0
- package/src/components/FiltrationList/index.ts +16 -0
- package/src/components/FloatingButton/FloatingButton.tsx +89 -0
- package/src/components/FloatingButton/FloatingButton.types.ts +29 -0
- package/src/components/FloatingButton/FloatingButton.variants.ts +79 -0
- package/src/components/FloatingButton/index.ts +6 -0
- package/src/components/Footer/Footer.tsx +353 -0
- package/src/components/Footer/Footer.types.ts +142 -0
- package/src/components/Footer/Footer.variants.ts +137 -0
- package/src/components/Footer/index.ts +11 -0
- package/src/components/FooterItem/FooterItem.tsx +211 -0
- package/src/components/FooterItem/FooterItem.types.ts +45 -0
- package/src/components/FooterItem/FooterItem.variants.ts +139 -0
- package/src/components/FooterItem/index.ts +2 -0
- package/src/components/FooterLinkList/FooterLinkList.tsx +140 -0
- package/src/components/FooterLinkList/FooterLinkList.types.ts +46 -0
- package/src/components/FooterLinkList/FooterLinkList.variants.ts +64 -0
- package/src/components/FooterLinkList/index.ts +2 -0
- package/src/components/GraphBase/GraphBase.tsx +598 -0
- package/src/components/GraphBase/GraphBase.types.ts +101 -0
- package/src/components/GraphBase/GraphBase.variants.ts +126 -0
- package/src/components/GraphBase/index.ts +7 -0
- package/src/components/HeaderItem/HeaderItem.tsx +206 -0
- package/src/components/HeaderItem/HeaderItem.types.ts +73 -0
- package/src/components/HeaderItem/HeaderItem.variants.ts +139 -0
- package/src/components/HeaderItem/index.ts +2 -0
- package/src/components/HelpIcon/HelpIcon.tsx +173 -0
- package/src/components/HelpIcon/HelpIcon.types.ts +54 -0
- package/src/components/HelpIcon/HelpIcon.variants.ts +79 -0
- package/src/components/HelpIcon/index.ts +2 -0
- package/src/components/HorizontalTabs/HorizontalTabs.tsx +87 -0
- package/src/components/HorizontalTabs/HorizontalTabs.types.ts +41 -0
- package/src/components/HorizontalTabs/HorizontalTabs.variants.ts +54 -0
- package/src/components/HorizontalTabs/index.ts +6 -0
- package/src/components/IllustrationInstance/IllustrationInstance.tsx +46 -0
- package/src/components/IllustrationInstance/IllustrationInstance.types.ts +25 -0
- package/src/components/IllustrationInstance/IllustrationInstance.variants.ts +19 -0
- package/src/components/IllustrationInstance/index.ts +3 -0
- package/src/components/ImagePreview/ImagePreview.tsx +170 -0
- package/src/components/ImagePreview/ImagePreview.types.ts +54 -0
- package/src/components/ImagePreview/ImagePreview.variants.ts +39 -0
- package/src/components/ImagePreview/index.ts +2 -0
- package/src/components/Input/Input.tsx +113 -0
- package/src/components/Input/Input.types.ts +22 -0
- package/src/components/Input/index.ts +2 -0
- package/src/components/InputPrefixSuffix/InputPrefixSuffix.tsx +91 -0
- package/src/components/InputPrefixSuffix/InputPrefixSuffix.types.ts +81 -0
- package/src/components/InputPrefixSuffix/InputPrefixSuffix.variants.ts +128 -0
- package/src/components/InputPrefixSuffix/index.ts +8 -0
- package/src/components/InputsActions/InputsActions.tsx +53 -0
- package/src/components/InputsActions/InputsActions.types.ts +13 -0
- package/src/components/InputsActions/InputsActions.variants.ts +18 -0
- package/src/components/InputsActions/index.ts +2 -0
- package/src/components/InstanceColumn/InstanceColumn.tsx +43 -0
- package/src/components/InstanceColumn/InstanceColumn.types.ts +18 -0
- package/src/components/InstanceColumn/InstanceColumn.variants.ts +11 -0
- package/src/components/InstanceColumn/index.ts +2 -0
- package/src/components/InstanceItem/InstanceItem.tsx +33 -0
- package/src/components/InstanceItem/InstanceItem.types.ts +11 -0
- package/src/components/InstanceItem/InstanceItem.variants.ts +31 -0
- package/src/components/InstanceItem/index.ts +2 -0
- package/src/components/InstanceRows/InstanceRows.tsx +41 -0
- package/src/components/InstanceRows/InstanceRows.types.ts +17 -0
- package/src/components/InstanceRows/InstanceRows.variants.ts +10 -0
- package/src/components/InstanceRows/index.ts +2 -0
- package/src/components/InstanceSlot/InstanceSlot.tsx +25 -0
- package/src/components/InstanceSlot/InstanceSlot.types.ts +10 -0
- package/src/components/InstanceSlot/InstanceSlot.variants.ts +2 -0
- package/src/components/InstanceSlot/index.ts +2 -0
- package/src/components/LineChart/LineChart.tsx +592 -0
- package/src/components/LineChart/LineChart.types.ts +78 -0
- package/src/components/LineChart/LineChart.variants.ts +324 -0
- package/src/components/LineChart/index.ts +7 -0
- package/src/components/Link/Link.tsx +81 -0
- package/src/components/Link/Link.types.ts +23 -0
- package/src/components/Link/Link.variants.ts +69 -0
- package/src/components/Link/index.ts +2 -0
- package/src/components/List/List.tsx +260 -0
- package/src/components/List/List.types.ts +70 -0
- package/src/components/List/List.variants.ts +94 -0
- package/src/components/List/index.ts +5 -0
- package/src/components/ListGroup/ListGroup.tsx +37 -0
- package/src/components/ListGroup/ListGroup.types.ts +14 -0
- package/src/components/ListGroup/ListGroup.variants.ts +17 -0
- package/src/components/ListGroup/index.ts +3 -0
- package/src/components/LoadingIndicator/LoadingIndicator.tsx +208 -0
- package/src/components/LoadingIndicator/LoadingIndicator.types.ts +51 -0
- package/src/components/LoadingIndicator/LoadingIndicator.variants.ts +108 -0
- package/src/components/LoadingIndicator/index.ts +7 -0
- package/src/components/MediaGallery/MediaGallery.tsx +600 -0
- package/src/components/MediaGallery/MediaGallery.types.ts +124 -0
- package/src/components/MediaGallery/MediaGallery.variants.ts +116 -0
- package/src/components/MediaGallery/index.ts +2 -0
- package/src/components/MediaGrids/MediaGrids.tsx +48 -0
- package/src/components/MediaGrids/MediaGrids.types.ts +14 -0
- package/src/components/MediaGrids/MediaGrids.variants.ts +16 -0
- package/src/components/MediaGrids/index.ts +2 -0
- package/src/components/MediaViewer/MediaViewer.tsx +345 -0
- package/src/components/MediaViewer/MediaViewer.types.ts +59 -0
- package/src/components/MediaViewer/MediaViewer.variants.ts +168 -0
- package/src/components/MediaViewer/index.ts +2 -0
- package/src/components/Menu/Menu.tsx +109 -0
- package/src/components/Menu/Menu.types.ts +37 -0
- package/src/components/Menu/Menu.variants.ts +29 -0
- package/src/components/Menu/index.ts +2 -0
- package/src/components/MenuButtonItem/MenuButtonItem.tsx +280 -0
- package/src/components/MenuButtonItem/MenuButtonItem.types.ts +91 -0
- package/src/components/MenuButtonItem/MenuButtonItem.variants.ts +223 -0
- package/src/components/MenuButtonItem/index.ts +8 -0
- package/src/components/MenuItem/MenuItem.tsx +211 -0
- package/src/components/MenuItem/MenuItem.types.ts +40 -0
- package/src/components/MenuItem/MenuItem.variants.ts +48 -0
- package/src/components/MenuItem/index.ts +2 -0
- package/src/components/MenuItemGroup/MenuItemGroup.tsx +91 -0
- package/src/components/MenuItemGroup/MenuItemGroup.types.ts +82 -0
- package/src/components/MenuItemGroup/MenuItemGroup.variants.ts +33 -0
- package/src/components/MenuItemGroup/index.ts +2 -0
- package/src/components/MenuList/MenuList.tsx +44 -0
- package/src/components/MenuList/MenuList.types.ts +28 -0
- package/src/components/MenuList/MenuList.variants.ts +2 -0
- package/src/components/MenuList/index.ts +2 -0
- package/src/components/Metric/Metric.tsx +584 -0
- package/src/components/Metric/Metric.types.ts +77 -0
- package/src/components/Metric/Metric.variants.ts +175 -0
- package/src/components/Metric/index.ts +8 -0
- package/src/components/Modal/Modal.tsx +139 -0
- package/src/components/Modal/Modal.types.ts +55 -0
- package/src/components/Modal/index.ts +2 -0
- package/src/components/ModalActions/ModalActions.tsx +176 -0
- package/src/components/ModalActions/ModalActions.types.ts +31 -0
- package/src/components/ModalActions/index.ts +2 -0
- package/src/components/ModalHeader/ModalHeader.tsx +207 -0
- package/src/components/ModalHeader/ModalHeader.types.ts +24 -0
- package/src/components/ModalHeader/index.ts +2 -0
- package/src/components/NavBar/NavBar.tsx +326 -0
- package/src/components/NavBar/NavBar.types.ts +78 -0
- package/src/components/NavBar/NavBar.variants.ts +139 -0
- package/src/components/NavBar/index.ts +2 -0
- package/src/components/NavHeader/NavHeader.tsx +292 -0
- package/src/components/NavHeader/NavHeader.types.ts +145 -0
- package/src/components/NavHeader/NavHeader.variants.ts +178 -0
- package/src/components/NavHeader/index.ts +2 -0
- package/src/components/NavHeaderActions/NavHeaderActions.tsx +161 -0
- package/src/components/NavHeaderActions/NavHeaderActions.types.ts +61 -0
- package/src/components/NavHeaderActions/NavHeaderActions.variants.ts +58 -0
- package/src/components/NavHeaderActions/index.ts +2 -0
- package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.tsx +243 -0
- package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.types.ts +76 -0
- package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.variants.ts +133 -0
- package/src/components/NavHeaderDropdownItem/index.ts +5 -0
- package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.tsx +64 -0
- package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.types.ts +55 -0
- package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.variants.ts +47 -0
- package/src/components/NavHeaderDropdownItemList/index.ts +5 -0
- package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.tsx +52 -0
- package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.types.ts +17 -0
- package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.variants.ts +73 -0
- package/src/components/NavHeaderMenuButton/index.ts +2 -0
- package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.tsx +126 -0
- package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.types.ts +74 -0
- package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.variants.ts +169 -0
- package/src/components/NavHeaderMenuCard/index.ts +6 -0
- package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.tsx +164 -0
- package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.types.ts +64 -0
- package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.variants.ts +175 -0
- package/src/components/NavHeaderMenuItem/index.ts +2 -0
- package/src/components/NavItem/NavItem.tsx +210 -0
- package/src/components/NavItem/NavItem.types.ts +71 -0
- package/src/components/NavItem/NavItem.variants.ts +61 -0
- package/src/components/NavItem/index.ts +2 -0
- package/src/components/NavLabel/NavLabel.tsx +84 -0
- package/src/components/NavLabel/NavLabel.types.ts +55 -0
- package/src/components/NavLabel/NavLabel.variants.ts +68 -0
- package/src/components/NavLabel/index.ts +2 -0
- package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.tsx +101 -0
- package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.types.ts +27 -0
- package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.variants.ts +42 -0
- package/src/components/NavLogoPlaceholder/index.ts +6 -0
- package/src/components/NotificationBanner/NotificationBanner.tsx +256 -0
- package/src/components/NotificationBanner/NotificationBanner.types.ts +77 -0
- package/src/components/NotificationBanner/NotificationBanner.variants.ts +109 -0
- package/src/components/NotificationBanner/index.ts +7 -0
- package/src/components/NotificationPopup/NotificationPopup.tsx +147 -0
- package/src/components/NotificationPopup/NotificationPopup.types.ts +51 -0
- package/src/components/NotificationPopup/NotificationPopup.variants.ts +145 -0
- package/src/components/NotificationPopup/index.ts +5 -0
- package/src/components/Notifications/Notifications.tsx +209 -0
- package/src/components/Notifications/Notifications.types.ts +68 -0
- package/src/components/Notifications/Notifications.variants.ts +89 -0
- package/src/components/Notifications/index.ts +2 -0
- package/src/components/Number/Number.tsx +497 -0
- package/src/components/Number/Number.types.ts +58 -0
- package/src/components/Number/Number.variants.ts +94 -0
- package/src/components/Number/index.ts +2 -0
- package/src/components/NumberInput/NumberInput.tsx +265 -0
- package/src/components/NumberInput/NumberInput.types.ts +110 -0
- package/src/components/NumberInput/NumberInput.variants.ts +205 -0
- package/src/components/NumberInput/index.ts +6 -0
- package/src/components/Pagination/Pagination.tsx +393 -0
- package/src/components/Pagination/Pagination.types.ts +26 -0
- package/src/components/Pagination/Pagination.variants.ts +88 -0
- package/src/components/Pagination/index.ts +3 -0
- package/src/components/PaginationButtonGroup/PaginationButtonGroup.tsx +132 -0
- package/src/components/PaginationButtonGroup/PaginationButtonGroup.types.ts +20 -0
- package/src/components/PaginationButtonGroup/PaginationButtonGroup.variants.ts +45 -0
- package/src/components/PaginationButtonGroup/index.ts +8 -0
- package/src/components/PaginationCells/PaginationCells.tsx +105 -0
- package/src/components/PaginationCells/PaginationCells.types.ts +31 -0
- package/src/components/PaginationCells/PaginationCells.variants.ts +96 -0
- package/src/components/PaginationCells/index.ts +9 -0
- package/src/components/PdfViewer/PdfViewer.tsx +265 -0
- package/src/components/PdfViewer/PdfViewer.types.ts +79 -0
- package/src/components/PdfViewer/PdfViewer.variants.ts +105 -0
- package/src/components/PdfViewer/index.ts +3 -0
- package/src/components/PieChartPanel/PieChartPanel.tsx +889 -0
- package/src/components/PieChartPanel/PieChartPanel.types.ts +130 -0
- package/src/components/PieChartPanel/PieChartPanel.variants.ts +156 -0
- package/src/components/PieChartPanel/index.ts +8 -0
- package/src/components/Popover/Popover.tsx +398 -0
- package/src/components/Popover/Popover.types.ts +155 -0
- package/src/components/Popover/Popover.variants.ts +147 -0
- package/src/components/Popover/index.ts +7 -0
- package/src/components/ProgressBar/ProgressBar.tsx +241 -0
- package/src/components/ProgressBar/ProgressBar.types.ts +22 -0
- package/src/components/ProgressBar/ProgressBar.variants.ts +54 -0
- package/src/components/ProgressBar/index.ts +2 -0
- package/src/components/ProgressCircle/ProgressCircle.tsx +369 -0
- package/src/components/ProgressCircle/ProgressCircle.types.ts +26 -0
- package/src/components/ProgressCircle/ProgressCircle.variants.ts +88 -0
- package/src/components/ProgressCircle/index.ts +7 -0
- package/src/components/Quote/Quote.tsx +210 -0
- package/src/components/Quote/Quote.types.ts +73 -0
- package/src/components/Quote/Quote.variants.ts +106 -0
- package/src/components/Quote/index.ts +2 -0
- package/src/components/RadialStepper/RadialStepper.tsx +166 -0
- package/src/components/RadialStepper/RadialStepper.types.ts +77 -0
- package/src/components/RadialStepper/RadialStepper.variants.ts +122 -0
- package/src/components/RadialStepper/index.ts +7 -0
- package/src/components/RadioButton/RadioButton.tsx +237 -0
- package/src/components/RadioButton/RadioButton.types.ts +18 -0
- package/src/components/RadioButton/index.ts +2 -0
- package/src/components/RadioLabel/RadioLabel.tsx +157 -0
- package/src/components/RadioLabel/RadioLabel.types.ts +53 -0
- package/src/components/RadioLabel/RadioLabel.variants.ts +36 -0
- package/src/components/RadioLabel/index.ts +2 -0
- package/src/components/RangeSlider/RangeSlider.tsx +389 -0
- package/src/components/RangeSlider/RangeSlider.types.ts +38 -0
- package/src/components/RangeSlider/RangeSlider.variants.ts +27 -0
- package/src/components/RangeSlider/index.ts +2 -0
- package/src/components/Rating/Rating.tsx +246 -0
- package/src/components/Rating/Rating.types.ts +37 -0
- package/src/components/Rating/Rating.variants.ts +52 -0
- package/src/components/Rating/index.ts +8 -0
- package/src/components/RatingOverview/RatingOverview.tsx +170 -0
- package/src/components/RatingOverview/RatingOverview.types.ts +37 -0
- package/src/components/RatingOverview/RatingOverview.variants.ts +50 -0
- package/src/components/RatingOverview/index.ts +2 -0
- package/src/components/RatingStar/RatingStar.tsx +76 -0
- package/src/components/RatingStar/RatingStar.types.ts +18 -0
- package/src/components/RatingStar/RatingStar.variants.ts +34 -0
- package/src/components/RatingStar/index.ts +7 -0
- package/src/components/RichTextEditor/RichTextEditor.tsx +1341 -0
- package/src/components/RichTextEditor/RichTextEditor.types.ts +127 -0
- package/src/components/RichTextEditor/RichTextEditor.variants.ts +231 -0
- package/src/components/RichTextEditor/index.ts +6 -0
- package/src/components/ScatterChart/ScatterChart.tsx +164 -0
- package/src/components/ScatterChart/ScatterChart.types.ts +42 -0
- package/src/components/ScatterChart/ScatterChart.variants.ts +162 -0
- package/src/components/ScatterChart/index.ts +2 -0
- package/src/components/SdaiaLogoAnimation/BGSVG.tsx +216 -0
- package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.tsx +120 -0
- package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.types.ts +13 -0
- package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.variants.ts +22 -0
- package/src/components/SdaiaLogoAnimation/index.ts +2 -0
- package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.tsx +55 -0
- package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.types.ts +12 -0
- package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.variants.ts +28 -0
- package/src/components/SdaiaTouch2dAnimation/Star.tsx +82 -0
- package/src/components/SdaiaTouch2dAnimation/StarShape.tsx +78 -0
- package/src/components/SdaiaTouch2dAnimation/index.ts +6 -0
- package/src/components/SecondNavHeader/SecondNavHeader.tsx +80 -0
- package/src/components/SecondNavHeader/SecondNavHeader.types.ts +41 -0
- package/src/components/SecondNavHeader/SecondNavHeader.variants.ts +42 -0
- package/src/components/SecondNavHeader/index.ts +2 -0
- package/src/components/Select/Select.tsx +351 -0
- package/src/components/Select/Select.types.ts +102 -0
- package/src/components/Select/Select.variants.ts +111 -0
- package/src/components/Select/index.ts +2 -0
- package/src/components/SelectMenuItem/SelectMenuItem.tsx +132 -0
- package/src/components/SelectMenuItem/SelectMenuItem.types.ts +47 -0
- package/src/components/SelectMenuItem/SelectMenuItem.variants.ts +56 -0
- package/src/components/SelectMenuItem/index.ts +2 -0
- package/src/components/SeriesLabel/SeriesLabel.tsx +76 -0
- package/src/components/SeriesLabel/SeriesLabel.types.ts +27 -0
- package/src/components/SeriesLabel/SeriesLabel.variants.ts +84 -0
- package/src/components/SeriesLabel/index.ts +2 -0
- package/src/components/Signature/Signature.tsx +905 -0
- package/src/components/Signature/Signature.types.ts +68 -0
- package/src/components/Signature/Signature.variants.ts +115 -0
- package/src/components/Signature/index.ts +2 -0
- package/src/components/Skeleton/Skeleton.tsx +21 -0
- package/src/components/Skeleton/Skeleton.types.ts +15 -0
- package/src/components/Skeleton/Skeleton.variants.ts +14 -0
- package/src/components/Skeleton/index.ts +2 -0
- package/src/components/SkeletonAvatar/SkeletonAvatar.tsx +21 -0
- package/src/components/SkeletonAvatar/SkeletonAvatar.types.ts +15 -0
- package/src/components/SkeletonAvatar/SkeletonAvatar.variants.ts +14 -0
- package/src/components/SkeletonAvatar/index.ts +2 -0
- package/src/components/SlideoutMenu/SlideoutMenu.tsx +225 -0
- package/src/components/SlideoutMenu/SlideoutMenu.types.ts +39 -0
- package/src/components/SlideoutMenu/SlideoutMenuDivider.tsx +10 -0
- package/src/components/SlideoutMenu/SlideoutMenuSection.tsx +39 -0
- package/src/components/SlideoutMenu/index.ts +5 -0
- package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.tsx +96 -0
- package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.types.ts +28 -0
- package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.variants.ts +49 -0
- package/src/components/SlideoutMenuFooter/index.ts +6 -0
- package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.tsx +83 -0
- package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.types.ts +19 -0
- package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.variants.ts +78 -0
- package/src/components/SlideoutMenuHeader/index.ts +2 -0
- package/src/components/Slider/Slider.tsx +259 -0
- package/src/components/Slider/Slider.types.ts +22 -0
- package/src/components/Slider/Slider.variants.ts +23 -0
- package/src/components/Slider/index.ts +2 -0
- package/src/components/Sparkline/Sparkline.tsx +130 -0
- package/src/components/Sparkline/Sparkline.types.ts +36 -0
- package/src/components/Sparkline/Sparkline.variants.ts +118 -0
- package/src/components/Sparkline/index.ts +2 -0
- package/src/components/StatusDot/StatusDot.tsx +82 -0
- package/src/components/StatusDot/StatusDot.types.ts +35 -0
- package/src/components/StatusDot/StatusDot.variants.ts +66 -0
- package/src/components/StatusDot/index.ts +8 -0
- package/src/components/StructuredList/StructuredList.tsx +79 -0
- package/src/components/StructuredList/StructuredList.types.ts +27 -0
- package/src/components/StructuredList/index.ts +2 -0
- package/src/components/StructuredListGroup/StructuredListGroup.tsx +76 -0
- package/src/components/StructuredListGroup/StructuredListGroup.types.ts +27 -0
- package/src/components/StructuredListGroup/StructuredListGroup.variants.ts +14 -0
- package/src/components/StructuredListGroup/index.ts +5 -0
- package/src/components/StructuredListHeader/StructuredListHeader.tsx +98 -0
- package/src/components/StructuredListHeader/StructuredListHeader.types.ts +26 -0
- package/src/components/StructuredListHeader/StructuredListHeader.variants.ts +24 -0
- package/src/components/StructuredListHeader/index.ts +5 -0
- package/src/components/StructuredListRow/StructuredListRow.tsx +144 -0
- package/src/components/StructuredListRow/StructuredListRow.types.ts +37 -0
- package/src/components/StructuredListRow/StructuredListRow.variants.ts +53 -0
- package/src/components/StructuredListRow/index.ts +6 -0
- package/src/components/SubHeaderItem/SubHeaderItem.tsx +37 -0
- package/src/components/SubHeaderItem/SubHeaderItem.types.ts +20 -0
- package/src/components/SubHeaderItem/SubHeaderItem.variants.ts +23 -0
- package/src/components/SubHeaderItem/index.ts +2 -0
- package/src/components/Switch/Switch.tsx +138 -0
- package/src/components/Switch/Switch.types.ts +18 -0
- package/src/components/Switch/Switch.variants.ts +49 -0
- package/src/components/Switch/index.ts +2 -0
- package/src/components/SwitchLabel/SwitchLabel.tsx +114 -0
- package/src/components/SwitchLabel/SwitchLabel.types.ts +27 -0
- package/src/components/SwitchLabel/SwitchLabel.variants.ts +28 -0
- package/src/components/SwitchLabel/index.ts +2 -0
- package/src/components/Tab/Tab.tsx +92 -0
- package/src/components/Tab/Tab.types.ts +34 -0
- package/src/components/Tab/Tab.variants.ts +79 -0
- package/src/components/Tab/index.ts +2 -0
- package/src/components/Table/Table.tsx +353 -0
- package/src/components/Table/Table.types.ts +80 -0
- package/src/components/Table/Table.variants.ts +110 -0
- package/src/components/Table/index.ts +10 -0
- package/src/components/TableOfContent/TableOfContent.tsx +33 -0
- package/src/components/TableOfContent/TableOfContent.types.ts +15 -0
- package/src/components/TableOfContent/TableOfContent.variants.ts +27 -0
- package/src/components/TableOfContent/index.ts +2 -0
- package/src/components/TableOfContentItem/TableOfContentItem.tsx +85 -0
- package/src/components/TableOfContentItem/TableOfContentItem.types.ts +23 -0
- package/src/components/TableOfContentItem/TableOfContentItem.variants.ts +109 -0
- package/src/components/TableOfContentItem/index.ts +2 -0
- package/src/components/TableOfContentList/TableOfContentList.tsx +60 -0
- package/src/components/TableOfContentList/TableOfContentList.types.ts +39 -0
- package/src/components/TableOfContentList/TableOfContentList.variants.ts +6 -0
- package/src/components/TableOfContentList/index.ts +2 -0
- package/src/components/Tabs/Tabs.tsx +80 -0
- package/src/components/Tabs/Tabs.types.ts +36 -0
- package/src/components/Tabs/Tabs.variants.ts +23 -0
- package/src/components/Tabs/index.ts +2 -0
- package/src/components/Tag/Tag.tsx +114 -0
- package/src/components/Tag/Tag.types.ts +32 -0
- package/src/components/Tag/Tag.variants.ts +57 -0
- package/src/components/Tag/index.ts +2 -0
- package/src/components/TagCount/TagCount.tsx +45 -0
- package/src/components/TagCount/TagCount.types.ts +21 -0
- package/src/components/TagCount/TagCount.variants.ts +26 -0
- package/src/components/TagCount/index.ts +7 -0
- package/src/components/TextArea/TextArea.tsx +130 -0
- package/src/components/TextArea/TextArea.types.ts +20 -0
- package/src/components/TextArea/index.ts +2 -0
- package/src/components/TextInput/TextInput.tsx +568 -0
- package/src/components/TextInput/TextInput.types.ts +87 -0
- package/src/components/TextInput/TextInput.variants.ts +89 -0
- package/src/components/TextInput/TextInputTag.tsx +43 -0
- package/src/components/TextInput/TextInputTag.types.ts +14 -0
- package/src/components/TextInput/index.ts +4 -0
- package/src/components/Tooltip/Tooltip.tsx +229 -0
- package/src/components/Tooltip/Tooltip.types.ts +48 -0
- package/src/components/Tooltip/Tooltip.variants.ts +141 -0
- package/src/components/Tooltip/index.ts +10 -0
- package/src/components/TreeView/TreeView.tsx +130 -0
- package/src/components/TreeView/TreeView.types.ts +42 -0
- package/src/components/TreeView/TreeView.variants.ts +6 -0
- package/src/components/TreeView/index.ts +3 -0
- package/src/components/TreeViewItem/TreeViewItem.tsx +108 -0
- package/src/components/TreeViewItem/TreeViewItem.types.ts +34 -0
- package/src/components/TreeViewItem/TreeViewItem.variants.ts +40 -0
- package/src/components/TreeViewItem/index.ts +3 -0
- package/src/components/VerticalTabs/VerticalTabs.tsx +84 -0
- package/src/components/VerticalTabs/VerticalTabs.types.ts +37 -0
- package/src/components/VerticalTabs/VerticalTabs.variants.ts +43 -0
- package/src/components/VerticalTabs/index.ts +6 -0
- package/src/components/VideoPlayer/VideoPlayer.tsx +470 -0
- package/src/components/VideoPlayer/VideoPlayer.types.ts +59 -0
- package/src/components/VideoPlayer/VideoPlayer.variants.ts +134 -0
- package/src/components/VideoPlayer/index.ts +2 -0
- package/src/components/XAxis/XAxis.tsx +67 -0
- package/src/components/XAxis/XAxis.types.ts +30 -0
- package/src/components/XAxis/XAxis.variants.ts +77 -0
- package/src/components/XAxis/index.ts +2 -0
- package/src/components/YAxis/YAxis.tsx +78 -0
- package/src/components/YAxis/YAxis.types.ts +41 -0
- package/src/components/YAxis/YAxis.variants.ts +94 -0
- package/src/components/YAxis/index.ts +2 -0
- package/src/dga-icons.ts +18 -0
- package/src/hooks/usePresence.ts +73 -0
- package/src/icons/AIIcon.tsx +34 -0
- package/src/icons/AaIcon.tsx +34 -0
- package/src/icons/AlertCircle02Icon.tsx +28 -0
- package/src/icons/AlertCircleIcon.tsx +29 -0
- package/src/icons/AlertCircleSVG.tsx +19 -0
- package/src/icons/AlertCircleWarningIcon.tsx +37 -0
- package/src/icons/AlertTriangleIcon.tsx +27 -0
- package/src/icons/AlignCenterIcon.tsx +31 -0
- package/src/icons/AlignLeftIcon.tsx +31 -0
- package/src/icons/AlignRightIcon.tsx +31 -0
- package/src/icons/ArrowDownIcon.tsx +27 -0
- package/src/icons/ArrowDownLeft01Icon.tsx +32 -0
- package/src/icons/ArrowDownSVG.tsx +16 -0
- package/src/icons/ArrowIcon.tsx +38 -0
- package/src/icons/ArrowLeft01Icon.tsx +23 -0
- package/src/icons/ArrowLeft02SVG.tsx +19 -0
- package/src/icons/ArrowLeftIcon.tsx +28 -0
- package/src/icons/ArrowRight01Icon.tsx +23 -0
- package/src/icons/ArrowRight01SVG.tsx +16 -0
- package/src/icons/ArrowRightIcon.tsx +28 -0
- package/src/icons/ArrowUpIcon.tsx +27 -0
- package/src/icons/ArrowUpRight01Icon.tsx +31 -0
- package/src/icons/ArrowUpSVG.tsx +16 -0
- package/src/icons/AtIcon.tsx +33 -0
- package/src/icons/BeakBottom.tsx +13 -0
- package/src/icons/BeakDown.tsx +29 -0
- package/src/icons/BeakLeft.tsx +13 -0
- package/src/icons/BeakRight.tsx +11 -0
- package/src/icons/BeakTop.tsx +13 -0
- package/src/icons/BeakUp.tsx +23 -0
- package/src/icons/BellCircleIcon.tsx +33 -0
- package/src/icons/BellIcon.tsx +27 -0
- package/src/icons/BoldIcon.tsx +33 -0
- package/src/icons/CalendarIcon.tsx +35 -0
- package/src/icons/ChartsIcon.tsx +25 -0
- package/src/icons/CheckCircleIcon.tsx +29 -0
- package/src/icons/ChevronDownIcon.tsx +30 -0
- package/src/icons/ChevronDownSmIcon.tsx +34 -0
- package/src/icons/ChevronLeftIcon.tsx +20 -0
- package/src/icons/ChevronRightIcon.tsx +36 -0
- package/src/icons/ClearIcon.tsx +34 -0
- package/src/icons/ClockIcon.tsx +34 -0
- package/src/icons/CloseIcon.tsx +29 -0
- package/src/icons/CloudUploadIcon.tsx +21 -0
- package/src/icons/CodeSnippetChevronDownIcon.tsx +25 -0
- package/src/icons/CodeSnippetCopyIcon.tsx +24 -0
- package/src/icons/CodeSnippetStarIcon.tsx +25 -0
- package/src/icons/ColorSquareIcon.tsx +42 -0
- package/src/icons/ComponentsIcon.tsx +25 -0
- package/src/icons/DGALogoSVG.tsx +133 -0
- package/src/icons/DeleteIcon.tsx +24 -0
- package/src/icons/DownloadIcon.tsx +29 -0
- package/src/icons/DragHandleVerticalIcon.tsx +23 -0
- package/src/icons/FeedbackEmojiDislikeIcon.tsx +20 -0
- package/src/icons/FeedbackEmojiLikeIcon.tsx +20 -0
- package/src/icons/FeedbackEmojiNeutralIcon.tsx +20 -0
- package/src/icons/FeedbackThumbDislikeFilledIcon.tsx +26 -0
- package/src/icons/FeedbackThumbDislikeIcon.tsx +20 -0
- package/src/icons/FeedbackThumbLikeFilledIcon.tsx +20 -0
- package/src/icons/FeedbackThumbLikeIcon.tsx +20 -0
- package/src/icons/FileUploadItemCloseIcon.tsx +30 -0
- package/src/icons/FileUploadItemEmptyFileIcon.tsx +27 -0
- package/src/icons/FileUploadItemPdfIcon.tsx +52 -0
- package/src/icons/FilterFunnelIcon.tsx +34 -0
- package/src/icons/FilterIcon.tsx +31 -0
- package/src/icons/FitIcon.tsx +22 -0
- package/src/icons/FolderFilledIcon.tsx +25 -0
- package/src/icons/FolderIcon.tsx +28 -0
- package/src/icons/FoundationsIcon.tsx +25 -0
- package/src/icons/FullscreenExitIcon.tsx +71 -0
- package/src/icons/FullscreenIcon.tsx +70 -0
- package/src/icons/GoBackward10Icon.tsx +27 -0
- package/src/icons/GoForward10Icon.tsx +27 -0
- package/src/icons/GridSquaresIcon.tsx +40 -0
- package/src/icons/HamburgerIcon.tsx +28 -0
- package/src/icons/HelpCircleIcon.tsx +28 -0
- package/src/icons/HomeIcon.tsx +22 -0
- package/src/icons/HomeSVG.tsx +32 -0
- package/src/icons/IconFactory.ts +157 -0
- package/src/icons/Image01SVG.tsx +18 -0
- package/src/icons/ImageIcon.tsx +31 -0
- package/src/icons/InfoCircleIcon.tsx +31 -0
- package/src/icons/InfoCircleSVG.tsx +20 -0
- package/src/icons/InfoIcon.tsx +27 -0
- package/src/icons/ItalicIcon.tsx +31 -0
- package/src/icons/LearnMoreArrowIcon.tsx +22 -0
- package/src/icons/LinkCircleSVG.tsx +58 -0
- package/src/icons/LinkIcon.tsx +33 -0
- package/src/icons/ListLinesIcon.tsx +40 -0
- package/src/icons/LockCircleSVG.tsx +60 -0
- package/src/icons/LockIcon.tsx +36 -0
- package/src/icons/Logout02Icon.tsx +19 -0
- package/src/icons/MicrophoneIcon.tsx +20 -0
- package/src/icons/MinusIcon.tsx +40 -0
- package/src/icons/MoreHorizontalIcon.tsx +24 -0
- package/src/icons/MoreVerticalIcon.tsx +40 -0
- package/src/icons/NextIcon.tsx +44 -0
- package/src/icons/PDFSvg.tsx +39 -0
- package/src/icons/PatternsIcon.tsx +21 -0
- package/src/icons/PauseIcon.tsx +30 -0
- package/src/icons/PencilIcon.tsx +36 -0
- package/src/icons/PlayButtonCardIcon.tsx +41 -0
- package/src/icons/PlayCenterIcon.tsx +45 -0
- package/src/icons/PlayIcon.tsx +27 -0
- package/src/icons/PlayIconSolid.tsx +33 -0
- package/src/icons/PlayIconStroke.tsx +22 -0
- package/src/icons/PlayIconTwotone.tsx +36 -0
- package/src/icons/PlayVideoIcon.tsx +31 -0
- package/src/icons/PlusCircleIcon.tsx +41 -0
- package/src/icons/PlusIcon.tsx +43 -0
- package/src/icons/PreviousIcon.tsx +44 -0
- package/src/icons/PrintIcon.tsx +25 -0
- package/src/icons/QuestionMarkGrayBgIcon.tsx +52 -0
- package/src/icons/QuestionMarkIcon.tsx +47 -0
- package/src/icons/RedoIcon.tsx +41 -0
- package/src/icons/SaudiFlagSVG.tsx +31 -0
- package/src/icons/SdaiaNavLogo.tsx +345 -0
- package/src/icons/SearchIcon.tsx +34 -0
- package/src/icons/SettingsIcon.tsx +25 -0
- package/src/icons/ShareIcon.tsx +26 -0
- package/src/icons/SidebarCollapseIcon.tsx +25 -0
- package/src/icons/SmileIcon.tsx +34 -0
- package/src/icons/SortIcon.tsx +20 -0
- package/src/icons/StarIcon.tsx +38 -0
- package/src/icons/StatusBadgeIcon.tsx +19 -0
- package/src/icons/TextTIcon.tsx +33 -0
- package/src/icons/Tick02Icon.tsx +32 -0
- package/src/icons/TickIcon.tsx +33 -0
- package/src/icons/TrashIcon.tsx +44 -0
- package/src/icons/UnderlineIcon.tsx +31 -0
- package/src/icons/UndoIcon.tsx +31 -0
- package/src/icons/UploadArrowIcon.tsx +40 -0
- package/src/icons/UserIcon.tsx +21 -0
- package/src/icons/VolumeHighIcon.tsx +27 -0
- package/src/icons/VolumeMuteIcon.tsx +53 -0
- package/src/icons/XCircleIcon.tsx +32 -0
- package/src/icons/XIcon.tsx +27 -0
- package/src/icons/XIconSVG.tsx +16 -0
- package/src/icons/XSmallIcon.tsx +29 -0
- package/src/icons/XSvg.tsx +18 -0
- package/src/icons/ZoomInIcon.tsx +25 -0
- package/src/icons/index.ts +5 -0
- package/src/index.ts +699 -0
- package/src/lib/cn.ts +42 -0
- package/src/styles/motion.css +120 -0
- package/src/styles.css +242 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
const SaudiFlagSVG = (props: React.SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
viewBox="0 0 20 14"
|
|
6
|
+
fill="none"
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<g clipPath="url(#saudi-flag-clip)">
|
|
10
|
+
<path fill="#fff" d="M0 0h20v14H0z" />
|
|
11
|
+
<path fill="#006923" d="M0 0h20v14H0z" />
|
|
12
|
+
<path
|
|
13
|
+
fill="#fff"
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
d="M8.138 3a.144.144 0 0 0-.068.025c-.068.046-.203.188-.208.35-.004.093-.022.093.038.153.043.061.089.056.175.01a.188.188 0 0 0 .086-.123c.02-.102-.111.05-.128-.066-.029-.107.055-.153.134-.255.003-.05.003-.089-.03-.091V3Zm1.276.006c-.025.005-.054.039-.096.112-.03.08-.158.199-.064.446.074.156.106.41.071.694-.053.08-.063.108-.133.188-.097.106-.204.079-.283.038-.076-.05-.135-.076-.17-.237.007-.254.022-.677-.025-.766-.068-.137-.183-.089-.231-.047-.233.216-.35.577-.42.866-.064.208-.134.147-.182.063-.119-.112-.128-.98-.27-.836-.23.654.13 1.37.382 1.3.178.077.292-.267.366-.642.051-.106.09-.118.115-.064-.007.5.038.611.165.761a.415.415 0 0 0 .541.01l.223-.22c.05-.052.114-.057.184-.011.07.064.06.17.204.242.125.05.386.013.446-.093.082-.14.101-.188.14-.242.058-.076.159-.042.159-.018-.01.045-.068.09-.028.166.07.05.086.018.127.006.145-.069.255-.384.255-.384.006-.117-.06-.108-.102-.084-.058.034-.06.046-.115.08-.072.01-.21.057-.277-.048-.07-.128-.07-.303-.124-.433 0-.008-.093-.2-.007-.212.042.008.136.032.15-.045.046-.077-.098-.293-.196-.4-.084-.093-.201-.104-.315-.01-.08.074-.067.155-.084.233-.019.089-.015.2.077.318.079.155.223.356.174.639 0 0-.083.135-.229.117-.064-.013-.163-.038-.216-.433-.039-.296.01-.713-.115-.907-.03-.073-.053-.144-.094-.14l-.003-.007Zm-.404.033c-.039.004-.08.049-.115.134-.03.066-.066.407-.06.407-.025.102.106.146.166.016.089-.242.089-.344.094-.443-.013-.077-.047-.116-.085-.114Zm1.493.026c-.039.005-.07.028-.082.086a.868.868 0 0 0 .016.324c.016.076.127.2.18.275.259.347.51.696.749 1.056.038.27.063.532.082.794.041.573.051 1.286.017 1.89.107.004.28-.174.34-.432.038-.362-.013-1.095-.018-1.309l-.013-.303c.28.459.55.942.815 1.472.098-.046.076-.592.02-.668-.214-.459-.509-.912-.602-1.086a8.835 8.835 0 0 0-.286-.44 6.614 6.614 0 0 0-.072-.609c-.044-.305.125.034.102-.143-.056-.305-.224-.511-.422-.791-.064-.09-.064-.11-.162.023a.578.578 0 0 0-.038.35 2.977 2.977 0 0 0-.106-.138l-.324-.275c-.045-.032-.131-.08-.196-.076Zm4.424.047c-.02-.003-.038.006-.064.04a.263.263 0 0 0-.089.204c.01.16.038.324.049.484l.012.064c-.018-.02-.033-.038-.042-.046-.314-.331.144-.056-.06-.31-.173-.19-.224-.249-.37-.363-.076-.046-.12-.138-.144.017-.01.137-.02.296-.012.41 0 .064.067.185.124.255.209.258.423.532.637.817.046.582.057 1.115.101 1.698-.005.25-.08.58-.152.61 0 0-.112.064-.186-.006-.055-.021-.27-.36-.27-.36-.11-.102-.184-.072-.262 0-.216.209-.316.601-.462.87-.038.06-.144.113-.262-.004-.302-.413-.128-1-.163-.848-.268.303-.15.805-.09.913.09.178.161.292.332.378.159.114.28.044.348-.038.158-.163.16-.582.235-.665.05-.153.182-.127.245-.058.064.089.135.146.226.194.147.13.323.153.496.035.118-.066.196-.153.265-.324.076-.198.038-1.242.021-1.822l.331.478c.046.51.068 1.012.051 1.493-.01.096.335-.285.331-.466 0-.156.003-.3 0-.432.17.267.331.538.484.814.095-.05.063-.589.004-.662-.16-.27-.367-.56-.526-.786a14.1 14.1 0 0 0-.094-.722c-.03-.16-.06-.4-.106-.59-.013-.073-.05-.31-.038-.331.018-.055.089 0 .123-.061.051-.058-.18-.662-.299-.833-.042-.076-.12-.05-.214.076-.089.082-.056.27-.022.45.086.458.165.921.226 1.387a34.54 34.54 0 0 0-.392-.575l-.018-.09c0-.01-.018-.375-.034-.461-.004-.036-.013-.046.025-.041.039.033.043.034.068.046.04.005.076-.061.05-.124l-.368-.68c-.013-.016-.031-.031-.051-.034l.006-.001ZM3.51 3.125c-.07-.003-.144.038-.115.12-.018.045.133.195.16.278.021.06-.026.248.025.267.044.02.107-.132.13-.27.012-.077.003-.34-.175-.393l-.028-.004.003.002Zm13.008 0c-.017.002-.036.025-.064.089-.07.114-.094.318-.066.496.166 1.133.293 2.23.318 3.233-.015.097-.02.148-.063.267-.1.128-.209.286-.312.362-.102.076-.32.15-.392.206-.23.13-.23.28-.046.287.316-.039.69-.064.947-.452.069-.108.15-.404.153-.586.025-1.056-.013-2.094-.172-2.859-.01-.076-.043-.245-.03-.267.018-.053.122.004.159-.056.054-.056-.268-.467-.38-.643-.023-.043-.038-.08-.056-.076l.004-.001Zm-3.313.018c-.013.002-.03.022-.066.07-.09.287-.12.521-.086.702.23 1.184.459 2.26.423 3.386.107 0 .232-.246.285-.49.03-.337-.02-.542-.028-.738-.009-.199-.224-1.803-.267-1.952-.054-.282.209-.038.18-.2-.091-.21-.318-.51-.386-.692-.026-.048-.031-.093-.051-.089l-.004.003Zm-8.062.022a.087.087 0 0 0-.064.064c-.006.026.01.068-.013.08-.012.013-.06.004-.058-.063 0-.023-.017-.046-.026-.06-.01-.005-.016-.007-.034-.007-.022 0-.022.007-.033.026-.005.018-.013.036-.013.056-.002.025-.012.032-.029.036-.02 0-.017.002-.032-.01-.013-.008-.023-.012-.023-.03 0-.019-.005-.05-.01-.061-.009-.013-.023-.018-.038-.022-.084 0-.09.1-.085.135-.007.008-.01.178.105.227.153.074.443.042.433-.206 0-.022-.006-.096-.009-.115-.015-.038-.044-.05-.072-.047v-.003Zm2.07.003a.334.334 0 0 0-.14.038c-.102.098-.128.255-.046.353.076.038.156.114.104.159-.222.235-.798.631-.827.704v.007h.005v.003c.029.019.39.019.43 0h.002c.125-.047.713-.72.713-.72-.03-.025-.058-.045-.089-.072-.033-.028-.03-.056 0-.084.145-.084.1-.27.023-.356a.369.369 0 0 0-.176-.035v.003Zm5.409 0c-.015.004-.034.025-.064.09a.973.973 0 0 0-.11.496c.15 1.043.195 1.956.295 3 .008.101-.008.246-.074.305-.25.26-.607.578-.997.726-.042.047.105.246.293.246.316-.038.593-.213.853-.68.067-.109.188-.342.19-.522.026-1.06-.05-1.884-.21-2.648a.45.45 0 0 1 .01-.186c.02-.025.089 0 .127-.06.053-.055-.145-.512-.257-.687-.023-.044-.036-.081-.056-.08Zm-8.38.034c-.044.005-.084.039-.105.09-.006.165-.007.33.013.486.076.27.098.509.135.785.013.372-.214.16-.204-.023.051-.24.038-.615-.007-.71-.039-.096-.08-.118-.168-.102-.07-.005-.252.191-.303.522 0 0-.044.168-.061.318-.026.17-.138.29-.217-.023-.067-.229-.108-.789-.221-.66-.033.439-.072 1.21.3 1.289.45.043.201-.761.364-.908.032-.07.09-.07.093.02v.683c-.005.222.14.288.255.334.118-.01.196-.006.241.109l.058 1.184s.272.076.285-.666c.013-.437-.09-.802-.03-.887.003-.084.11-.09.184-.047.118.083.17.184.354.144.28-.077.445-.212.449-.426a1.75 1.75 0 0 0-.127-.61c.012-.036-.051-.132-.038-.168.048.076.124.07.14 0-.046-.157-.12-.306-.24-.37-.098-.089-.242-.07-.295.111-.025.209.076.456.23.658.03.08.075.21.055.329-.08.045-.16.025-.229-.045 0 0-.22-.165-.22-.204.06-.375.013-.42-.02-.521-.022-.146-.091-.191-.146-.29-.056-.06-.13-.06-.165 0-.1.169-.054.534.018.696.05.15.13.244.093.244-.031.083-.095.064-.14-.034a2.517 2.517 0 0 1-.08-.64c-.018-.169-.04-.529-.152-.62-.03-.041-.064-.055-.098-.051l-.001.003Zm1.58 0c-.021.005-.047.018-.076.026-.095.03-.184.112-.156.272.114.688.187 1.213.3 1.9.016.082-.051.188-.138.179-.147-.102-.184-.306-.436-.296-.183 0-.392.202-.418.392a.962.962 0 0 0 0 .451c.128.153.283.138.418.102.11-.045.204-.153.242-.127.025.042-.003.4-.522.674-.32.145-.575.178-.713-.081-.084-.163.008-.784-.201-.642-.619 1.594 1.447 1.815 1.678.066.015-.05.06-.099.092-.086.013.006.026.025.031.061-.048 1.583-1.599 1.693-1.86 1.194-.067-.117-.086-.38-.092-.535-.013-.095-.036-.15-.064-.172-.064-.047-.148.077-.166.29-.025.171-.019.218-.019.384.084 1.25 2.079.713 2.403-.318.16-.535-.003-.939.051-.988l.004-.003h.004l.006-.002c.199.214.476.025.537-.047.026-.039.092-.064.138-.013.153.11.425.057.481-.14.033-.191.061-.387.068-.592-.102.032-.184.055-.217.09a.072.072 0 0 0-.015.028l-.026.17c0 .006-.002.01-.005.012-.004.01-.012.016-.018.02-.035.019-.098.008-.101-.044-.047-.216-.245-.244-.364.093-.08.064-.23.077-.242-.02.019-.227-.073-.257-.255-.15l-.175-1.324c.076-.004.145.05.216-.036-.076-.234-.236-.71-.326-.756h-.002l-.013-.013c0-.002-.004-.003-.007-.005L5.86 3.21a.03.03 0 0 1-.012-.004c-.01-.003-.016-.003-.025-.003Zm6.163.005c-.078-.002-.165.048-.132.147-.02.055.17.238.2.337.055.153-.042.302.015.323.054.023.127-.159.153-.328.033-.137-.064-.417-.204-.475l-.031-.002v-.002Zm-4.802.167c.036-.002.08.03.102.077.022.05.01.098-.026.107-.038.008-.086-.023-.109-.074-.023-.051-.013-.098.025-.107h.008v-.003Zm8.906.232c-.072-.003-.153.05-.12.159-.017.059.153.257.182.367.026.076-.038.325.013.348.048.026.115-.173.14-.356.015-.102-.058-.452-.184-.514a.109.109 0 0 0-.03-.005Zm-4.926.122c.01.03.015.059.02.09.015.063.027.126.04.193a2.263 2.263 0 0 0-.123-.166c-.128-.153.002-.1.063-.117Zm1.137.558c-.028.005-.055.029-.064.067-.007.023.01.064-.013.076-.012.013-.063.005-.06-.063 0-.023-.016-.047-.025-.06-.01-.006-.016-.009-.034-.009-.022 0-.022.006-.033.025-.005.018-.013.036-.013.058 0 .025-.01.033-.028.038-.02 0-.016 0-.033-.009-.01-.013-.022-.015-.022-.033a.174.174 0 0 0-.01-.061c-.009-.013-.021-.017-.038-.022-.083 0-.09.097-.084.133-.005.007-.009.18.106.229.155.072.445.038.432-.21 0-.02-.006-.095-.007-.114-.017-.038-.046-.05-.073-.047l-.001.002Zm-5.18.05a.141.141 0 0 0-.073.023c-.136.074-.188.293-.102.42.076.115.204.073.22.073.134.018.213-.25.213-.25s.004-.076-.153.067c-.069.012-.076-.013-.094-.051a.317.317 0 0 1 .019-.208c.015-.042 0-.068-.03-.071v-.003Zm7.322.035c-.076-.004-.156.046-.178.149 0 .06.028.094.023.15-.007.032-.038.05-.117.015.012-.013-.051-.1-.051-.1-.06-.037-.14 0-.194.037a.295.295 0 0 0-.018.235c.087.162.386.437.529.44.002-.146.016-.34.025-.459.003-.046.013-.096.057-.107.044-.013.119.043.119-.004-.008-.091-.026-.229-.077-.293a.158.158 0 0 0-.117-.063h-.001Zm-6.062.505-.004.004s-.003 0-.004.003c-.015.012-.033.038-.073.063-.067.077-.079.131-.076.284.005.017.127.36.233.6.071.252.136.54.09.81a1.995 1.995 0 0 1-.82.857c-.165.05-.305.033-.343-.003a.21.21 0 0 1-.09-.196v-.003c.27-.189.58-.342.822-.85.071-.194.094-.311.023-.61a.59.59 0 0 0-.14-.286H8c.046-.021.166.067.185.013a.916.916 0 0 0-.236-.436c-.096-.09-.203-.098-.29-.018-.1.056-.12.254-.072.427.053.13.197.153.299.417.002.017.034.197-.017.27-.043.13-.579.553-.617.579l-.004.002-.003.003H7.24v-.004c-.002-.01 0-.038 0-.08-.003-.08.03-.259.026-.29v-.003c-.178.115-.238.465-.27.569-.45.31-.958.54-1.252.853-.153.242 1.053-.273 1.193-.335l.004.004c.028.03.03.13.11.224a.64.64 0 0 0 .651.209c.436-.157.688-.454.942-.783.036-.051.093-.094.147-.054.174.392.68.672 1.334.7.152-.183.08-.273.019-.311-.02-.013-.325-.133-.373-.251-.03-.11.043-.208.188-.28.42-.051.833-.108 1.232-.237.004-.135.083-.335.136-.423.039-.06.06-.066.07-.073v-.003h.002v-.016l-.069-.041-1.34-.005a.128.128 0 0 1-.036-.02l-.002-.003s-.003 0-.003-.003c0-.002-.003-.002-.003-.002V6.14l.003-.003a.142.142 0 0 1 .042-.026c.32-.042.888-.135.927-.68-.007-.286-.123-.472-.471-.523-.257.02-.44.268-.411.54-.013.072.025.216-.051.233-.492.046-1.029.354-1.047.575h-.007c0 .003-.004.003-.004.003H8.914c-.032-.01-.072-.064-.066-.136a2.65 2.65 0 0 0-.337-1.146c-.07-.07-.102-.098-.12-.102H8.38Zm1.283.201a.086.086 0 0 0-.064.066c-.006.026.013.067-.01.08-.013.012-.064.004-.061-.064 0-.022-.017-.046-.026-.06-.01-.006-.016-.008-.033-.008-.022 0-.023.005-.034.023a.178.178 0 0 0-.013.057c-.003.026-.013.034-.03.036-.02 0-.015.004-.031-.006-.01-.01-.023-.016-.023-.033 0-.02-.004-.051-.009-.064-.009-.009-.023-.013-.038-.018-.085 0-.09.096-.085.133-.007.006-.01.178.104.226.153.074.522.03.433-.207 0-.022-.007-.096-.008-.115-.016-.038-.046-.05-.074-.047l.002.001Zm5.174.213h-.013s-.715.509-.732.527c-.071.063-.036.284 0 .258.05.02.77-.468.756-.526.032.003.047-.25-.013-.26h.002Zm-4.498.076a.183.183 0 0 1 .101.026c.055.033.09.079.083.114v.005c-.002 0-.002 0-.002.003v.002s-.003 0-.003.003c0 .002-.004.005-.006.008-.026.025-.084.02-.14-.013-.054-.03-.086-.077-.083-.11v-.003l.006-.013s0-.003.003-.004l.006-.008a.06.06 0 0 1 .034-.012v.002Zm-6.26.127c-.37.008-.913.487-.927.751l1.171-.56c-.064-.096-.004-.183-.244-.19Zm1.2.166c.036.002.074.02.094.071a.122.122 0 0 1-.021.12v.004c-.018.02-.072.012-.111.012-.047-.002-.07-.01-.098-.048-.015-.045.025-.087.044-.117l.01-.013a.112.112 0 0 1 .063-.025l.016-.003.003-.001Zm9.419.149c-.068.007-.13.07-.102.17-.018.058.09.263.118.37.026.077-.033.297.02.319.048.025.174-.127.17-.323.013-.102-.036-.471-.162-.532-.015-.004-.029-.005-.044-.004Zm-7.999.361c-.058.004-.11.035-.086.117-.004.059.165.132.174.268.023.058-.038.242.013.257.046.019.11-.127.134-.26.012-.074-.059-.33-.179-.378-.019-.005-.038-.006-.057-.005l.001.001Zm2.393.326h.016c.15.04.369.046.56.064.156.013.233.132.089.184-.145.049-.284.09-.284.296.018.101.013.155-.003.178 0 .004-.005.007-.005.007s0 .003-.002.003v.003h-.004l-.009.003h-.006c-.035.007-.084-.025-.121-.045-.09-.064-.338-.217-.373-.548-.005-.076.05-.14.14-.146l.002.001Zm-5.847.255c-.009 0-.025.028-.05.06-.222.35-.243.873-.12 1.03.063.073.17.106.249.083.14-.06.2-.34.165-.443-.044-.072-.081-.084-.127-.023-.098.198-.14.062-.146-.05a2.5 2.5 0 0 1 .028-.554c.012-.077.012-.106 0-.106l.001.003Zm7.506.46a.098.098 0 0 0-.051.013.879.879 0 0 0-.207.176c-.031.023-.026.042-.018.083.023.054.063.038.112.012.063-.01.093.032.089.107-.03.096.012.13.012.136 0 .006.06.058.132.017.149-.057.241-.115.451-.16.055 0 .051-.147-.035-.152-.115.005-.217.013-.331.102-.07.015-.082-.028-.098-.066-.018-.094.04-.16.028-.232.002.004-.036-.03-.085-.033V7.21Zm4.806.179-.102.01c-.046.009-.06.03-.07.085.004.083.055.08.108.112.03.038.051.074-.002.14-.051.045-.085.07-.136.115-.022.04-.039.102.035.122.134.038.443-.163.443-.166.051-.038.033-.11.03-.11-.031-.033-.097-.013-.14-.02-.022 0-.09-.01-.06-.07a.409.409 0 0 0 .058-.108c.02-.045 0-.076-.074-.101a.361.361 0 0 0-.092-.01h.002Z"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
fill="#fff"
|
|
20
|
+
d="M15.515 9.874h-1.308V9.62c0-.14-.084-.253-.187-.253-.104 0-.187.113-.187.253v.254h-9.91c.374.506 1.122.76 1.683.76h8.227v.505c0 .14.083.254.187.254h1.495c.31 0 .561-.341.561-.76s-.251-.76-.56-.76Zm0 1.012h-1.308v-.253h1.495l-.033-.136c.02.04.033.085.033.136 0 .14-.084.253-.187.253Z"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
<defs>
|
|
24
|
+
<clipPath id="saudi-flag-clip">
|
|
25
|
+
<path fill="#fff" d="M0 0h20v14H0z" />
|
|
26
|
+
</clipPath>
|
|
27
|
+
</defs>
|
|
28
|
+
</svg>
|
|
29
|
+
)
|
|
30
|
+
export default SaudiFlagSVG
|
|
31
|
+
|
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
import { useId } from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
export function SdaiaNavLogo(props: SVGProps<SVGSVGElement>) {
|
|
5
|
+
const uid = useId().replace(/:/g, '');
|
|
6
|
+
const clip = `clip_${uid}`;
|
|
7
|
+
const g = (n: number) => `grad_${n}_${uid}`;
|
|
8
|
+
|
|
9
|
+
return (
|
|
10
|
+
<svg width="59" height="64" viewBox="0 0 59 64" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
11
|
+
<g clipPath={`url(#${clip})`}>
|
|
12
|
+
<path d="M29.2706 21.6914L19.9731 27.0965V37.9052L29.2706 43.3111L38.5665 37.9084V27.0965L29.2706 21.6914Z" fill="#33CC99"/>
|
|
13
|
+
<path d="M58.0394 17.0977V23.5828L52.46 20.3411L58.0394 17.0977Z" fill={`url(#${g(0)})`}/>
|
|
14
|
+
<path d="M57.7583 40.0664V46.55L52.1797 43.3082L57.7583 40.0664Z" fill={`url(#${g(1)})`}/>
|
|
15
|
+
<path d="M55.3072 37.9058L49.7285 41.1492V34.6641L55.3072 37.9058Z" fill={`url(#${g(2)})`}/>
|
|
16
|
+
<path d="M58.793 28.9219V35.4071L53.2144 32.1653L58.793 28.9219Z" fill={`url(#${g(3)})`}/>
|
|
17
|
+
<path d="M46.0088 46.4805V52.9656L40.4302 49.7239L46.0088 46.4805Z" fill={`url(#${g(4)})`}/>
|
|
18
|
+
<path d="M46.9373 42.225L39.498 37.9032L46.9373 33.5781V42.225Z" fill={`url(#${g(5)})`}/>
|
|
19
|
+
<path d="M46.9378 43.3101L39.4985 47.6352V38.9883L46.9378 43.3101Z" fill={`url(#${g(6)})`}/>
|
|
20
|
+
<path d="M46.9357 32.5015L39.498 36.8233V28.1797L46.9357 32.5015Z" fill={`url(#${g(7)})`}/>
|
|
21
|
+
<path d="M47.5105 57.4918L41.9326 60.7352V54.25L47.5105 57.4918Z" fill={`url(#${g(8)})`}/>
|
|
22
|
+
<path d="M38.5664 37.9048L29.2705 32.4989L38.5664 27.0938V37.9048Z" fill={`url(#${g(9)})`}/>
|
|
23
|
+
<path d="M37.6379 49.939L30.2002 54.2608V45.6172L37.6379 49.939Z" fill={`url(#${g(10)})`}/>
|
|
24
|
+
<path d="M36.7082 60.5325L31.1304 63.7742V57.2891L36.7082 60.5325Z" fill={`url(#${g(11)})`}/>
|
|
25
|
+
<path d="M56.8672 50.5074L51.2886 53.7508V47.2656L56.8672 50.5074Z" fill={`url(#${g(12)})`}/>
|
|
26
|
+
<path d="M55.3072 27.0972L49.7285 30.3406V23.8555L55.3072 27.0972Z" fill={`url(#${g(13)})`}/>
|
|
27
|
+
<path d="M46.9373 22.7734V31.4203L39.498 27.0952L46.9373 22.7734Z" fill={`url(#${g(14)})`}/>
|
|
28
|
+
<path d="M36.7105 51.4219V57.9071L31.1318 54.6636L36.7105 51.4219Z" fill={`url(#${g(15)})`}/>
|
|
29
|
+
<path d="M37.6371 48.8578L30.2002 44.536L37.6371 40.2109V48.8578Z" fill={`url(#${g(16)})`}/>
|
|
30
|
+
<path d="M29.2705 32.5L38.5664 37.9059L29.2705 43.3086V32.5Z" fill={`url(#${g(17)})`}/>
|
|
31
|
+
<path d="M56.3096 13.9254L50.731 17.1671V10.6836L56.3096 13.9254Z" fill={`url(#${g(18)})`}/>
|
|
32
|
+
<path d="M47.1711 4.46442L41.5908 7.70783V1.22266L47.1711 4.46442Z" fill={`url(#${g(19)})`}/>
|
|
33
|
+
<path d="M46.939 21.6906L39.498 26.0124V17.3672L46.939 21.6906Z" fill={`url(#${g(20)})`}/>
|
|
34
|
+
<path d="M36.709 11.8914L31.1304 8.64966L36.709 5.40625V11.8914Z" fill={`url(#${g(21)})`}/>
|
|
35
|
+
<path d="M37.6379 16.1445V24.7906L30.2002 20.4688L37.6379 16.1445Z" fill={`url(#${g(22)})`}/>
|
|
36
|
+
<path d="M29.2706 21.6914V32.5L19.9731 27.0965L29.2706 21.6914Z" fill={`url(#${g(23)})`}/>
|
|
37
|
+
<path d="M28.3415 19.3852L20.9038 15.0634L28.3415 10.7383V19.3852Z" fill={`url(#${g(24)})`}/>
|
|
38
|
+
<path d="M27.41 6.48518L21.8306 3.24341L27.41 0V6.48518Z" fill={`url(#${g(25)})`}/>
|
|
39
|
+
<path d="M19.0441 26.0133L11.6064 21.6882L19.0441 17.3672V26.0133Z" fill={`url(#${g(26)})`}/>
|
|
40
|
+
<path d="M16.0479 4.9375V11.4227L10.4692 8.18091L16.0479 4.9375Z" fill={`url(#${g(27)})`}/>
|
|
41
|
+
<path d="M46.0061 18.5181L40.4258 15.2747L46.0061 12.0312V18.5181Z" fill={`url(#${g(28)})`}/>
|
|
42
|
+
<path d="M36.709 3.24341L31.1304 6.48518V0L36.709 3.24341Z" fill={`url(#${g(29)})`}/>
|
|
43
|
+
<path d="M37.6384 15.0568L30.2007 19.3786V10.7383L37.6384 15.0568Z" fill={`url(#${g(30)})`}/>
|
|
44
|
+
<path d="M38.5664 27.0949L29.2705 32.5V21.6914L38.5664 27.0949Z" fill={`url(#${g(31)})`}/>
|
|
45
|
+
<path d="M27.4123 10.4761L21.832 13.7195V7.23438L27.4123 10.4761Z" fill={`url(#${g(32)})`}/>
|
|
46
|
+
<path d="M28.341 20.4688L20.9033 24.7906V16.1445L28.341 20.4688Z" fill={`url(#${g(33)})`}/>
|
|
47
|
+
<path d="M18.1107 15.2769L12.5312 18.5187V12.0352L18.1107 15.2769Z" fill={`url(#${g(34)})`}/>
|
|
48
|
+
<path d="M6.13659 20.1414L0.557129 16.8997L6.13659 13.6562V20.1414Z" fill={`url(#${g(35)})`}/>
|
|
49
|
+
<path d="M27.4108 63.7742L21.8306 60.5325L27.4108 57.2891V63.7742Z" fill={`url(#${g(36)})`}/>
|
|
50
|
+
<path d="M29.2706 32.5V43.3086L19.9731 37.9027L29.2706 32.5Z" fill={`url(#${g(37)})`}/>
|
|
51
|
+
<path d="M18.1107 54.5859V61.0711L12.5312 57.8285L18.1107 54.5859Z" fill={`url(#${g(38)})`}/>
|
|
52
|
+
<path d="M19.0441 37.9071L11.6064 42.2289V33.582L19.0441 37.9071Z" fill={`url(#${g(39)})`}/>
|
|
53
|
+
<path d="M19.0441 27.0985L11.6064 31.4236V22.7734L19.0441 27.0985Z" fill={`url(#${g(40)})`}/>
|
|
54
|
+
<path d="M7.80977 48.5664V55.0499L2.22949 51.8082L7.80977 48.5664Z" fill={`url(#${g(41)})`}/>
|
|
55
|
+
<path d="M8.8127 23.6289V30.1141L3.23242 26.8723L8.8127 23.6289Z" fill={`url(#${g(42)})`}/>
|
|
56
|
+
<path d="M5.58028 32.7808L0 36.0226V29.5391L5.58028 32.7808Z" fill={`url(#${g(43)})`}/>
|
|
57
|
+
<path d="M28.3392 54.2641L20.8999 49.9423L28.3392 45.6172V54.2641Z" fill={`url(#${g(44)})`}/>
|
|
58
|
+
<path d="M29.2706 32.4997L19.9731 37.9024V27.0938L29.2706 32.4997Z" fill={`url(#${g(45)})`}/>
|
|
59
|
+
<path d="M27.4099 55.1285L21.8296 58.3719V51.8867L27.4099 55.1285Z" fill={`url(#${g(46)})`}/>
|
|
60
|
+
<path d="M28.3377 44.5337L20.9009 48.8588V40.207L28.3377 44.5337Z" fill={`url(#${g(47)})`}/>
|
|
61
|
+
<path d="M18.1099 49.7222L12.5312 52.964V46.4805L18.1099 49.7222Z" fill={`url(#${g(48)})`}/>
|
|
62
|
+
<path d="M19.0441 38.9883V47.6327L11.6064 43.3109L19.0441 38.9883Z" fill={`url(#${g(49)})`}/>
|
|
63
|
+
<path d="M19.0441 28.1758V36.8202L11.6064 32.5009L19.0441 28.1758Z" fill={`url(#${g(50)})`}/>
|
|
64
|
+
<path d="M8.81173 41.1492L3.23145 37.9058L8.81173 34.6641V41.1492Z" fill={`url(#${g(51)})`}/>
|
|
65
|
+
<path d="M5.80279 21.6926L0.224121 24.9344V18.4492L5.80279 21.6926Z" fill={`url(#${g(52)})`}/>
|
|
66
|
+
<path d="M6.13643 43.7029L0.556152 46.9447V40.457L6.13643 43.7029Z" fill={`url(#${g(53)})`}/>
|
|
67
|
+
</g>
|
|
68
|
+
<defs>
|
|
69
|
+
<linearGradient id={g(0)} x1="41.7976" y1="11.6436" x2="70.4159" y2="22.9838" gradientUnits="userSpaceOnUse">
|
|
70
|
+
<stop stopColor="#99D633"/>
|
|
71
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
72
|
+
<stop offset="1" stopColor="#273470"/>
|
|
73
|
+
</linearGradient>
|
|
74
|
+
<linearGradient id={g(1)} x1="32.2695" y1="29.6603" x2="60.8892" y2="41.0049" gradientUnits="userSpaceOnUse">
|
|
75
|
+
<stop stopColor="#99D633"/>
|
|
76
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
77
|
+
<stop offset="1" stopColor="#273470"/>
|
|
78
|
+
</linearGradient>
|
|
79
|
+
<linearGradient id={g(2)} x1="32.7304" y1="28.8015" x2="61.3466" y2="40.1442" gradientUnits="userSpaceOnUse">
|
|
80
|
+
<stop stopColor="#99D633"/>
|
|
81
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
82
|
+
<stop offset="1" stopColor="#273470"/>
|
|
83
|
+
</linearGradient>
|
|
84
|
+
<linearGradient id={g(3)} x1="37.092" y1="20.543" x2="65.7137" y2="31.8857" gradientUnits="userSpaceOnUse">
|
|
85
|
+
<stop stopColor="#99D633"/>
|
|
86
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
87
|
+
<stop offset="1" stopColor="#273470"/>
|
|
88
|
+
</linearGradient>
|
|
89
|
+
<linearGradient id={g(4)} x1="27.0414" y1="39.5673" x2="55.6621" y2="50.9044" gradientUnits="userSpaceOnUse">
|
|
90
|
+
<stop stopColor="#99D633"/>
|
|
91
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
92
|
+
<stop offset="1" stopColor="#273470"/>
|
|
93
|
+
</linearGradient>
|
|
94
|
+
<linearGradient id={g(5)} x1="32.1183" y1="29.9637" x2="60.7291" y2="41.3024" gradientUnits="userSpaceOnUse">
|
|
95
|
+
<stop stopColor="#99D633"/>
|
|
96
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
97
|
+
<stop offset="1" stopColor="#273470"/>
|
|
98
|
+
</linearGradient>
|
|
99
|
+
<linearGradient id={g(6)} x1="28.2503" y1="37.2848" x2="56.8625" y2="48.6307" gradientUnits="userSpaceOnUse">
|
|
100
|
+
<stop stopColor="#99D633"/>
|
|
101
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
102
|
+
<stop offset="1" stopColor="#273470"/>
|
|
103
|
+
</linearGradient>
|
|
104
|
+
<linearGradient id={g(7)} x1="32.7" y1="28.8625" x2="61.3119" y2="40.207" gradientUnits="userSpaceOnUse">
|
|
105
|
+
<stop stopColor="#99D633"/>
|
|
106
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
107
|
+
<stop offset="1" stopColor="#273470"/>
|
|
108
|
+
</linearGradient>
|
|
109
|
+
<linearGradient id={g(8)} x1="22.94" y1="47.3238" x2="51.5631" y2="58.658" gradientUnits="userSpaceOnUse">
|
|
110
|
+
<stop stopColor="#99D633"/>
|
|
111
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
112
|
+
<stop offset="1" stopColor="#273470"/>
|
|
113
|
+
</linearGradient>
|
|
114
|
+
<linearGradient id={g(9)} x1="32.4962" y1="29.2452" x2="61.1126" y2="40.5765" gradientUnits="userSpaceOnUse">
|
|
115
|
+
<stop stopColor="#99D633"/>
|
|
116
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
117
|
+
<stop offset="1" stopColor="#273470"/>
|
|
118
|
+
</linearGradient>
|
|
119
|
+
<linearGradient id={g(10)} x1="23.4691" y1="46.3346" x2="52.081" y2="57.6791" gradientUnits="userSpaceOnUse">
|
|
120
|
+
<stop stopColor="#99D633"/>
|
|
121
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
122
|
+
<stop offset="1" stopColor="#273470"/>
|
|
123
|
+
</linearGradient>
|
|
124
|
+
<linearGradient id={g(11)} x1="19.3109" y1="54.2021" x2="47.9286" y2="65.5365" gradientUnits="userSpaceOnUse">
|
|
125
|
+
<stop stopColor="#99D633"/>
|
|
126
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
127
|
+
<stop offset="1" stopColor="#273470"/>
|
|
128
|
+
</linearGradient>
|
|
129
|
+
<linearGradient id={g(12)} x1="19.8027" y1="27.8231" x2="56.5939" y2="47.1271" gradientUnits="userSpaceOnUse">
|
|
130
|
+
<stop stopColor="#99D633"/>
|
|
131
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
132
|
+
<stop offset="1" stopColor="#273470"/>
|
|
133
|
+
</linearGradient>
|
|
134
|
+
<linearGradient id={g(13)} x1="30.2312" y1="12.915" x2="67.0288" y2="32.2243" gradientUnits="userSpaceOnUse">
|
|
135
|
+
<stop stopColor="#99D633"/>
|
|
136
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
137
|
+
<stop offset="1" stopColor="#273470"/>
|
|
138
|
+
</linearGradient>
|
|
139
|
+
<linearGradient id={g(14)} x1="28.9194" y1="14.7924" x2="65.7112" y2="34.1068" gradientUnits="userSpaceOnUse">
|
|
140
|
+
<stop stopColor="#99D633"/>
|
|
141
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
142
|
+
<stop offset="1" stopColor="#273470"/>
|
|
143
|
+
</linearGradient>
|
|
144
|
+
<linearGradient id={g(15)} x1="12.6888" y1="37.9846" x2="49.4865" y2="57.2941" gradientUnits="userSpaceOnUse">
|
|
145
|
+
<stop stopColor="#99D633"/>
|
|
146
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
147
|
+
<stop offset="1" stopColor="#273470"/>
|
|
148
|
+
</linearGradient>
|
|
149
|
+
<linearGradient id={g(16)} x1="17.684" y1="30.8636" x2="54.4675" y2="50.1605" gradientUnits="userSpaceOnUse">
|
|
150
|
+
<stop stopColor="#99D633"/>
|
|
151
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
152
|
+
<stop offset="1" stopColor="#273470"/>
|
|
153
|
+
</linearGradient>
|
|
154
|
+
<linearGradient id={g(17)} x1="18.5059" y1="29.6789" x2="55.3029" y2="48.982" gradientUnits="userSpaceOnUse">
|
|
155
|
+
<stop stopColor="#99D633"/>
|
|
156
|
+
<stop offset="0.5" stopColor="#33CC99"/>
|
|
157
|
+
<stop offset="1" stopColor="#273470"/>
|
|
158
|
+
</linearGradient>
|
|
159
|
+
<linearGradient id={g(18)} x1="52.187" y1="33.765" x2="54.9173" y2="1.21845" gradientUnits="userSpaceOnUse">
|
|
160
|
+
<stop stopColor="#66CCFF"/>
|
|
161
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
162
|
+
<stop offset="1" stopColor="#273470"/>
|
|
163
|
+
</linearGradient>
|
|
164
|
+
<linearGradient id={g(19)} x1="42.5004" y1="33.1557" x2="45.2313" y2="0.613868" gradientUnits="userSpaceOnUse">
|
|
165
|
+
<stop stopColor="#66CCFF"/>
|
|
166
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
167
|
+
<stop offset="1" stopColor="#273470"/>
|
|
168
|
+
</linearGradient>
|
|
169
|
+
<linearGradient id={g(20)} x1="42.3702" y1="33.1448" x2="45.0974" y2="0.611117" gradientUnits="userSpaceOnUse">
|
|
170
|
+
<stop stopColor="#66CCFF"/>
|
|
171
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
172
|
+
<stop offset="1" stopColor="#273470"/>
|
|
173
|
+
</linearGradient>
|
|
174
|
+
<linearGradient id={g(21)} x1="32.5362" y1="32.5273" x2="35.2679" y2="-0.0144086" gradientUnits="userSpaceOnUse">
|
|
175
|
+
<stop stopColor="#66CCFF"/>
|
|
176
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
177
|
+
<stop offset="1" stopColor="#273470"/>
|
|
178
|
+
</linearGradient>
|
|
179
|
+
<linearGradient id={g(22)} x1="33.3017" y1="32.5721" x2="36.0306" y2="0.035564" gradientUnits="userSpaceOnUse">
|
|
180
|
+
<stop stopColor="#66CCFF"/>
|
|
181
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
182
|
+
<stop offset="1" stopColor="#273470"/>
|
|
183
|
+
</linearGradient>
|
|
184
|
+
<linearGradient id={g(23)} x1="24.4824" y1="32.0245" x2="27.2167" y2="-0.514915" gradientUnits="userSpaceOnUse">
|
|
185
|
+
<stop stopColor="#66CCFF"/>
|
|
186
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
187
|
+
<stop offset="1" stopColor="#273470"/>
|
|
188
|
+
</linearGradient>
|
|
189
|
+
<linearGradient id={g(24)} x1="23.7078" y1="31.9664" x2="26.4372" y2="-0.564468" gradientUnits="userSpaceOnUse">
|
|
190
|
+
<stop stopColor="#66CCFF"/>
|
|
191
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
192
|
+
<stop offset="1" stopColor="#273470"/>
|
|
193
|
+
</linearGradient>
|
|
194
|
+
<linearGradient id={g(25)} x1="22.9409" y1="31.9201" x2="25.6722" y2="-0.621692" gradientUnits="userSpaceOnUse">
|
|
195
|
+
<stop stopColor="#66CCFF"/>
|
|
196
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
197
|
+
<stop offset="1" stopColor="#273470"/>
|
|
198
|
+
</linearGradient>
|
|
199
|
+
<linearGradient id={g(26)} x1="14.8567" y1="31.4171" x2="17.5856" y2="-1.11945" gradientUnits="userSpaceOnUse">
|
|
200
|
+
<stop stopColor="#66CCFF"/>
|
|
201
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
202
|
+
<stop offset="1" stopColor="#273470"/>
|
|
203
|
+
</linearGradient>
|
|
204
|
+
<linearGradient id={g(27)} x1="11.9253" y1="31.2349" x2="14.6569" y2="-1.30678" gradientUnits="userSpaceOnUse">
|
|
205
|
+
<stop stopColor="#66CCFF"/>
|
|
206
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
207
|
+
<stop offset="1" stopColor="#273470"/>
|
|
208
|
+
</linearGradient>
|
|
209
|
+
<linearGradient id={g(28)} x1="43.2159" y1="31.7836" x2="43.2159" y2="-0.468838" gradientUnits="userSpaceOnUse">
|
|
210
|
+
<stop stopColor="#66CCFF"/>
|
|
211
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
212
|
+
<stop offset="1" stopColor="#273470"/>
|
|
213
|
+
</linearGradient>
|
|
214
|
+
<linearGradient id={g(29)} x1="33.9197" y1="31.7839" x2="33.9197" y2="-0.466934" gradientUnits="userSpaceOnUse">
|
|
215
|
+
<stop stopColor="#66CCFF"/>
|
|
216
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
217
|
+
<stop offset="1" stopColor="#273470"/>
|
|
218
|
+
</linearGradient>
|
|
219
|
+
<linearGradient id={g(30)} x1="33.9195" y1="31.7775" x2="33.9195" y2="-0.459614" gradientUnits="userSpaceOnUse">
|
|
220
|
+
<stop stopColor="#66CCFF"/>
|
|
221
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
222
|
+
<stop offset="1" stopColor="#273470"/>
|
|
223
|
+
</linearGradient>
|
|
224
|
+
<linearGradient id={g(31)} x1="33.9184" y1="31.7867" x2="33.9184" y2="-0.466271" gradientUnits="userSpaceOnUse">
|
|
225
|
+
<stop stopColor="#66CCFF"/>
|
|
226
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
227
|
+
<stop offset="1" stopColor="#273470"/>
|
|
228
|
+
</linearGradient>
|
|
229
|
+
<linearGradient id={g(32)} x1="24.6222" y1="31.7807" x2="24.6222" y2="-0.463518" gradientUnits="userSpaceOnUse">
|
|
230
|
+
<stop stopColor="#66CCFF"/>
|
|
231
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
232
|
+
<stop offset="1" stopColor="#273470"/>
|
|
233
|
+
</linearGradient>
|
|
234
|
+
<linearGradient id={g(33)} x1="24.6221" y1="31.7853" x2="24.6221" y2="-0.464583" gradientUnits="userSpaceOnUse">
|
|
235
|
+
<stop stopColor="#66CCFF"/>
|
|
236
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
237
|
+
<stop offset="1" stopColor="#273470"/>
|
|
238
|
+
</linearGradient>
|
|
239
|
+
<linearGradient id={g(34)} x1="15.321" y1="31.784" x2="15.321" y2="-0.465094" gradientUnits="userSpaceOnUse">
|
|
240
|
+
<stop stopColor="#66CCFF"/>
|
|
241
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
242
|
+
<stop offset="1" stopColor="#273470"/>
|
|
243
|
+
</linearGradient>
|
|
244
|
+
<linearGradient id={g(35)} x1="3.34686" y1="31.7758" x2="3.34686" y2="-0.461984" gradientUnits="userSpaceOnUse">
|
|
245
|
+
<stop stopColor="#66CCFF"/>
|
|
246
|
+
<stop offset="0.5" stopColor="#6258A6"/>
|
|
247
|
+
<stop offset="1" stopColor="#273470"/>
|
|
248
|
+
</linearGradient>
|
|
249
|
+
<linearGradient id={g(36)} x1="49.7878" y1="48.3201" x2="7.1231" y2="65.5599" gradientUnits="userSpaceOnUse">
|
|
250
|
+
<stop stopColor="#FDBD4D"/>
|
|
251
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
252
|
+
<stop offset="1" stopColor="#273470"/>
|
|
253
|
+
</linearGradient>
|
|
254
|
+
<linearGradient id={g(37)} x1="40.7902" y1="31.6137" x2="-1.87145" y2="48.842" gradientUnits="userSpaceOnUse">
|
|
255
|
+
<stop stopColor="#FDBD4D"/>
|
|
256
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
257
|
+
<stop offset="1" stopColor="#273470"/>
|
|
258
|
+
</linearGradient>
|
|
259
|
+
<linearGradient id={g(38)} x1="46.555" y1="42.3095" x2="3.8849" y2="59.5393" gradientUnits="userSpaceOnUse">
|
|
260
|
+
<stop stopColor="#FDBD4D"/>
|
|
261
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
262
|
+
<stop offset="1" stopColor="#273470"/>
|
|
263
|
+
</linearGradient>
|
|
264
|
+
<linearGradient id={g(39)} x1="36.7755" y1="24.1742" x2="-5.87415" y2="41.3925" gradientUnits="userSpaceOnUse">
|
|
265
|
+
<stop stopColor="#FDBD4D"/>
|
|
266
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
267
|
+
<stop offset="1" stopColor="#273470"/>
|
|
268
|
+
</linearGradient>
|
|
269
|
+
<linearGradient id={g(40)} x1="32.2831" y1="15.8101" x2="-10.3796" y2="33.0306" gradientUnits="userSpaceOnUse">
|
|
270
|
+
<stop stopColor="#FDBD4D"/>
|
|
271
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
272
|
+
<stop offset="1" stopColor="#273470"/>
|
|
273
|
+
</linearGradient>
|
|
274
|
+
<linearGradient id={g(41)} x1="41.7044" y1="33.3107" x2="-0.951845" y2="50.5539" gradientUnits="userSpaceOnUse">
|
|
275
|
+
<stop stopColor="#FDBD4D"/>
|
|
276
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
277
|
+
<stop offset="1" stopColor="#273470"/>
|
|
278
|
+
</linearGradient>
|
|
279
|
+
<linearGradient id={g(42)} x1="31.5524" y1="14.4589" x2="-11.1069" y2="31.6989" gradientUnits="userSpaceOnUse">
|
|
280
|
+
<stop stopColor="#FDBD4D"/>
|
|
281
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
282
|
+
<stop offset="1" stopColor="#273470"/>
|
|
283
|
+
</linearGradient>
|
|
284
|
+
<linearGradient id={g(43)} x1="32.0085" y1="15.3142" x2="-10.6478" y2="32.5573" gradientUnits="userSpaceOnUse">
|
|
285
|
+
<stop stopColor="#FDBD4D"/>
|
|
286
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
287
|
+
<stop offset="1" stopColor="#273470"/>
|
|
288
|
+
</linearGradient>
|
|
289
|
+
<linearGradient id={g(44)} x1="36.3811" y1="45.2108" x2="6.05373" y2="58.3648" gradientUnits="userSpaceOnUse">
|
|
290
|
+
<stop stopColor="#FDBD4D"/>
|
|
291
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
292
|
+
<stop offset="1" stopColor="#273470"/>
|
|
293
|
+
</linearGradient>
|
|
294
|
+
<linearGradient id={g(45)} x1="26.751" y1="28.5529" x2="-3.57523" y2="41.6974" gradientUnits="userSpaceOnUse">
|
|
295
|
+
<stop stopColor="#FDBD4D"/>
|
|
296
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
297
|
+
<stop offset="1" stopColor="#273470"/>
|
|
298
|
+
</linearGradient>
|
|
299
|
+
<linearGradient id={g(46)} x1="36.9912" y1="46.2576" x2="6.65728" y2="59.4147" gradientUnits="userSpaceOnUse">
|
|
300
|
+
<stop stopColor="#FDBD4D"/>
|
|
301
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
302
|
+
<stop offset="1" stopColor="#273470"/>
|
|
303
|
+
</linearGradient>
|
|
304
|
+
<linearGradient id={g(47)} x1="32.1826" y1="37.9403" x2="1.84371" y2="51.0739" gradientUnits="userSpaceOnUse">
|
|
305
|
+
<stop stopColor="#FDBD4D"/>
|
|
306
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
307
|
+
<stop offset="1" stopColor="#273470"/>
|
|
308
|
+
</linearGradient>
|
|
309
|
+
<linearGradient id={g(48)} x1="32.3021" y1="38.1556" x2="1.97655" y2="51.3086" gradientUnits="userSpaceOnUse">
|
|
310
|
+
<stop stopColor="#FDBD4D"/>
|
|
311
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
312
|
+
<stop offset="1" stopColor="#273470"/>
|
|
313
|
+
</linearGradient>
|
|
314
|
+
<linearGradient id={g(49)} x1="31.1749" y1="36.1875" x2="0.840561" y2="49.3386" gradientUnits="userSpaceOnUse">
|
|
315
|
+
<stop stopColor="#FDBD4D"/>
|
|
316
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
317
|
+
<stop offset="1" stopColor="#273470"/>
|
|
318
|
+
</linearGradient>
|
|
319
|
+
<linearGradient id={g(50)} x1="26.5041" y1="28.1153" x2="-3.82313" y2="41.2667" gradientUnits="userSpaceOnUse">
|
|
320
|
+
<stop stopColor="#FDBD4D"/>
|
|
321
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
322
|
+
<stop offset="1" stopColor="#273470"/>
|
|
323
|
+
</linearGradient>
|
|
324
|
+
<linearGradient id={g(51)} x1="26.2501" y1="27.6795" x2="-4.08279" y2="40.8311" gradientUnits="userSpaceOnUse">
|
|
325
|
+
<stop stopColor="#FDBD4D"/>
|
|
326
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
327
|
+
<stop offset="1" stopColor="#273470"/>
|
|
328
|
+
</linearGradient>
|
|
329
|
+
<linearGradient id={g(52)} x1="17.0829" y1="11.8279" x2="-13.2387" y2="24.9733" gradientUnits="userSpaceOnUse">
|
|
330
|
+
<stop stopColor="#FDBD4D"/>
|
|
331
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
332
|
+
<stop offset="1" stopColor="#273470"/>
|
|
333
|
+
</linearGradient>
|
|
334
|
+
<linearGradient id={g(53)} x1="26.6775" y1="28.4095" x2="-3.65907" y2="41.5577" gradientUnits="userSpaceOnUse">
|
|
335
|
+
<stop stopColor="#FDBD4D"/>
|
|
336
|
+
<stop offset="0.5" stopColor="#FF6633"/>
|
|
337
|
+
<stop offset="1" stopColor="#273470"/>
|
|
338
|
+
</linearGradient>
|
|
339
|
+
<clipPath id={clip}>
|
|
340
|
+
<rect width="59" height="64" fill="white"/>
|
|
341
|
+
</clipPath>
|
|
342
|
+
</defs>
|
|
343
|
+
</svg>
|
|
344
|
+
);
|
|
345
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Search icon (search-01) — 20 × 20 px viewBox.
|
|
5
|
+
* Used as the leading affordance in the input and as the icon for suggestion items.
|
|
6
|
+
* Figma: search-01 referenced inside Autocomplete node 6183:86218
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
export function SearchIcon({ className, ...props }: SVGProps<SVGSVGElement>) {
|
|
10
|
+
return (
|
|
11
|
+
<svg
|
|
12
|
+
viewBox="0 0 20 20"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
aria-hidden="true"
|
|
16
|
+
className={className}
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d="M17.5 17.5L13.514 13.514M13.514 13.514C14.66 12.368 15.367 10.784 15.367 9.033C15.367 5.532 12.534 2.7 9.033 2.7C5.532 2.7 2.7 5.532 2.7 9.033C2.7 12.534 5.532 15.367 9.033 15.367C10.784 15.367 12.368 14.66 13.514 13.514Z"
|
|
21
|
+
stroke="currentColor"
|
|
22
|
+
strokeWidth="1.5"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Cancel / clear icon (cancel-01) — 16 × 16 px viewBox.
|
|
32
|
+
* Used as the trailing clear button inside the input.
|
|
33
|
+
* Figma: cancel-01 referenced inside Autocomplete node 6183:86218
|
|
34
|
+
*/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/* ─────────────────────────────────────────────────────────────────
|
|
2
|
+
icons.tsx — AudioPlayer icon set
|
|
3
|
+
All paths retrieved directly from Figma asset exports.
|
|
4
|
+
fill="currentColor" enables dark-mode & hover state via CSS.
|
|
5
|
+
Icon names match Figma component names exactly.
|
|
6
|
+
──────────────────────────────────────────────────────────────────── */
|
|
7
|
+
|
|
8
|
+
/** go-backward-10-sec — viewBox 0 0 17.915 17.917 */
|
|
9
|
+
|
|
10
|
+
export function SettingsIcon() {
|
|
11
|
+
return (
|
|
12
|
+
<svg
|
|
13
|
+
width="100%"
|
|
14
|
+
height="100%"
|
|
15
|
+
viewBox="0 0 17.916 16.6665"
|
|
16
|
+
fill="none"
|
|
17
|
+
aria-hidden="true"
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
d="M6.20997 0.00799283C6.46751 0.0425383 6.65877 0.189646 6.76856 0.28143C6.88475 0.378612 7.17505 0.667432 7.17774 0.670102C7.66362 1.15189 8.31095 1.39258 8.95802 1.39276C9.60508 1.39258 10.2524 1.15189 10.7383 0.670102C10.7402 0.668183 11.0311 0.378749 11.1475 0.28143C11.2573 0.189648 11.4485 0.0425428 11.7061 0.00799283C11.9431 -0.023742 12.1433 0.0453163 12.2793 0.104673C12.4042 0.15918 12.545 0.23847 12.6816 0.31561L14.5566 1.38983C14.6781 1.4758 14.8424 1.61291 14.9365 1.83416C15.0392 2.07578 15.0059 2.31929 14.9815 2.46014C14.955 2.61263 14.9002 2.82272 14.8477 3.02362C14.5176 4.28759 15.3242 5.64733 16.6299 5.99725L16.6533 6.00311C16.8507 6.056 17.036 6.10622 17.1807 6.15838C17.3161 6.20721 17.5419 6.29867 17.7012 6.50506C17.8478 6.69525 17.8871 6.90442 17.9024 7.05194C17.9164 7.18795 17.9161 7.35073 17.916 7.50897V9.15838C17.9161 9.31666 17.9164 9.47942 17.9024 9.61541C17.8871 9.76292 17.8477 9.97118 17.7012 10.1613C17.5418 10.368 17.3161 10.4601 17.1807 10.509C17.0359 10.5612 16.6299 10.6701 16.6299 10.6701C15.3247 11.02 14.5182 12.3796 14.8486 13.6437C14.8519 13.6562 14.9562 14.0557 14.9824 14.2062C15.0069 14.3472 15.0404 14.5914 14.9375 14.8332C14.8433 15.0545 14.6791 15.1916 14.5576 15.2775L12.6836 16.3508C12.5468 16.428 12.4053 16.5081 12.2803 16.5627C12.1443 16.622 11.9448 16.69 11.708 16.6584C11.4504 16.6239 11.2592 16.4768 11.1494 16.3849C11.0343 16.2886 10.7463 16.0042 10.7393 15.9973C10.2531 15.515 9.60557 15.2738 8.95802 15.2736C8.31046 15.2738 7.66296 15.515 7.17677 15.9973C7.16949 16.0045 6.88173 16.2887 6.76661 16.3849C6.65686 16.4767 6.46637 16.6237 6.20899 16.6584C5.97205 16.6901 5.77178 16.622 5.63575 16.5627C5.51073 16.5081 5.36925 16.428 5.23243 16.3508L3.35841 15.2775C3.23692 15.1916 3.07277 15.0545 2.97852 14.8332C2.87565 14.5914 2.90914 14.3472 2.9336 14.2062C2.95979 14.0558 3.06412 13.6563 3.06739 13.6437C3.39779 12.3796 2.59133 11.02 1.28614 10.6701C1.28614 10.6701 0.880126 10.5612 0.735359 10.509C0.599929 10.4601 0.374231 10.368 0.214852 10.1613C0.0683125 9.97118 0.0289773 9.76292 0.0136797 9.61541C-0.000417344 9.47942 -2.80438e-05 9.31666 7.79608e-06 9.15838V7.50897C-2.80388e-05 7.35073 -0.000393805 7.18795 0.0136797 7.05194C0.0289714 6.90442 0.0682685 6.69525 0.214852 6.50506C0.37416 6.29867 0.599974 6.20722 0.735359 6.15838C0.880039 6.10622 1.06529 6.056 1.2627 6.00311L1.28614 5.99725C2.59182 5.64733 3.39848 4.28759 3.06837 3.02362C3.01587 2.82272 2.96103 2.61263 2.93458 2.46014C2.91015 2.31929 2.87682 2.07578 2.9795 1.83416C3.07366 1.61292 3.2379 1.4758 3.35938 1.38983L5.23438 0.31561C5.371 0.238471 5.51188 0.159182 5.63673 0.104673C5.77275 0.0453163 5.97297 -0.023742 6.20997 0.00799283ZM8.95802 5.41717C7.34727 5.41718 6.04116 6.72248 6.04102 8.33319C6.04102 9.94402 7.34719 11.2502 8.95802 11.2502C10.5688 11.2502 11.875 9.94402 11.875 8.33319C11.8749 6.72247 10.5688 5.41717 8.95802 5.41717Z"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
/** Arrow pointing left — used for "previous" navigation. */
|
|
4
|
+
|
|
5
|
+
export function ShareIcon(props: SVGProps<SVGSVGElement>) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
fill="none"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
stroke="currentColor"
|
|
12
|
+
strokeWidth={1.5}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
aria-hidden="true"
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<circle cx="18" cy="5" r="2" />
|
|
19
|
+
<circle cx="6" cy="12" r="2" />
|
|
20
|
+
<circle cx="18" cy="19" r="2" />
|
|
21
|
+
<path d="M8 11l8-5M8 13l8 5" />
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/** Print — printer icon. */
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import type { SVGProps } from 'react';
|
|
4
|
+
|
|
5
|
+
/** Panel / sidebar collapse icon — 16×16 viewport. */
|
|
6
|
+
export function SidebarCollapseIcon(props: SVGProps<SVGSVGElement>) {
|
|
7
|
+
return (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
viewBox="0 0 16 16"
|
|
13
|
+
fill="none"
|
|
14
|
+
aria-hidden="true"
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<path
|
|
18
|
+
fillRule="evenodd"
|
|
19
|
+
clipRule="evenodd"
|
|
20
|
+
d="M9.36523 1.5C10.4308 1.49999 11.2754 1.50031 11.9482 1.58008C12.6404 1.66216 13.2099 1.83385 13.6973 2.21777C14.0311 2.48085 14.3188 2.80529 14.5488 3.1748C14.8788 3.70494 15.0256 4.3187 15.0967 5.07715C15.1667 5.82429 15.167 6.76622 15.167 7.97363V8.02637C15.167 9.23378 15.1667 10.1757 15.0967 10.9229C15.0256 11.6813 14.8788 12.2951 14.5488 12.8252C14.3188 13.1947 14.0311 13.5192 13.6973 13.7822C13.2099 14.1661 12.6404 14.3378 11.9482 14.4199C11.2754 14.4997 10.4308 14.5 9.36523 14.5H6.63477C5.56919 14.5 4.72458 14.4997 4.05176 14.4199C3.35956 14.3378 2.79011 14.1661 2.30273 13.7822C1.96886 13.5192 1.68116 13.1947 1.45117 12.8252C1.12121 12.2951 0.974414 11.6813 0.90332 10.9229C0.833316 10.1757 0.833004 9.23378 0.833008 8.02637V7.97363C0.833004 6.76622 0.833316 5.82429 0.90332 5.07715C0.974414 4.3187 1.12121 3.70494 1.45117 3.1748C1.68116 2.80529 1.96886 2.48085 2.30273 2.21777C2.79011 1.83385 3.35956 1.66216 4.05176 1.58008C4.72458 1.50031 5.5692 1.49999 6.63477 1.5H9.36523ZM6.83301 13.5H9.33301C10.4382 13.5 11.2239 13.4988 11.8311 13.4268C12.4254 13.3562 12.7907 13.2235 13.0781 12.9971C13.3173 12.8087 13.5279 12.5721 13.6992 12.2969C13.9117 11.9554 14.036 11.5181 14.1006 10.8291C14.1657 10.134 14.167 9.23932 14.167 8C14.167 6.76068 14.1657 5.86595 14.1006 5.1709C14.036 4.4819 13.9117 4.04459 13.6992 3.70312C13.5279 3.42795 13.3173 3.19134 13.0781 3.00293C12.7907 2.77655 12.4254 2.64376 11.8311 2.57324C11.2239 2.50125 10.4382 2.5 9.33301 2.5H6.83301V13.5ZM5.83301 2.50098C5.14755 2.50509 4.61095 2.52083 4.16895 2.57324C3.57459 2.64376 3.20927 2.77655 2.92188 3.00293C2.68269 3.19134 2.47211 3.42795 2.30078 3.70312C2.08825 4.04459 1.96397 4.4819 1.89941 5.1709C1.83429 5.86595 1.83301 6.76068 1.83301 8C1.83301 9.23932 1.83429 10.134 1.89941 10.8291C1.96397 11.5181 2.08825 11.9554 2.30078 12.2969C2.47211 12.5721 2.68269 12.8087 2.92188 12.9971C3.20927 13.2235 3.57459 13.3562 4.16895 13.4268C4.61095 13.4792 5.14755 13.4939 5.83301 13.498V2.50098ZM4 6.16699C4.27614 6.16699 4.5 6.39085 4.5 6.66699C4.49982 6.94298 4.27603 7.16699 4 7.16699H3.33301C3.05712 7.16682 2.83318 6.94288 2.83301 6.66699C2.83301 6.39096 3.05702 6.16717 3.33301 6.16699H4ZM4 4.16699C4.27614 4.16699 4.5 4.39085 4.5 4.66699C4.49982 4.94298 4.27603 5.16699 4 5.16699H3.33301C3.05712 5.16682 2.83318 4.94288 2.83301 4.66699C2.83301 4.39096 3.05702 4.16717 3.33301 4.16699H4Z"
|
|
21
|
+
fill="currentColor"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
/* ── 24×24 toolbar icons ────────────────────────────────────── */
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Undo icon (undo-03) — 24×24 px.
|
|
7
|
+
* Figma: node inside Rich Text Editor 6259:88649
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export function SmileIcon({ className, ...props }: SVGProps<SVGSVGElement>) {
|
|
11
|
+
return (
|
|
12
|
+
<svg
|
|
13
|
+
viewBox="0 0 20 20"
|
|
14
|
+
fill="none"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
aria-hidden="true"
|
|
17
|
+
className={className}
|
|
18
|
+
{...props}
|
|
19
|
+
>
|
|
20
|
+
<path
|
|
21
|
+
fillRule="evenodd"
|
|
22
|
+
clipRule="evenodd"
|
|
23
|
+
d="M9.99707 19.084C15.0134 19.0838 19.0809 15.0163 19.0811 10C19.0809 4.98367 15.0134 0.917168 9.99707 0.916992C4.98074 0.917168 0.914238 4.98367 0.914063 10C0.914239 15.0163 4.98074 19.0838 9.99707 19.084ZM9.99707 17.584C5.80917 17.5838 2.41424 14.1879 2.41406 10C2.41424 5.8121 5.80917 2.41717 9.99707 2.41699C14.185 2.41717 17.5809 5.8121 17.5811 10C17.5809 14.1879 14.185 17.5838 9.99707 17.584ZM6.67188 8.5C7.22386 8.49964 7.67188 8.05206 7.67188 7.5C7.67188 6.94794 7.22386 6.50036 6.67188 6.5H6.66406C6.11178 6.5 5.66406 6.94771 5.66406 7.5C5.66406 8.05229 6.11178 8.5 6.66406 8.5H6.67188ZM13.3311 8.5C13.883 8.49965 14.3311 8.05207 14.3311 7.5C14.3311 6.94793 13.883 6.50035 13.3311 6.5H13.3232C12.771 6.50001 12.3232 6.94772 12.3232 7.5C12.3232 8.05228 12.771 8.49999 13.3232 8.5H13.3311ZM9.99707 14.917C11.6059 14.9169 13.0351 14.1426 13.9307 12.9502C14.179 12.6191 14.112 12.1491 13.7812 11.9004C13.4501 11.6517 12.9802 11.7188 12.7314 12.0498C12.107 12.8813 11.1141 13.4169 9.99707 13.417C8.88014 13.4169 7.88818 12.8811 7.26367 12.0498C7.01499 11.7187 6.54505 11.6519 6.21387 11.9004C5.8827 12.1491 5.81578 12.619 6.06445 12.9502C6.96005 14.1425 8.38833 14.9169 9.99707 14.917Z"
|
|
24
|
+
fill="currentColor"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* At / mention icon — 20×20 px.
|
|
32
|
+
* Used in the input bottom bar.
|
|
33
|
+
* Figma: node inside Rich Text Editor 6259:88649
|
|
34
|
+
*/
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function SortIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="100%"
|
|
8
|
+
height="100%"
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
fill="none"
|
|
11
|
+
aria-hidden="true"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M12.0004 8.83259C12.2065 8.83269 12.3915 8.95984 12.4662 9.15193C12.5408 9.34402 12.4902 9.56244 12.3383 9.70173L8.33827 13.3687C8.14722 13.5438 7.85363 13.5436 7.66249 13.3687L3.66249 9.70173C3.5105 9.56241 3.45982 9.34409 3.53456 9.15193C3.60931 8.95976 3.79419 8.83259 4.00038 8.83259H12.0004ZM7.66249 2.63142C7.85365 2.45619 8.14711 2.45619 8.33827 2.63142L12.3383 6.29744C12.4902 6.43669 12.5408 6.65515 12.4662 6.84724C12.3915 7.03933 12.2065 7.16648 12.0004 7.16658H4.00038C3.79419 7.16658 3.60931 7.03941 3.53456 6.84724C3.45991 6.65512 3.51054 6.43672 3.66249 6.29744L7.66249 2.63142Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|