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,4388 @@
|
|
|
1
|
+
// AUTO-GENERATED — run `npm --workspace sdaia-ui run dga-icons:build`
|
|
2
|
+
// Source: @platformscode/icons v0.0.11
|
|
3
|
+
// Base icon names derived from dist/svg-json/nds-icons.json (solid/stroke suffix stripped).
|
|
4
|
+
|
|
5
|
+
export const DGA_ICON_NAMES = [
|
|
6
|
+
"1st-bracket",
|
|
7
|
+
"1st-bracket-circle",
|
|
8
|
+
"1st-bracket-square",
|
|
9
|
+
"2nd-bracket",
|
|
10
|
+
"2nd-bracket-circle",
|
|
11
|
+
"2nd-bracket-square",
|
|
12
|
+
"3-d-view",
|
|
13
|
+
"3d-move",
|
|
14
|
+
"3d-rotate",
|
|
15
|
+
"3d-scale",
|
|
16
|
+
"3rd-bracket",
|
|
17
|
+
"3rd-bracket-circle",
|
|
18
|
+
"3rd-bracket-square",
|
|
19
|
+
"4k",
|
|
20
|
+
"7z-01",
|
|
21
|
+
"7z-02",
|
|
22
|
+
"abacus",
|
|
23
|
+
"absolute",
|
|
24
|
+
"acceleration",
|
|
25
|
+
"access",
|
|
26
|
+
"accident",
|
|
27
|
+
"account-setting-01",
|
|
28
|
+
"account-setting-02",
|
|
29
|
+
"account-setting-03",
|
|
30
|
+
"activity-01",
|
|
31
|
+
"activity-02",
|
|
32
|
+
"activity-03",
|
|
33
|
+
"activity-04",
|
|
34
|
+
"acute",
|
|
35
|
+
"add-01",
|
|
36
|
+
"add-02",
|
|
37
|
+
"add-circle",
|
|
38
|
+
"add-circle-half-dot",
|
|
39
|
+
"add-female",
|
|
40
|
+
"add-male",
|
|
41
|
+
"add-square",
|
|
42
|
+
"add-team",
|
|
43
|
+
"add-team-02",
|
|
44
|
+
"add-to-list",
|
|
45
|
+
"address-book",
|
|
46
|
+
"adobe-after-effect",
|
|
47
|
+
"adobe-illustrator",
|
|
48
|
+
"adobe-indesign",
|
|
49
|
+
"adobe-photoshop",
|
|
50
|
+
"adobe-premier",
|
|
51
|
+
"adobe-xd",
|
|
52
|
+
"adventure",
|
|
53
|
+
"advertisiment",
|
|
54
|
+
"adzan",
|
|
55
|
+
"affiliate",
|
|
56
|
+
"agreement-01",
|
|
57
|
+
"agreement-02",
|
|
58
|
+
"agreement-03",
|
|
59
|
+
"ai-audio",
|
|
60
|
+
"ai-beautify",
|
|
61
|
+
"ai-book",
|
|
62
|
+
"ai-brain-01",
|
|
63
|
+
"ai-brain-02",
|
|
64
|
+
"ai-brain-03",
|
|
65
|
+
"ai-brain-04",
|
|
66
|
+
"ai-brain-05",
|
|
67
|
+
"ai-browser",
|
|
68
|
+
"ai-chat-01",
|
|
69
|
+
"ai-chat-02",
|
|
70
|
+
"ai-chemistry-01",
|
|
71
|
+
"ai-chemistry-02",
|
|
72
|
+
"ai-chemistry-03",
|
|
73
|
+
"ai-chip",
|
|
74
|
+
"ai-cloud",
|
|
75
|
+
"ai-cloud-01",
|
|
76
|
+
"ai-cloud-02",
|
|
77
|
+
"ai-computer",
|
|
78
|
+
"ai-content-generator-01",
|
|
79
|
+
"ai-content-generator-02",
|
|
80
|
+
"ai-dna",
|
|
81
|
+
"ai-editing",
|
|
82
|
+
"ai-eraser",
|
|
83
|
+
"ai-file",
|
|
84
|
+
"ai-folder-01",
|
|
85
|
+
"ai-folder-02",
|
|
86
|
+
"ai-game",
|
|
87
|
+
"ai-generative",
|
|
88
|
+
"ai-idea",
|
|
89
|
+
"ai-image",
|
|
90
|
+
"ai-innovation-01",
|
|
91
|
+
"ai-innovation-02",
|
|
92
|
+
"ai-innovation-03",
|
|
93
|
+
"ai-laptop",
|
|
94
|
+
"ai-learning",
|
|
95
|
+
"ai-lock",
|
|
96
|
+
"ai-magic",
|
|
97
|
+
"ai-mail",
|
|
98
|
+
"ai-mail-01",
|
|
99
|
+
"ai-mail-02",
|
|
100
|
+
"ai-mic",
|
|
101
|
+
"ai-network",
|
|
102
|
+
"ai-phone-01",
|
|
103
|
+
"ai-phone-02",
|
|
104
|
+
"ai-programming",
|
|
105
|
+
"ai-scan",
|
|
106
|
+
"ai-scheduling",
|
|
107
|
+
"ai-search",
|
|
108
|
+
"ai-search-02",
|
|
109
|
+
"ai-security-01",
|
|
110
|
+
"ai-security-02",
|
|
111
|
+
"ai-security-03",
|
|
112
|
+
"ai-setting",
|
|
113
|
+
"ai-sheets",
|
|
114
|
+
"ai-smartwatch",
|
|
115
|
+
"ai-user",
|
|
116
|
+
"ai-video",
|
|
117
|
+
"ai-view",
|
|
118
|
+
"ai-vision-recognition",
|
|
119
|
+
"ai-voice",
|
|
120
|
+
"ai-voice-generator",
|
|
121
|
+
"ai-web-browsing",
|
|
122
|
+
"aids",
|
|
123
|
+
"airbnb",
|
|
124
|
+
"aircraft-game",
|
|
125
|
+
"airdrop",
|
|
126
|
+
"airplane-01",
|
|
127
|
+
"airplane-02",
|
|
128
|
+
"airplane-landing-01",
|
|
129
|
+
"airplane-landing-02",
|
|
130
|
+
"airplane-mode",
|
|
131
|
+
"airplane-mode-off",
|
|
132
|
+
"airplane-seat",
|
|
133
|
+
"airplane-take-off-01",
|
|
134
|
+
"airplane-take-off-02",
|
|
135
|
+
"airplay-line",
|
|
136
|
+
"airpod-01",
|
|
137
|
+
"airpod-02",
|
|
138
|
+
"airpod-03",
|
|
139
|
+
"airport",
|
|
140
|
+
"al-aqsa-mosque",
|
|
141
|
+
"al-masmak-palace",
|
|
142
|
+
"alarm-clock",
|
|
143
|
+
"album-01",
|
|
144
|
+
"album-02",
|
|
145
|
+
"album-not-found-01",
|
|
146
|
+
"album-not-found-02",
|
|
147
|
+
"alert-01",
|
|
148
|
+
"alert-02",
|
|
149
|
+
"alert-circle",
|
|
150
|
+
"alert-diamond",
|
|
151
|
+
"alert-square",
|
|
152
|
+
"algorithm",
|
|
153
|
+
"alien-01",
|
|
154
|
+
"alien-02",
|
|
155
|
+
"align-bottom",
|
|
156
|
+
"align-box-bottom-center",
|
|
157
|
+
"align-box-bottom-left",
|
|
158
|
+
"align-box-bottom-right",
|
|
159
|
+
"align-box-middle-center",
|
|
160
|
+
"align-box-middle-left",
|
|
161
|
+
"align-box-middle-right",
|
|
162
|
+
"align-box-top-center",
|
|
163
|
+
"align-box-top-left",
|
|
164
|
+
"align-box-top-right",
|
|
165
|
+
"align-horizontal-center",
|
|
166
|
+
"align-key-object",
|
|
167
|
+
"align-left",
|
|
168
|
+
"align-right",
|
|
169
|
+
"align-selection",
|
|
170
|
+
"align-top",
|
|
171
|
+
"align-vertical-center",
|
|
172
|
+
"all-bookmark",
|
|
173
|
+
"allah",
|
|
174
|
+
"alms",
|
|
175
|
+
"alpha",
|
|
176
|
+
"alpha-circle",
|
|
177
|
+
"alpha-square",
|
|
178
|
+
"alphabet-arabic",
|
|
179
|
+
"alphabet-bangla",
|
|
180
|
+
"alphabet-chinese",
|
|
181
|
+
"alphabet-greek",
|
|
182
|
+
"alphabet-hebrew",
|
|
183
|
+
"alphabet-hindi",
|
|
184
|
+
"alphabet-japanese",
|
|
185
|
+
"alphabet-korean",
|
|
186
|
+
"alphabet-thai",
|
|
187
|
+
"alula",
|
|
188
|
+
"amazon",
|
|
189
|
+
"ambulance",
|
|
190
|
+
"american-football",
|
|
191
|
+
"amie",
|
|
192
|
+
"ampoule",
|
|
193
|
+
"analysis-text-link",
|
|
194
|
+
"analytics-01",
|
|
195
|
+
"analytics-02",
|
|
196
|
+
"analytics-03",
|
|
197
|
+
"analytics-down",
|
|
198
|
+
"analytics-up",
|
|
199
|
+
"anchor",
|
|
200
|
+
"anchor-point",
|
|
201
|
+
"android",
|
|
202
|
+
"angel",
|
|
203
|
+
"angle",
|
|
204
|
+
"angle-01",
|
|
205
|
+
"angry",
|
|
206
|
+
"anonymous",
|
|
207
|
+
"api",
|
|
208
|
+
"app-store",
|
|
209
|
+
"apple",
|
|
210
|
+
"apple-01",
|
|
211
|
+
"apple-finder",
|
|
212
|
+
"apple-intelligence",
|
|
213
|
+
"apple-music",
|
|
214
|
+
"apple-news",
|
|
215
|
+
"apple-pie",
|
|
216
|
+
"apple-reminder",
|
|
217
|
+
"apple-stocks",
|
|
218
|
+
"apple-vision-pro",
|
|
219
|
+
"appointment-01",
|
|
220
|
+
"appointment-02",
|
|
221
|
+
"approximately-equal",
|
|
222
|
+
"approximately-equal-circle",
|
|
223
|
+
"approximately-equal-square",
|
|
224
|
+
"apricot",
|
|
225
|
+
"apron",
|
|
226
|
+
"arabian-horse",
|
|
227
|
+
"arc-browser",
|
|
228
|
+
"archer",
|
|
229
|
+
"archive",
|
|
230
|
+
"archive-01",
|
|
231
|
+
"archive-02",
|
|
232
|
+
"armored-boot",
|
|
233
|
+
"arrange",
|
|
234
|
+
"arrange-by-letters-a-z",
|
|
235
|
+
"arrange-by-letters-z-a",
|
|
236
|
+
"arrange-by-numbers-1-9",
|
|
237
|
+
"arrange-by-numbers-9-1",
|
|
238
|
+
"arrow-all-direction",
|
|
239
|
+
"arrow-data-transfer-diagonal",
|
|
240
|
+
"arrow-data-transfer-horizontal",
|
|
241
|
+
"arrow-data-transfer-vertical",
|
|
242
|
+
"arrow-diagonal",
|
|
243
|
+
"arrow-down-01",
|
|
244
|
+
"arrow-down-02",
|
|
245
|
+
"arrow-down-03",
|
|
246
|
+
"arrow-down-04",
|
|
247
|
+
"arrow-down-05",
|
|
248
|
+
"arrow-down-double",
|
|
249
|
+
"arrow-down-left-01",
|
|
250
|
+
"arrow-down-left-02",
|
|
251
|
+
"arrow-down-right-01",
|
|
252
|
+
"arrow-down-right-02",
|
|
253
|
+
"arrow-expand",
|
|
254
|
+
"arrow-expand-01",
|
|
255
|
+
"arrow-expand-02",
|
|
256
|
+
"arrow-expand-diagonal-01",
|
|
257
|
+
"arrow-expand-diagonal-02",
|
|
258
|
+
"arrow-horizontal",
|
|
259
|
+
"arrow-left-01",
|
|
260
|
+
"arrow-left-02",
|
|
261
|
+
"arrow-left-03",
|
|
262
|
+
"arrow-left-04",
|
|
263
|
+
"arrow-left-05",
|
|
264
|
+
"arrow-left-double",
|
|
265
|
+
"arrow-left-right",
|
|
266
|
+
"arrow-move-down-left",
|
|
267
|
+
"arrow-move-down-right",
|
|
268
|
+
"arrow-move-left-down",
|
|
269
|
+
"arrow-move-right-down",
|
|
270
|
+
"arrow-move-up-left",
|
|
271
|
+
"arrow-move-up-right",
|
|
272
|
+
"arrow-reload-horizontal",
|
|
273
|
+
"arrow-reload-vertical",
|
|
274
|
+
"arrow-right-01",
|
|
275
|
+
"arrow-right-02",
|
|
276
|
+
"arrow-right-03",
|
|
277
|
+
"arrow-right-04",
|
|
278
|
+
"arrow-right-05",
|
|
279
|
+
"arrow-right-double",
|
|
280
|
+
"arrow-shrink",
|
|
281
|
+
"arrow-shrink-01",
|
|
282
|
+
"arrow-shrink-02",
|
|
283
|
+
"arrow-turn-backward",
|
|
284
|
+
"arrow-turn-down",
|
|
285
|
+
"arrow-turn-forward",
|
|
286
|
+
"arrow-turn-up",
|
|
287
|
+
"arrow-up-01",
|
|
288
|
+
"arrow-up-02",
|
|
289
|
+
"arrow-up-03",
|
|
290
|
+
"arrow-up-04",
|
|
291
|
+
"arrow-up-05",
|
|
292
|
+
"arrow-up-double",
|
|
293
|
+
"arrow-up-down",
|
|
294
|
+
"arrow-up-left-01",
|
|
295
|
+
"arrow-up-left-02",
|
|
296
|
+
"arrow-up-right-01",
|
|
297
|
+
"arrow-up-right-02",
|
|
298
|
+
"arrow-vertical",
|
|
299
|
+
"artboard",
|
|
300
|
+
"artboard-tool",
|
|
301
|
+
"artificial-intelligence-01",
|
|
302
|
+
"artificial-intelligence-02",
|
|
303
|
+
"artificial-intelligence-03",
|
|
304
|
+
"artificial-intelligence-04",
|
|
305
|
+
"artificial-intelligence-05",
|
|
306
|
+
"artificial-intelligence-06",
|
|
307
|
+
"artificial-intelligence-07",
|
|
308
|
+
"artificial-intelligence-08",
|
|
309
|
+
"aspect-ratio",
|
|
310
|
+
"assignments",
|
|
311
|
+
"asteroid-01",
|
|
312
|
+
"asteroid-02",
|
|
313
|
+
"astronaut-01",
|
|
314
|
+
"astronaut-02",
|
|
315
|
+
"at",
|
|
316
|
+
"atm-01",
|
|
317
|
+
"atm-02",
|
|
318
|
+
"atom-01",
|
|
319
|
+
"atom-02",
|
|
320
|
+
"atomic-power",
|
|
321
|
+
"attachment",
|
|
322
|
+
"attachment-01",
|
|
323
|
+
"attachment-02",
|
|
324
|
+
"attachment-circle",
|
|
325
|
+
"attachment-square",
|
|
326
|
+
"auction",
|
|
327
|
+
"audio-book-01",
|
|
328
|
+
"audio-book-02",
|
|
329
|
+
"audio-book-03",
|
|
330
|
+
"audio-book-04",
|
|
331
|
+
"audio-wave-01",
|
|
332
|
+
"audio-wave-02",
|
|
333
|
+
"audit-01",
|
|
334
|
+
"audit-02",
|
|
335
|
+
"augmented-reality-ar",
|
|
336
|
+
"authorized",
|
|
337
|
+
"auto-conversations",
|
|
338
|
+
"automotive-battery-01",
|
|
339
|
+
"automotive-battery-02",
|
|
340
|
+
"avalanche",
|
|
341
|
+
"avocado",
|
|
342
|
+
"award-01",
|
|
343
|
+
"award-02",
|
|
344
|
+
"award-03",
|
|
345
|
+
"award-04",
|
|
346
|
+
"award-05",
|
|
347
|
+
"baby-01",
|
|
348
|
+
"baby-02",
|
|
349
|
+
"baby-bed-01",
|
|
350
|
+
"baby-bed-02",
|
|
351
|
+
"baby-bottle",
|
|
352
|
+
"baby-boy-dress",
|
|
353
|
+
"baby-girl-dress",
|
|
354
|
+
"back-muscle-body",
|
|
355
|
+
"background",
|
|
356
|
+
"backpack-01",
|
|
357
|
+
"backpack-02",
|
|
358
|
+
"backpack-03",
|
|
359
|
+
"backward-01",
|
|
360
|
+
"backward-02",
|
|
361
|
+
"bacteria",
|
|
362
|
+
"badminton",
|
|
363
|
+
"badminton-shuttle",
|
|
364
|
+
"balance-scale",
|
|
365
|
+
"balloons",
|
|
366
|
+
"banana",
|
|
367
|
+
"bandage",
|
|
368
|
+
"bank",
|
|
369
|
+
"bar-chart",
|
|
370
|
+
"bar-chart-horizontal",
|
|
371
|
+
"bar-code-01",
|
|
372
|
+
"bar-code-02",
|
|
373
|
+
"barns",
|
|
374
|
+
"baseball",
|
|
375
|
+
"baseball-bat",
|
|
376
|
+
"baseball-helmet",
|
|
377
|
+
"bash",
|
|
378
|
+
"basketball-01",
|
|
379
|
+
"basketball-02",
|
|
380
|
+
"basketball-hoop",
|
|
381
|
+
"bathtub-01",
|
|
382
|
+
"bathtub-02",
|
|
383
|
+
"batteries-energy",
|
|
384
|
+
"battery-charging-01",
|
|
385
|
+
"battery-charging-02",
|
|
386
|
+
"battery-eco-charging",
|
|
387
|
+
"battery-empty",
|
|
388
|
+
"battery-full",
|
|
389
|
+
"battery-low",
|
|
390
|
+
"battery-medium-01",
|
|
391
|
+
"battery-medium-02",
|
|
392
|
+
"bbq-grill",
|
|
393
|
+
"beach",
|
|
394
|
+
"beach-02",
|
|
395
|
+
"beater",
|
|
396
|
+
"bebo",
|
|
397
|
+
"bed",
|
|
398
|
+
"bed-bunk",
|
|
399
|
+
"bed-double",
|
|
400
|
+
"bed-single-01",
|
|
401
|
+
"bed-single-02",
|
|
402
|
+
"behance-01",
|
|
403
|
+
"behance-02",
|
|
404
|
+
"belt",
|
|
405
|
+
"bend-tool",
|
|
406
|
+
"berlin",
|
|
407
|
+
"berlin-tower",
|
|
408
|
+
"beta",
|
|
409
|
+
"bicycle",
|
|
410
|
+
"bicycle-01",
|
|
411
|
+
"billiard-01",
|
|
412
|
+
"billiard-02",
|
|
413
|
+
"binary-code",
|
|
414
|
+
"bing",
|
|
415
|
+
"binoculars",
|
|
416
|
+
"bio-energy",
|
|
417
|
+
"biomass-energy",
|
|
418
|
+
"biometric-access",
|
|
419
|
+
"biometric-device",
|
|
420
|
+
"birthday-cake",
|
|
421
|
+
"biscuit",
|
|
422
|
+
"bisht",
|
|
423
|
+
"bitcoin",
|
|
424
|
+
"bitcoin-01",
|
|
425
|
+
"bitcoin-02",
|
|
426
|
+
"bitcoin-03",
|
|
427
|
+
"bitcoin-04",
|
|
428
|
+
"bitcoin-bag",
|
|
429
|
+
"bitcoin-circle",
|
|
430
|
+
"bitcoin-cloud",
|
|
431
|
+
"bitcoin-cpu",
|
|
432
|
+
"bitcoin-credit-card",
|
|
433
|
+
"bitcoin-database",
|
|
434
|
+
"bitcoin-down-01",
|
|
435
|
+
"bitcoin-down-02",
|
|
436
|
+
"bitcoin-ellipse",
|
|
437
|
+
"bitcoin-eye",
|
|
438
|
+
"bitcoin-filter",
|
|
439
|
+
"bitcoin-flashdisk",
|
|
440
|
+
"bitcoin-graph",
|
|
441
|
+
"bitcoin-invoice",
|
|
442
|
+
"bitcoin-key",
|
|
443
|
+
"bitcoin-location",
|
|
444
|
+
"bitcoin-lock",
|
|
445
|
+
"bitcoin-mail",
|
|
446
|
+
"bitcoin-mind",
|
|
447
|
+
"bitcoin-money-01",
|
|
448
|
+
"bitcoin-money-02",
|
|
449
|
+
"bitcoin-pie-chart",
|
|
450
|
+
"bitcoin-presentation",
|
|
451
|
+
"bitcoin-receipt",
|
|
452
|
+
"bitcoin-receive",
|
|
453
|
+
"bitcoin-rectangle",
|
|
454
|
+
"bitcoin-safe",
|
|
455
|
+
"bitcoin-search",
|
|
456
|
+
"bitcoin-send",
|
|
457
|
+
"bitcoin-setting",
|
|
458
|
+
"bitcoin-shield",
|
|
459
|
+
"bitcoin-shopping",
|
|
460
|
+
"bitcoin-smartphone-01",
|
|
461
|
+
"bitcoin-smartphone-02",
|
|
462
|
+
"bitcoin-square",
|
|
463
|
+
"bitcoin-store",
|
|
464
|
+
"bitcoin-tag",
|
|
465
|
+
"bitcoin-target",
|
|
466
|
+
"bitcoin-transaction",
|
|
467
|
+
"bitcoin-up-01",
|
|
468
|
+
"bitcoin-up-02",
|
|
469
|
+
"bitcoin-wallet",
|
|
470
|
+
"bitcoin-withdraw",
|
|
471
|
+
"black-hole",
|
|
472
|
+
"black-hole-01",
|
|
473
|
+
"blend",
|
|
474
|
+
"blender",
|
|
475
|
+
"block-game",
|
|
476
|
+
"blockchain-01",
|
|
477
|
+
"blockchain-02",
|
|
478
|
+
"blockchain-03",
|
|
479
|
+
"blockchain-04",
|
|
480
|
+
"blockchain-05",
|
|
481
|
+
"blockchain-06",
|
|
482
|
+
"blockchain-07",
|
|
483
|
+
"blocked",
|
|
484
|
+
"blogger",
|
|
485
|
+
"blood",
|
|
486
|
+
"blood-bag",
|
|
487
|
+
"blood-bottle",
|
|
488
|
+
"blood-pressure",
|
|
489
|
+
"blood-type",
|
|
490
|
+
"bluesky",
|
|
491
|
+
"bluetooth",
|
|
492
|
+
"bluetooth-circle",
|
|
493
|
+
"bluetooth-not-connected",
|
|
494
|
+
"bluetooth-search",
|
|
495
|
+
"bluetooth-square",
|
|
496
|
+
"blur",
|
|
497
|
+
"blush-brush-01",
|
|
498
|
+
"blush-brush-02",
|
|
499
|
+
"board-math",
|
|
500
|
+
"boat",
|
|
501
|
+
"body-armor",
|
|
502
|
+
"body-part-leg",
|
|
503
|
+
"body-part-muscle",
|
|
504
|
+
"body-part-six-pack",
|
|
505
|
+
"body-soap",
|
|
506
|
+
"body-weight",
|
|
507
|
+
"bomb",
|
|
508
|
+
"bone-01",
|
|
509
|
+
"bone-02",
|
|
510
|
+
"book-01",
|
|
511
|
+
"book-02",
|
|
512
|
+
"book-03",
|
|
513
|
+
"book-04",
|
|
514
|
+
"book-bookmark-01",
|
|
515
|
+
"book-bookmark-02",
|
|
516
|
+
"book-download",
|
|
517
|
+
"book-edit",
|
|
518
|
+
"book-open-01",
|
|
519
|
+
"book-open-02",
|
|
520
|
+
"book-upload",
|
|
521
|
+
"bookmark-01",
|
|
522
|
+
"bookmark-02",
|
|
523
|
+
"bookmark-03",
|
|
524
|
+
"bookmark-add-01",
|
|
525
|
+
"bookmark-add-02",
|
|
526
|
+
"bookmark-block-01",
|
|
527
|
+
"bookmark-block-02",
|
|
528
|
+
"bookmark-check-01",
|
|
529
|
+
"bookmark-check-02",
|
|
530
|
+
"bookmark-minus-01",
|
|
531
|
+
"bookmark-minus-02",
|
|
532
|
+
"bookmark-off-01",
|
|
533
|
+
"bookmark-off-02",
|
|
534
|
+
"bookmark-remove-01",
|
|
535
|
+
"bookmark-remove-02",
|
|
536
|
+
"books-01",
|
|
537
|
+
"books-02",
|
|
538
|
+
"bookshelf-01",
|
|
539
|
+
"bookshelf-02",
|
|
540
|
+
"bookshelf-03",
|
|
541
|
+
"bootstrap",
|
|
542
|
+
"border-all-01",
|
|
543
|
+
"border-all-02",
|
|
544
|
+
"border-bottom-01",
|
|
545
|
+
"border-bottom-02",
|
|
546
|
+
"border-full",
|
|
547
|
+
"border-horizontal",
|
|
548
|
+
"border-inner",
|
|
549
|
+
"border-left-01",
|
|
550
|
+
"border-left-02",
|
|
551
|
+
"border-none-01",
|
|
552
|
+
"border-none-02",
|
|
553
|
+
"border-right-01",
|
|
554
|
+
"border-right-02",
|
|
555
|
+
"border-top-01",
|
|
556
|
+
"border-top-02",
|
|
557
|
+
"border-vertical",
|
|
558
|
+
"borobudur",
|
|
559
|
+
"bot",
|
|
560
|
+
"bounce-left",
|
|
561
|
+
"bounce-right",
|
|
562
|
+
"bounding-box",
|
|
563
|
+
"bow-tie",
|
|
564
|
+
"bowling",
|
|
565
|
+
"bowling-ball",
|
|
566
|
+
"bowling-pins",
|
|
567
|
+
"boxing-bag",
|
|
568
|
+
"boxing-glove",
|
|
569
|
+
"boxing-glove-01",
|
|
570
|
+
"brain",
|
|
571
|
+
"brain-01",
|
|
572
|
+
"brain-02",
|
|
573
|
+
"brain-03",
|
|
574
|
+
"brandfetch",
|
|
575
|
+
"bread-01",
|
|
576
|
+
"bread-02",
|
|
577
|
+
"bread-03",
|
|
578
|
+
"bread-04",
|
|
579
|
+
"breast-pump",
|
|
580
|
+
"bridge",
|
|
581
|
+
"briefcase-01",
|
|
582
|
+
"briefcase-02",
|
|
583
|
+
"briefcase-03",
|
|
584
|
+
"briefcase-04",
|
|
585
|
+
"briefcase-05",
|
|
586
|
+
"briefcase-06",
|
|
587
|
+
"briefcase-07",
|
|
588
|
+
"briefcase-08",
|
|
589
|
+
"briefcase-09",
|
|
590
|
+
"briefcase-dollar",
|
|
591
|
+
"broccoli",
|
|
592
|
+
"brochure",
|
|
593
|
+
"broken-bone",
|
|
594
|
+
"browser",
|
|
595
|
+
"brush",
|
|
596
|
+
"bubble-chat",
|
|
597
|
+
"bubble-chat-add",
|
|
598
|
+
"bubble-chat-blocked",
|
|
599
|
+
"bubble-chat-cancel",
|
|
600
|
+
"bubble-chat-delay",
|
|
601
|
+
"bubble-chat-done",
|
|
602
|
+
"bubble-chat-download-01",
|
|
603
|
+
"bubble-chat-download-02",
|
|
604
|
+
"bubble-chat-edit",
|
|
605
|
+
"bubble-chat-favourite",
|
|
606
|
+
"bubble-chat-income",
|
|
607
|
+
"bubble-chat-lock",
|
|
608
|
+
"bubble-chat-notification",
|
|
609
|
+
"bubble-chat-outcome",
|
|
610
|
+
"bubble-chat-preview",
|
|
611
|
+
"bubble-chat-question",
|
|
612
|
+
"bubble-chat-search",
|
|
613
|
+
"bubble-chat-secure",
|
|
614
|
+
"bubble-chat-translate",
|
|
615
|
+
"bubble-chat-unlock",
|
|
616
|
+
"bubble-chat-upload",
|
|
617
|
+
"bubble-chat-user",
|
|
618
|
+
"bubble-tea-01",
|
|
619
|
+
"bubble-tea-02",
|
|
620
|
+
"bug-01",
|
|
621
|
+
"bug-02",
|
|
622
|
+
"building-01",
|
|
623
|
+
"building-02",
|
|
624
|
+
"building-03",
|
|
625
|
+
"building-04",
|
|
626
|
+
"building-05",
|
|
627
|
+
"building-06",
|
|
628
|
+
"bulb",
|
|
629
|
+
"bulb-charging",
|
|
630
|
+
"bulletproof-vest",
|
|
631
|
+
"burning-cd",
|
|
632
|
+
"bus-01",
|
|
633
|
+
"bus-02",
|
|
634
|
+
"bus-03",
|
|
635
|
+
"c++",
|
|
636
|
+
"c-programming",
|
|
637
|
+
"cabinet-01",
|
|
638
|
+
"cabinet-02",
|
|
639
|
+
"cabinet-03",
|
|
640
|
+
"cabinet-04",
|
|
641
|
+
"cable-car",
|
|
642
|
+
"cactus",
|
|
643
|
+
"caduceus",
|
|
644
|
+
"cafe",
|
|
645
|
+
"calculate",
|
|
646
|
+
"calculator",
|
|
647
|
+
"calculator-01",
|
|
648
|
+
"calendar-01",
|
|
649
|
+
"calendar-02",
|
|
650
|
+
"calendar-03",
|
|
651
|
+
"calendar-04",
|
|
652
|
+
"calendar-add-01",
|
|
653
|
+
"calendar-add-02",
|
|
654
|
+
"calendar-block-01",
|
|
655
|
+
"calendar-block-02",
|
|
656
|
+
"calendar-check-in-01",
|
|
657
|
+
"calendar-check-in-02",
|
|
658
|
+
"calendar-check-out-01",
|
|
659
|
+
"calendar-check-out-02",
|
|
660
|
+
"calendar-download-01",
|
|
661
|
+
"calendar-download-02",
|
|
662
|
+
"calendar-favorite-01",
|
|
663
|
+
"calendar-favorite-02",
|
|
664
|
+
"calendar-lock-01",
|
|
665
|
+
"calendar-lock-02",
|
|
666
|
+
"calendar-love-01",
|
|
667
|
+
"calendar-love-02",
|
|
668
|
+
"calendar-minus-01",
|
|
669
|
+
"calendar-minus-02",
|
|
670
|
+
"calendar-remove-01",
|
|
671
|
+
"calendar-remove-02",
|
|
672
|
+
"calendar-setting-01",
|
|
673
|
+
"calendar-setting-02",
|
|
674
|
+
"calendar-upload-01",
|
|
675
|
+
"calendar-upload-02",
|
|
676
|
+
"call",
|
|
677
|
+
"call-02",
|
|
678
|
+
"call-add",
|
|
679
|
+
"call-add-02",
|
|
680
|
+
"call-blocked",
|
|
681
|
+
"call-blocked-02",
|
|
682
|
+
"call-disabled",
|
|
683
|
+
"call-disabled-02",
|
|
684
|
+
"call-done",
|
|
685
|
+
"call-end-01",
|
|
686
|
+
"call-end-02",
|
|
687
|
+
"call-end-03",
|
|
688
|
+
"call-end-04",
|
|
689
|
+
"call-incoming-01",
|
|
690
|
+
"call-incoming-02",
|
|
691
|
+
"call-incoming-03",
|
|
692
|
+
"call-incoming-04",
|
|
693
|
+
"call-internal",
|
|
694
|
+
"call-internal-02",
|
|
695
|
+
"call-locked",
|
|
696
|
+
"call-locked-02",
|
|
697
|
+
"call-minus",
|
|
698
|
+
"call-minus-02",
|
|
699
|
+
"call-missed-01",
|
|
700
|
+
"call-missed-02",
|
|
701
|
+
"call-missed-03",
|
|
702
|
+
"call-missed-04",
|
|
703
|
+
"call-outgoing-01",
|
|
704
|
+
"call-outgoing-02",
|
|
705
|
+
"call-outgoing-03",
|
|
706
|
+
"call-outgoing-04",
|
|
707
|
+
"call-paused",
|
|
708
|
+
"call-paused-02",
|
|
709
|
+
"call-received",
|
|
710
|
+
"call-received-02",
|
|
711
|
+
"call-ringing-01",
|
|
712
|
+
"call-ringing-02",
|
|
713
|
+
"call-ringing-03",
|
|
714
|
+
"call-ringing-04",
|
|
715
|
+
"call-unlocked",
|
|
716
|
+
"call-unlocked-02",
|
|
717
|
+
"calling",
|
|
718
|
+
"calling-02",
|
|
719
|
+
"camel-left",
|
|
720
|
+
"camel-right",
|
|
721
|
+
"camera-01",
|
|
722
|
+
"camera-02",
|
|
723
|
+
"camera-add-01",
|
|
724
|
+
"camera-add-02",
|
|
725
|
+
"camera-automatically-01",
|
|
726
|
+
"camera-automatically-02",
|
|
727
|
+
"camera-lens",
|
|
728
|
+
"camera-microphone-01",
|
|
729
|
+
"camera-microphone-02",
|
|
730
|
+
"camera-night-mode-01",
|
|
731
|
+
"camera-night-mode-02",
|
|
732
|
+
"camera-off-01",
|
|
733
|
+
"camera-off-02",
|
|
734
|
+
"camera-rotated-01",
|
|
735
|
+
"camera-rotated-02",
|
|
736
|
+
"camera-smile-01",
|
|
737
|
+
"camera-smile-02",
|
|
738
|
+
"camera-tripod",
|
|
739
|
+
"camera-video",
|
|
740
|
+
"camper",
|
|
741
|
+
"campfire",
|
|
742
|
+
"cancel-01",
|
|
743
|
+
"cancel-02",
|
|
744
|
+
"cancel-circle",
|
|
745
|
+
"cancel-circle-half-dot",
|
|
746
|
+
"cancel-square",
|
|
747
|
+
"candelier-01",
|
|
748
|
+
"candelier-02",
|
|
749
|
+
"canvas",
|
|
750
|
+
"cap",
|
|
751
|
+
"cap-projecting",
|
|
752
|
+
"cap-round",
|
|
753
|
+
"cap-straight",
|
|
754
|
+
"capcut",
|
|
755
|
+
"capcut-rectangle",
|
|
756
|
+
"car-01",
|
|
757
|
+
"car-02",
|
|
758
|
+
"car-03",
|
|
759
|
+
"car-04",
|
|
760
|
+
"car-05",
|
|
761
|
+
"car-alert",
|
|
762
|
+
"car-parking-01",
|
|
763
|
+
"car-parking-02",
|
|
764
|
+
"car-signal",
|
|
765
|
+
"car-time",
|
|
766
|
+
"caravan",
|
|
767
|
+
"card-exchange-01",
|
|
768
|
+
"card-exchange-02",
|
|
769
|
+
"cardigan",
|
|
770
|
+
"cardiogram-01",
|
|
771
|
+
"cardiogram-02",
|
|
772
|
+
"cards-01",
|
|
773
|
+
"cards-02",
|
|
774
|
+
"cargo-ship",
|
|
775
|
+
"carousel-horizontal",
|
|
776
|
+
"carousel-horizontal-02",
|
|
777
|
+
"carousel-vertical",
|
|
778
|
+
"carrot",
|
|
779
|
+
"cash-01",
|
|
780
|
+
"cash-02",
|
|
781
|
+
"cashback",
|
|
782
|
+
"cashier",
|
|
783
|
+
"cashier-02",
|
|
784
|
+
"castle",
|
|
785
|
+
"castle-01",
|
|
786
|
+
"castle-02",
|
|
787
|
+
"catalogue",
|
|
788
|
+
"cayan-tower",
|
|
789
|
+
"cctv-camera",
|
|
790
|
+
"cd",
|
|
791
|
+
"cells",
|
|
792
|
+
"cellular-network",
|
|
793
|
+
"cellular-network-offline",
|
|
794
|
+
"celsius",
|
|
795
|
+
"center-focus",
|
|
796
|
+
"central-shaheed-minar",
|
|
797
|
+
"centralized",
|
|
798
|
+
"certificate-01",
|
|
799
|
+
"certificate-02",
|
|
800
|
+
"chair-01",
|
|
801
|
+
"chair-02",
|
|
802
|
+
"chair-03",
|
|
803
|
+
"chair-04",
|
|
804
|
+
"chair-05",
|
|
805
|
+
"chair-barber",
|
|
806
|
+
"champion",
|
|
807
|
+
"change-screen-mode",
|
|
808
|
+
"character-phonetic",
|
|
809
|
+
"charity",
|
|
810
|
+
"chart",
|
|
811
|
+
"chart-01",
|
|
812
|
+
"chart-02",
|
|
813
|
+
"chart-03",
|
|
814
|
+
"chart-average",
|
|
815
|
+
"chart-bar-line",
|
|
816
|
+
"chart-breakout-circle",
|
|
817
|
+
"chart-breakout-square",
|
|
818
|
+
"chart-bubble-01",
|
|
819
|
+
"chart-bubble-02",
|
|
820
|
+
"chart-column",
|
|
821
|
+
"chart-decrease",
|
|
822
|
+
"chart-down",
|
|
823
|
+
"chart-evaluation",
|
|
824
|
+
"chart-high-low",
|
|
825
|
+
"chart-histogram",
|
|
826
|
+
"chart-increase",
|
|
827
|
+
"chart-line-data-01",
|
|
828
|
+
"chart-line-data-02",
|
|
829
|
+
"chart-line-data-03",
|
|
830
|
+
"chart-maximum",
|
|
831
|
+
"chart-medium",
|
|
832
|
+
"chart-minimum",
|
|
833
|
+
"chart-radar",
|
|
834
|
+
"chart-relationship",
|
|
835
|
+
"chart-ring",
|
|
836
|
+
"chart-rose",
|
|
837
|
+
"chart-scatter",
|
|
838
|
+
"chart-up",
|
|
839
|
+
"chat-bot",
|
|
840
|
+
"chat-gpt",
|
|
841
|
+
"chatting-01",
|
|
842
|
+
"check-list",
|
|
843
|
+
"check-unread-01",
|
|
844
|
+
"check-unread-02",
|
|
845
|
+
"check-unread-03",
|
|
846
|
+
"check-unread-04",
|
|
847
|
+
"checkmark-badge-01",
|
|
848
|
+
"checkmark-badge-02",
|
|
849
|
+
"checkmark-badge-03",
|
|
850
|
+
"checkmark-badge-04",
|
|
851
|
+
"checkmark-circle-01",
|
|
852
|
+
"checkmark-circle-02",
|
|
853
|
+
"checkmark-circle-03",
|
|
854
|
+
"checkmark-circle-04",
|
|
855
|
+
"checkmark-square-01",
|
|
856
|
+
"checkmark-square-02",
|
|
857
|
+
"checkmark-square-03",
|
|
858
|
+
"checkmark-square-04",
|
|
859
|
+
"cheese",
|
|
860
|
+
"cheese-cake-01",
|
|
861
|
+
"cheese-cake-02",
|
|
862
|
+
"chef",
|
|
863
|
+
"chef-hat",
|
|
864
|
+
"chemistry-01",
|
|
865
|
+
"chemistry-02",
|
|
866
|
+
"chemistry-03",
|
|
867
|
+
"cherry",
|
|
868
|
+
"chess-01",
|
|
869
|
+
"chess-02",
|
|
870
|
+
"chess-pawn",
|
|
871
|
+
"chicken-thighs",
|
|
872
|
+
"child",
|
|
873
|
+
"chimney",
|
|
874
|
+
"china-temple",
|
|
875
|
+
"chip",
|
|
876
|
+
"chip-02",
|
|
877
|
+
"chocolate",
|
|
878
|
+
"chopsticks",
|
|
879
|
+
"chrome",
|
|
880
|
+
"chrysler",
|
|
881
|
+
"cinnamon-roll",
|
|
882
|
+
"circle",
|
|
883
|
+
"circle-arrow-data-transfer-diagonal",
|
|
884
|
+
"circle-arrow-data-transfer-horizontal",
|
|
885
|
+
"circle-arrow-data-transfer-vertical",
|
|
886
|
+
"circle-arrow-diagonal-01",
|
|
887
|
+
"circle-arrow-diagonal-02",
|
|
888
|
+
"circle-arrow-down-01",
|
|
889
|
+
"circle-arrow-down-02",
|
|
890
|
+
"circle-arrow-down-03",
|
|
891
|
+
"circle-arrow-down-double",
|
|
892
|
+
"circle-arrow-down-left",
|
|
893
|
+
"circle-arrow-down-right",
|
|
894
|
+
"circle-arrow-expand-01",
|
|
895
|
+
"circle-arrow-expand-02",
|
|
896
|
+
"circle-arrow-horizontal",
|
|
897
|
+
"circle-arrow-left-01",
|
|
898
|
+
"circle-arrow-left-02",
|
|
899
|
+
"circle-arrow-left-03",
|
|
900
|
+
"circle-arrow-left-double",
|
|
901
|
+
"circle-arrow-left-right",
|
|
902
|
+
"circle-arrow-move-down-left",
|
|
903
|
+
"circle-arrow-move-down-right",
|
|
904
|
+
"circle-arrow-move-left-down",
|
|
905
|
+
"circle-arrow-move-right-down",
|
|
906
|
+
"circle-arrow-move-up-left",
|
|
907
|
+
"circle-arrow-move-up-right",
|
|
908
|
+
"circle-arrow-reload-01",
|
|
909
|
+
"circle-arrow-reload-02",
|
|
910
|
+
"circle-arrow-right-01",
|
|
911
|
+
"circle-arrow-right-02",
|
|
912
|
+
"circle-arrow-right-03",
|
|
913
|
+
"circle-arrow-right-double",
|
|
914
|
+
"circle-arrow-shrink-01",
|
|
915
|
+
"circle-arrow-shrink-02",
|
|
916
|
+
"circle-arrow-up-01",
|
|
917
|
+
"circle-arrow-up-02",
|
|
918
|
+
"circle-arrow-up-03",
|
|
919
|
+
"circle-arrow-up-double",
|
|
920
|
+
"circle-arrow-up-down",
|
|
921
|
+
"circle-arrow-up-left",
|
|
922
|
+
"circle-arrow-up-right",
|
|
923
|
+
"circle-arrow-vertical",
|
|
924
|
+
"circle-lock-01",
|
|
925
|
+
"circle-lock-02",
|
|
926
|
+
"circle-lock-add-01",
|
|
927
|
+
"circle-lock-add-02",
|
|
928
|
+
"circle-lock-check-01",
|
|
929
|
+
"circle-lock-check-02",
|
|
930
|
+
"circle-lock-minus-01",
|
|
931
|
+
"circle-lock-minus-02",
|
|
932
|
+
"circle-lock-remove-01",
|
|
933
|
+
"circle-lock-remove-02",
|
|
934
|
+
"circle-password",
|
|
935
|
+
"circle-unlock-01",
|
|
936
|
+
"circle-unlock-02",
|
|
937
|
+
"city-01",
|
|
938
|
+
"city-02",
|
|
939
|
+
"city-03",
|
|
940
|
+
"clapping-01",
|
|
941
|
+
"clapping-02",
|
|
942
|
+
"clean",
|
|
943
|
+
"cleaning-bucket",
|
|
944
|
+
"clinic",
|
|
945
|
+
"clip",
|
|
946
|
+
"cliparts",
|
|
947
|
+
"clipboard",
|
|
948
|
+
"clock-01",
|
|
949
|
+
"clock-02",
|
|
950
|
+
"clock-03",
|
|
951
|
+
"clock-04",
|
|
952
|
+
"clock-05",
|
|
953
|
+
"clock-tower",
|
|
954
|
+
"closed-caption",
|
|
955
|
+
"closed-caption-alt",
|
|
956
|
+
"clothes",
|
|
957
|
+
"cloud",
|
|
958
|
+
"cloud-angled-rain",
|
|
959
|
+
"cloud-angled-rain-zap",
|
|
960
|
+
"cloud-angled-zap",
|
|
961
|
+
"cloud-big-rain",
|
|
962
|
+
"cloud-download",
|
|
963
|
+
"cloud-fast-wind",
|
|
964
|
+
"cloud-hailstone",
|
|
965
|
+
"cloud-little-rain",
|
|
966
|
+
"cloud-little-snow",
|
|
967
|
+
"cloud-loading",
|
|
968
|
+
"cloud-mid-rain",
|
|
969
|
+
"cloud-mid-snow",
|
|
970
|
+
"cloud-saving-done-01",
|
|
971
|
+
"cloud-saving-done-02",
|
|
972
|
+
"cloud-server",
|
|
973
|
+
"cloud-slow-wind",
|
|
974
|
+
"cloud-snow",
|
|
975
|
+
"cloud-upload",
|
|
976
|
+
"clubs-01",
|
|
977
|
+
"clubs-02",
|
|
978
|
+
"co-present",
|
|
979
|
+
"code",
|
|
980
|
+
"code-circle",
|
|
981
|
+
"code-folder",
|
|
982
|
+
"code-square",
|
|
983
|
+
"codesandbox",
|
|
984
|
+
"coffee-01",
|
|
985
|
+
"coffee-02",
|
|
986
|
+
"coffee-beans",
|
|
987
|
+
"coinbase",
|
|
988
|
+
"coins-01",
|
|
989
|
+
"coins-02",
|
|
990
|
+
"coins-bitcoin",
|
|
991
|
+
"coins-dollar",
|
|
992
|
+
"coins-euro",
|
|
993
|
+
"coins-pound",
|
|
994
|
+
"coins-swap",
|
|
995
|
+
"coins-yen",
|
|
996
|
+
"collections-bookmark",
|
|
997
|
+
"color-picker",
|
|
998
|
+
"colors",
|
|
999
|
+
"colosseum",
|
|
1000
|
+
"column-delete",
|
|
1001
|
+
"column-insert",
|
|
1002
|
+
"comet-01",
|
|
1003
|
+
"comet-02",
|
|
1004
|
+
"coming-soon-01",
|
|
1005
|
+
"coming-soon-02",
|
|
1006
|
+
"command",
|
|
1007
|
+
"command-line",
|
|
1008
|
+
"comment-01",
|
|
1009
|
+
"comment-02",
|
|
1010
|
+
"comment-add-01",
|
|
1011
|
+
"comment-add-02",
|
|
1012
|
+
"comment-block-01",
|
|
1013
|
+
"comment-block-02",
|
|
1014
|
+
"comment-remove-01",
|
|
1015
|
+
"comment-remove-02",
|
|
1016
|
+
"compass",
|
|
1017
|
+
"compass-01",
|
|
1018
|
+
"complaint",
|
|
1019
|
+
"computer",
|
|
1020
|
+
"computer-add",
|
|
1021
|
+
"computer-check",
|
|
1022
|
+
"computer-cloud",
|
|
1023
|
+
"computer-desk-01",
|
|
1024
|
+
"computer-desk-02",
|
|
1025
|
+
"computer-desk-03",
|
|
1026
|
+
"computer-dollar",
|
|
1027
|
+
"computer-phone-sync",
|
|
1028
|
+
"computer-programming-01",
|
|
1029
|
+
"computer-programming-02",
|
|
1030
|
+
"computer-protection",
|
|
1031
|
+
"computer-remove",
|
|
1032
|
+
"computer-settings",
|
|
1033
|
+
"computer-video",
|
|
1034
|
+
"computer-video-call",
|
|
1035
|
+
"cone-01",
|
|
1036
|
+
"cone-02",
|
|
1037
|
+
"conference",
|
|
1038
|
+
"configuration-01",
|
|
1039
|
+
"configuration-02",
|
|
1040
|
+
"confused",
|
|
1041
|
+
"congruent-to",
|
|
1042
|
+
"congruent-to-circle",
|
|
1043
|
+
"congruent-to-square",
|
|
1044
|
+
"connect",
|
|
1045
|
+
"console",
|
|
1046
|
+
"constellation",
|
|
1047
|
+
"contact",
|
|
1048
|
+
"contact-01",
|
|
1049
|
+
"contact-02",
|
|
1050
|
+
"contact-book",
|
|
1051
|
+
"container-truck",
|
|
1052
|
+
"container-truck-01",
|
|
1053
|
+
"container-truck-02",
|
|
1054
|
+
"content-writing",
|
|
1055
|
+
"contracts",
|
|
1056
|
+
"conversation",
|
|
1057
|
+
"cook-book",
|
|
1058
|
+
"cookie",
|
|
1059
|
+
"coordinate-01",
|
|
1060
|
+
"coordinate-02",
|
|
1061
|
+
"copilot",
|
|
1062
|
+
"copy-01",
|
|
1063
|
+
"copy-02",
|
|
1064
|
+
"copy-link",
|
|
1065
|
+
"copyright",
|
|
1066
|
+
"corn",
|
|
1067
|
+
"corporate",
|
|
1068
|
+
"cos",
|
|
1069
|
+
"cosine-01",
|
|
1070
|
+
"cosine-02",
|
|
1071
|
+
"cottage",
|
|
1072
|
+
"cotton-candy",
|
|
1073
|
+
"coupon-01",
|
|
1074
|
+
"coupon-02",
|
|
1075
|
+
"coupon-03",
|
|
1076
|
+
"coupon-percent",
|
|
1077
|
+
"course",
|
|
1078
|
+
"court-house",
|
|
1079
|
+
"court-law",
|
|
1080
|
+
"covariate",
|
|
1081
|
+
"covid-info",
|
|
1082
|
+
"cowboy-hat",
|
|
1083
|
+
"cpu",
|
|
1084
|
+
"cpu-charge",
|
|
1085
|
+
"cpu-settings",
|
|
1086
|
+
"crab",
|
|
1087
|
+
"crane",
|
|
1088
|
+
"crazy",
|
|
1089
|
+
"creative-market",
|
|
1090
|
+
"credit-card",
|
|
1091
|
+
"credit-card-accept",
|
|
1092
|
+
"credit-card-add",
|
|
1093
|
+
"credit-card-change",
|
|
1094
|
+
"credit-card-defrost",
|
|
1095
|
+
"credit-card-freeze",
|
|
1096
|
+
"credit-card-not-accept",
|
|
1097
|
+
"credit-card-not-found",
|
|
1098
|
+
"credit-card-pos",
|
|
1099
|
+
"credit-card-validation",
|
|
1100
|
+
"cricket-bat",
|
|
1101
|
+
"cricket-helmet",
|
|
1102
|
+
"croissant",
|
|
1103
|
+
"crop",
|
|
1104
|
+
"crowdfunding",
|
|
1105
|
+
"crown",
|
|
1106
|
+
"crying",
|
|
1107
|
+
"csv-01",
|
|
1108
|
+
"csv-02",
|
|
1109
|
+
"cube",
|
|
1110
|
+
"cupcake-01",
|
|
1111
|
+
"cupcake-02",
|
|
1112
|
+
"cupcake-03",
|
|
1113
|
+
"curling",
|
|
1114
|
+
"cursor-01",
|
|
1115
|
+
"cursor-02",
|
|
1116
|
+
"cursor-add-selection-01",
|
|
1117
|
+
"cursor-add-selection-02",
|
|
1118
|
+
"cursor-circle-selection-01",
|
|
1119
|
+
"cursor-circle-selection-02",
|
|
1120
|
+
"cursor-disabled-01",
|
|
1121
|
+
"cursor-disabled-02",
|
|
1122
|
+
"cursor-edit-01",
|
|
1123
|
+
"cursor-edit-02",
|
|
1124
|
+
"cursor-hold-01",
|
|
1125
|
+
"cursor-hold-02",
|
|
1126
|
+
"cursor-in-window",
|
|
1127
|
+
"cursor-info-01",
|
|
1128
|
+
"cursor-info-02",
|
|
1129
|
+
"cursor-loading-01",
|
|
1130
|
+
"cursor-loading-02",
|
|
1131
|
+
"cursor-magic-selection-01",
|
|
1132
|
+
"cursor-magic-selection-02",
|
|
1133
|
+
"cursor-move-01",
|
|
1134
|
+
"cursor-move-02",
|
|
1135
|
+
"cursor-pointer-01",
|
|
1136
|
+
"cursor-pointer-02",
|
|
1137
|
+
"cursor-progress-01",
|
|
1138
|
+
"cursor-progress-02",
|
|
1139
|
+
"cursor-progress-03",
|
|
1140
|
+
"cursor-progress-04",
|
|
1141
|
+
"cursor-rectangle-selection-01",
|
|
1142
|
+
"cursor-rectangle-selection-02",
|
|
1143
|
+
"cursor-remove-selection-01",
|
|
1144
|
+
"cursor-remove-selection-02",
|
|
1145
|
+
"cursor-text",
|
|
1146
|
+
"curtains",
|
|
1147
|
+
"curvy-left-direction",
|
|
1148
|
+
"curvy-left-right-direction",
|
|
1149
|
+
"curvy-right-direction",
|
|
1150
|
+
"curvy-up-down-direction",
|
|
1151
|
+
"custom-field",
|
|
1152
|
+
"customer-service",
|
|
1153
|
+
"customer-service-01",
|
|
1154
|
+
"customer-service-02",
|
|
1155
|
+
"customer-support",
|
|
1156
|
+
"customize",
|
|
1157
|
+
"cylinder-01",
|
|
1158
|
+
"cylinder-02",
|
|
1159
|
+
"cylinder-03",
|
|
1160
|
+
"cylinder-04",
|
|
1161
|
+
"dallah",
|
|
1162
|
+
"danger",
|
|
1163
|
+
"dark-mode",
|
|
1164
|
+
"dart",
|
|
1165
|
+
"dashboard-browsing",
|
|
1166
|
+
"dashboard-circle",
|
|
1167
|
+
"dashboard-circle-add",
|
|
1168
|
+
"dashboard-circle-edit",
|
|
1169
|
+
"dashboard-circle-remove",
|
|
1170
|
+
"dashboard-circle-settings",
|
|
1171
|
+
"dashboard-speed-01",
|
|
1172
|
+
"dashboard-speed-02",
|
|
1173
|
+
"dashboard-square-01",
|
|
1174
|
+
"dashboard-square-02",
|
|
1175
|
+
"dashboard-square-03",
|
|
1176
|
+
"dashboard-square-add",
|
|
1177
|
+
"dashboard-square-edit",
|
|
1178
|
+
"dashboard-square-remove",
|
|
1179
|
+
"dashboard-square-setting",
|
|
1180
|
+
"dashed-line-01",
|
|
1181
|
+
"dashed-line-02",
|
|
1182
|
+
"dashed-line-circle",
|
|
1183
|
+
"data-recovery",
|
|
1184
|
+
"database",
|
|
1185
|
+
"database-01",
|
|
1186
|
+
"database-02",
|
|
1187
|
+
"database-add",
|
|
1188
|
+
"database-export",
|
|
1189
|
+
"database-import",
|
|
1190
|
+
"database-locked",
|
|
1191
|
+
"database-restore",
|
|
1192
|
+
"database-setting",
|
|
1193
|
+
"database-sync",
|
|
1194
|
+
"database-sync-01",
|
|
1195
|
+
"date-time",
|
|
1196
|
+
"dates",
|
|
1197
|
+
"dates-plate",
|
|
1198
|
+
"datev",
|
|
1199
|
+
"dead",
|
|
1200
|
+
"delete-01",
|
|
1201
|
+
"delete-02",
|
|
1202
|
+
"delete-03",
|
|
1203
|
+
"delete-04",
|
|
1204
|
+
"delete-column",
|
|
1205
|
+
"delete-put-back",
|
|
1206
|
+
"delete-row",
|
|
1207
|
+
"delete-throw",
|
|
1208
|
+
"delivered-sent",
|
|
1209
|
+
"delivery-box-01",
|
|
1210
|
+
"delivery-box-02",
|
|
1211
|
+
"delivery-delay-01",
|
|
1212
|
+
"delivery-delay-02",
|
|
1213
|
+
"delivery-return-01",
|
|
1214
|
+
"delivery-return-02",
|
|
1215
|
+
"delivery-secure-01",
|
|
1216
|
+
"delivery-secure-02",
|
|
1217
|
+
"delivery-sent-01",
|
|
1218
|
+
"delivery-sent-02",
|
|
1219
|
+
"delivery-tracking-01",
|
|
1220
|
+
"delivery-tracking-02",
|
|
1221
|
+
"delivery-truck-01",
|
|
1222
|
+
"delivery-truck-02",
|
|
1223
|
+
"delivery-view-01",
|
|
1224
|
+
"delivery-view-02",
|
|
1225
|
+
"dental-braces",
|
|
1226
|
+
"dental-broken-tooth",
|
|
1227
|
+
"dental-care",
|
|
1228
|
+
"dental-tooth",
|
|
1229
|
+
"departement",
|
|
1230
|
+
"desert",
|
|
1231
|
+
"desk",
|
|
1232
|
+
"desk-01",
|
|
1233
|
+
"desk-02",
|
|
1234
|
+
"developer",
|
|
1235
|
+
"deviantart",
|
|
1236
|
+
"device-access",
|
|
1237
|
+
"diagonal-scroll-point-01",
|
|
1238
|
+
"diagonal-scroll-point-02",
|
|
1239
|
+
"dialpad-circle-01",
|
|
1240
|
+
"dialpad-circle-02",
|
|
1241
|
+
"dialpad-square-01",
|
|
1242
|
+
"dialpad-square-02",
|
|
1243
|
+
"diameter",
|
|
1244
|
+
"diamond",
|
|
1245
|
+
"diamond-01",
|
|
1246
|
+
"diamond-02",
|
|
1247
|
+
"dice",
|
|
1248
|
+
"dice-faces-01",
|
|
1249
|
+
"dice-faces-02",
|
|
1250
|
+
"dice-faces-03",
|
|
1251
|
+
"dice-faces-04",
|
|
1252
|
+
"dice-faces-05",
|
|
1253
|
+
"dice-faces-06",
|
|
1254
|
+
"digestion",
|
|
1255
|
+
"digg",
|
|
1256
|
+
"digital-clock",
|
|
1257
|
+
"dim-sum-01",
|
|
1258
|
+
"dim-sum-02",
|
|
1259
|
+
"dining-table",
|
|
1260
|
+
"diploma",
|
|
1261
|
+
"direction-left-01",
|
|
1262
|
+
"direction-left-02",
|
|
1263
|
+
"direction-right-01",
|
|
1264
|
+
"direction-right-02",
|
|
1265
|
+
"directions-01",
|
|
1266
|
+
"directions-02",
|
|
1267
|
+
"disability-01",
|
|
1268
|
+
"disability-02",
|
|
1269
|
+
"discord",
|
|
1270
|
+
"discount",
|
|
1271
|
+
"discount-01",
|
|
1272
|
+
"discount-tag-01",
|
|
1273
|
+
"discount-tag-02",
|
|
1274
|
+
"discover-circle",
|
|
1275
|
+
"discover-square",
|
|
1276
|
+
"dish-01",
|
|
1277
|
+
"dish-02",
|
|
1278
|
+
"dish-washer",
|
|
1279
|
+
"displeased",
|
|
1280
|
+
"distribute-horizontal-center",
|
|
1281
|
+
"distribute-horizontal-left",
|
|
1282
|
+
"distribute-horizontal-right",
|
|
1283
|
+
"distribute-vertical-bottom",
|
|
1284
|
+
"distribute-vertical-center",
|
|
1285
|
+
"distribute-vertical-top",
|
|
1286
|
+
"distribution",
|
|
1287
|
+
"divide-sign",
|
|
1288
|
+
"divide-sign-circle",
|
|
1289
|
+
"divide-sign-square",
|
|
1290
|
+
"dna",
|
|
1291
|
+
"dna-01",
|
|
1292
|
+
"do-not-touch-01",
|
|
1293
|
+
"do-not-touch-02",
|
|
1294
|
+
"doc-01",
|
|
1295
|
+
"doc-02",
|
|
1296
|
+
"doctor-01",
|
|
1297
|
+
"doctor-02",
|
|
1298
|
+
"doctor-03",
|
|
1299
|
+
"document-attachment",
|
|
1300
|
+
"document-code",
|
|
1301
|
+
"document-validation",
|
|
1302
|
+
"dollar-01",
|
|
1303
|
+
"dollar-02",
|
|
1304
|
+
"dollar-circle",
|
|
1305
|
+
"dollar-receive-01",
|
|
1306
|
+
"dollar-receive-02",
|
|
1307
|
+
"dollar-send-01",
|
|
1308
|
+
"dollar-send-02",
|
|
1309
|
+
"dollar-square",
|
|
1310
|
+
"dome",
|
|
1311
|
+
"domino",
|
|
1312
|
+
"door",
|
|
1313
|
+
"door-01",
|
|
1314
|
+
"door-02",
|
|
1315
|
+
"door-lock",
|
|
1316
|
+
"doughnut",
|
|
1317
|
+
"download-01",
|
|
1318
|
+
"download-02",
|
|
1319
|
+
"download-03",
|
|
1320
|
+
"download-04",
|
|
1321
|
+
"download-05",
|
|
1322
|
+
"download-circle-01",
|
|
1323
|
+
"download-circle-02",
|
|
1324
|
+
"download-square-01",
|
|
1325
|
+
"download-square-02",
|
|
1326
|
+
"drag-01",
|
|
1327
|
+
"drag-02",
|
|
1328
|
+
"drag-03",
|
|
1329
|
+
"drag-04",
|
|
1330
|
+
"drag-drop",
|
|
1331
|
+
"drag-drop-horizontal",
|
|
1332
|
+
"drag-drop-vertical",
|
|
1333
|
+
"drag-left-01",
|
|
1334
|
+
"drag-left-02",
|
|
1335
|
+
"drag-left-03",
|
|
1336
|
+
"drag-left-04",
|
|
1337
|
+
"drag-right-01",
|
|
1338
|
+
"drag-right-02",
|
|
1339
|
+
"drag-right-03",
|
|
1340
|
+
"drag-right-04",
|
|
1341
|
+
"drawing-compass",
|
|
1342
|
+
"drawing-mode",
|
|
1343
|
+
"dress-01",
|
|
1344
|
+
"dress-02",
|
|
1345
|
+
"dress-03",
|
|
1346
|
+
"dress-04",
|
|
1347
|
+
"dress-05",
|
|
1348
|
+
"dress-06",
|
|
1349
|
+
"dress-07",
|
|
1350
|
+
"dressing-table-01",
|
|
1351
|
+
"dressing-table-02",
|
|
1352
|
+
"dressing-table-03",
|
|
1353
|
+
"dribbble",
|
|
1354
|
+
"drink",
|
|
1355
|
+
"drone",
|
|
1356
|
+
"drooling",
|
|
1357
|
+
"dropbox",
|
|
1358
|
+
"droplet",
|
|
1359
|
+
"dropper",
|
|
1360
|
+
"ds3-tool",
|
|
1361
|
+
"dua",
|
|
1362
|
+
"dumbbell-01",
|
|
1363
|
+
"dumbbell-02",
|
|
1364
|
+
"dumbbell-03",
|
|
1365
|
+
"ear",
|
|
1366
|
+
"ear-rings-01",
|
|
1367
|
+
"ear-rings-02",
|
|
1368
|
+
"ear-rings-03",
|
|
1369
|
+
"earth",
|
|
1370
|
+
"ease-curve-control-points",
|
|
1371
|
+
"ease-in",
|
|
1372
|
+
"ease-in-control-point",
|
|
1373
|
+
"ease-in-out",
|
|
1374
|
+
"ease-out",
|
|
1375
|
+
"ease-out-control-point",
|
|
1376
|
+
"eco-energy",
|
|
1377
|
+
"eco-lab",
|
|
1378
|
+
"eco-lab-01",
|
|
1379
|
+
"eco-lab-02",
|
|
1380
|
+
"eco-power",
|
|
1381
|
+
"edge-style",
|
|
1382
|
+
"edit-01",
|
|
1383
|
+
"edit-02",
|
|
1384
|
+
"edit-off",
|
|
1385
|
+
"edit-road",
|
|
1386
|
+
"edit-table",
|
|
1387
|
+
"edit-user-02",
|
|
1388
|
+
"eggs",
|
|
1389
|
+
"eid-mubarak",
|
|
1390
|
+
"eiffel-tower",
|
|
1391
|
+
"elearning-exchange",
|
|
1392
|
+
"electric-home-01",
|
|
1393
|
+
"electric-home-02",
|
|
1394
|
+
"electric-plugs",
|
|
1395
|
+
"electric-tower-01",
|
|
1396
|
+
"electric-tower-02",
|
|
1397
|
+
"electric-wire",
|
|
1398
|
+
"ellipse-selection",
|
|
1399
|
+
"encrypt",
|
|
1400
|
+
"energy",
|
|
1401
|
+
"energy-ellipse",
|
|
1402
|
+
"energy-rectangle",
|
|
1403
|
+
"entering-geo-fence",
|
|
1404
|
+
"entrance-stairs",
|
|
1405
|
+
"envato",
|
|
1406
|
+
"equal-sign",
|
|
1407
|
+
"equal-sign-circle",
|
|
1408
|
+
"equal-sign-square",
|
|
1409
|
+
"equipment-bench-press",
|
|
1410
|
+
"equipment-chest-press",
|
|
1411
|
+
"equipment-gym-01",
|
|
1412
|
+
"equipment-gym-02",
|
|
1413
|
+
"equipment-gym-03",
|
|
1414
|
+
"equipment-weightlifting",
|
|
1415
|
+
"eraser",
|
|
1416
|
+
"eraser-01",
|
|
1417
|
+
"eraser-add",
|
|
1418
|
+
"eraser-auto",
|
|
1419
|
+
"estimate-01",
|
|
1420
|
+
"estimate-02",
|
|
1421
|
+
"ethereum",
|
|
1422
|
+
"ethereum-ellipse",
|
|
1423
|
+
"ethereum-rectangle",
|
|
1424
|
+
"euro",
|
|
1425
|
+
"euro-circle",
|
|
1426
|
+
"euro-receive",
|
|
1427
|
+
"euro-send",
|
|
1428
|
+
"euro-square",
|
|
1429
|
+
"ev-charging",
|
|
1430
|
+
"evil",
|
|
1431
|
+
"exchange-01",
|
|
1432
|
+
"exchange-02",
|
|
1433
|
+
"exchange-03",
|
|
1434
|
+
"expander",
|
|
1435
|
+
"external-drive",
|
|
1436
|
+
"eye",
|
|
1437
|
+
"face-id",
|
|
1438
|
+
"facebook-01",
|
|
1439
|
+
"facebook-02",
|
|
1440
|
+
"factory",
|
|
1441
|
+
"factory-01",
|
|
1442
|
+
"factory-02",
|
|
1443
|
+
"fahrenheit",
|
|
1444
|
+
"falcon",
|
|
1445
|
+
"falling-star",
|
|
1446
|
+
"fast-wind",
|
|
1447
|
+
"favourite",
|
|
1448
|
+
"favourite-circle",
|
|
1449
|
+
"favourite-square",
|
|
1450
|
+
"feather",
|
|
1451
|
+
"female-02",
|
|
1452
|
+
"female-symbol",
|
|
1453
|
+
"fencing",
|
|
1454
|
+
"fencing-mask",
|
|
1455
|
+
"ferris-wheel",
|
|
1456
|
+
"ferry-boat",
|
|
1457
|
+
"figma",
|
|
1458
|
+
"file-01",
|
|
1459
|
+
"file-02",
|
|
1460
|
+
"file-add",
|
|
1461
|
+
"file-attachment",
|
|
1462
|
+
"file-audio",
|
|
1463
|
+
"file-bitcoin",
|
|
1464
|
+
"file-block",
|
|
1465
|
+
"file-bookmark",
|
|
1466
|
+
"file-cloud",
|
|
1467
|
+
"file-corrupt",
|
|
1468
|
+
"file-dollar",
|
|
1469
|
+
"file-download",
|
|
1470
|
+
"file-edit",
|
|
1471
|
+
"file-empty-01",
|
|
1472
|
+
"file-empty-02",
|
|
1473
|
+
"file-euro",
|
|
1474
|
+
"file-export",
|
|
1475
|
+
"file-favourite",
|
|
1476
|
+
"file-import",
|
|
1477
|
+
"file-link",
|
|
1478
|
+
"file-locked",
|
|
1479
|
+
"file-management",
|
|
1480
|
+
"file-minus",
|
|
1481
|
+
"file-music",
|
|
1482
|
+
"file-not-found",
|
|
1483
|
+
"file-paste",
|
|
1484
|
+
"file-pin",
|
|
1485
|
+
"file-pound",
|
|
1486
|
+
"file-remove",
|
|
1487
|
+
"file-script",
|
|
1488
|
+
"file-search",
|
|
1489
|
+
"file-security",
|
|
1490
|
+
"file-shredder",
|
|
1491
|
+
"file-star",
|
|
1492
|
+
"file-sync",
|
|
1493
|
+
"file-unknown",
|
|
1494
|
+
"file-unlocked",
|
|
1495
|
+
"file-upload",
|
|
1496
|
+
"file-validation",
|
|
1497
|
+
"file-verified",
|
|
1498
|
+
"file-video",
|
|
1499
|
+
"file-view",
|
|
1500
|
+
"file-yen",
|
|
1501
|
+
"file-zip",
|
|
1502
|
+
"files-01",
|
|
1503
|
+
"files-02",
|
|
1504
|
+
"film-01",
|
|
1505
|
+
"film-02",
|
|
1506
|
+
"film-roll-01",
|
|
1507
|
+
"film-roll-02",
|
|
1508
|
+
"filter",
|
|
1509
|
+
"filter-add",
|
|
1510
|
+
"filter-edit",
|
|
1511
|
+
"filter-horizontal",
|
|
1512
|
+
"filter-mail-circle",
|
|
1513
|
+
"filter-mail-square",
|
|
1514
|
+
"filter-remove",
|
|
1515
|
+
"filter-reset",
|
|
1516
|
+
"filter-vertical",
|
|
1517
|
+
"finger-access",
|
|
1518
|
+
"finger-print",
|
|
1519
|
+
"finger-print-add",
|
|
1520
|
+
"finger-print-check",
|
|
1521
|
+
"finger-print-minus",
|
|
1522
|
+
"finger-print-remove",
|
|
1523
|
+
"finger-print-scan",
|
|
1524
|
+
"fingerprint-scan",
|
|
1525
|
+
"fins",
|
|
1526
|
+
"fire",
|
|
1527
|
+
"fire-02",
|
|
1528
|
+
"fire-03",
|
|
1529
|
+
"fire-pit",
|
|
1530
|
+
"fire-security",
|
|
1531
|
+
"firewall",
|
|
1532
|
+
"fireworks",
|
|
1533
|
+
"first-aid-kit",
|
|
1534
|
+
"fish-food",
|
|
1535
|
+
"fit-to-screen",
|
|
1536
|
+
"fiverr",
|
|
1537
|
+
"flag-01",
|
|
1538
|
+
"flag-02",
|
|
1539
|
+
"flag-03",
|
|
1540
|
+
"flash",
|
|
1541
|
+
"flash-off",
|
|
1542
|
+
"flashlight",
|
|
1543
|
+
"flaticon",
|
|
1544
|
+
"flickr",
|
|
1545
|
+
"flim-slate",
|
|
1546
|
+
"flip-bottom",
|
|
1547
|
+
"flip-horizontal",
|
|
1548
|
+
"flip-left",
|
|
1549
|
+
"flip-phone",
|
|
1550
|
+
"flip-right",
|
|
1551
|
+
"flip-top",
|
|
1552
|
+
"flip-vertical",
|
|
1553
|
+
"floor-plan",
|
|
1554
|
+
"floppy-disk",
|
|
1555
|
+
"flow",
|
|
1556
|
+
"flow-circle",
|
|
1557
|
+
"flow-connection",
|
|
1558
|
+
"flow-square",
|
|
1559
|
+
"flowchart-01",
|
|
1560
|
+
"flowchart-02",
|
|
1561
|
+
"flower",
|
|
1562
|
+
"flower-pot",
|
|
1563
|
+
"flushed",
|
|
1564
|
+
"flying-human",
|
|
1565
|
+
"focus-point",
|
|
1566
|
+
"folder-01",
|
|
1567
|
+
"folder-02",
|
|
1568
|
+
"folder-03",
|
|
1569
|
+
"folder-add",
|
|
1570
|
+
"folder-attachment",
|
|
1571
|
+
"folder-audio",
|
|
1572
|
+
"folder-block",
|
|
1573
|
+
"folder-check",
|
|
1574
|
+
"folder-cloud",
|
|
1575
|
+
"folder-details",
|
|
1576
|
+
"folder-details-reference",
|
|
1577
|
+
"folder-download",
|
|
1578
|
+
"folder-edit",
|
|
1579
|
+
"folder-export",
|
|
1580
|
+
"folder-favourite",
|
|
1581
|
+
"folder-file-storage",
|
|
1582
|
+
"folder-import",
|
|
1583
|
+
"folder-library",
|
|
1584
|
+
"folder-links",
|
|
1585
|
+
"folder-locked",
|
|
1586
|
+
"folder-management",
|
|
1587
|
+
"folder-minus",
|
|
1588
|
+
"folder-music",
|
|
1589
|
+
"folder-off",
|
|
1590
|
+
"folder-open",
|
|
1591
|
+
"folder-pin",
|
|
1592
|
+
"folder-remove",
|
|
1593
|
+
"folder-search",
|
|
1594
|
+
"folder-security",
|
|
1595
|
+
"folder-shared-01",
|
|
1596
|
+
"folder-shared-02",
|
|
1597
|
+
"folder-shared-03",
|
|
1598
|
+
"folder-sync",
|
|
1599
|
+
"folder-transfer",
|
|
1600
|
+
"folder-unknown",
|
|
1601
|
+
"folder-unlocked",
|
|
1602
|
+
"folder-upload",
|
|
1603
|
+
"folder-video",
|
|
1604
|
+
"folder-view",
|
|
1605
|
+
"folder-zip",
|
|
1606
|
+
"folders",
|
|
1607
|
+
"football",
|
|
1608
|
+
"football-pitch",
|
|
1609
|
+
"forgot-password",
|
|
1610
|
+
"fork",
|
|
1611
|
+
"forrst",
|
|
1612
|
+
"fortress",
|
|
1613
|
+
"forward-01",
|
|
1614
|
+
"forward-02",
|
|
1615
|
+
"four-finger-02",
|
|
1616
|
+
"four-finger-03",
|
|
1617
|
+
"foursquare",
|
|
1618
|
+
"framer",
|
|
1619
|
+
"frameworks",
|
|
1620
|
+
"french-fries-01",
|
|
1621
|
+
"french-fries-02",
|
|
1622
|
+
"fridge",
|
|
1623
|
+
"frisbee",
|
|
1624
|
+
"fry",
|
|
1625
|
+
"fuel-01",
|
|
1626
|
+
"fuel-02",
|
|
1627
|
+
"fuel-station",
|
|
1628
|
+
"full-screen",
|
|
1629
|
+
"full-signal",
|
|
1630
|
+
"function",
|
|
1631
|
+
"function-circle",
|
|
1632
|
+
"function-of-x",
|
|
1633
|
+
"function-square",
|
|
1634
|
+
"galaxy",
|
|
1635
|
+
"game",
|
|
1636
|
+
"game-controller-01",
|
|
1637
|
+
"game-controller-02",
|
|
1638
|
+
"game-controller-03",
|
|
1639
|
+
"gameboy",
|
|
1640
|
+
"garage",
|
|
1641
|
+
"garbage-truck",
|
|
1642
|
+
"garlands",
|
|
1643
|
+
"gas-pipe",
|
|
1644
|
+
"gas-stove",
|
|
1645
|
+
"gears",
|
|
1646
|
+
"gem",
|
|
1647
|
+
"geology-crust",
|
|
1648
|
+
"geometric-shapes-01",
|
|
1649
|
+
"geometric-shapes-02",
|
|
1650
|
+
"gibbous-moon",
|
|
1651
|
+
"gif-01",
|
|
1652
|
+
"gif-02",
|
|
1653
|
+
"gift",
|
|
1654
|
+
"gift-card",
|
|
1655
|
+
"gift-card-02",
|
|
1656
|
+
"git-branch",
|
|
1657
|
+
"git-commit",
|
|
1658
|
+
"git-compare",
|
|
1659
|
+
"git-fork",
|
|
1660
|
+
"git-merge",
|
|
1661
|
+
"git-pull-request",
|
|
1662
|
+
"git-pull-request-closed",
|
|
1663
|
+
"git-pull-request-draft",
|
|
1664
|
+
"gitbook",
|
|
1665
|
+
"github",
|
|
1666
|
+
"github-01",
|
|
1667
|
+
"gitlab",
|
|
1668
|
+
"give-blood",
|
|
1669
|
+
"give-pill",
|
|
1670
|
+
"give-star",
|
|
1671
|
+
"glasses",
|
|
1672
|
+
"global",
|
|
1673
|
+
"global-editing",
|
|
1674
|
+
"global-education",
|
|
1675
|
+
"global-refresh",
|
|
1676
|
+
"global-search",
|
|
1677
|
+
"globe",
|
|
1678
|
+
"globe-02",
|
|
1679
|
+
"glove",
|
|
1680
|
+
"go-backward-10-sec",
|
|
1681
|
+
"go-backward-15-sec",
|
|
1682
|
+
"go-backward-30-sec",
|
|
1683
|
+
"go-backward-5-sec",
|
|
1684
|
+
"go-backward-60-sec",
|
|
1685
|
+
"go-forward-10-sec",
|
|
1686
|
+
"go-forward-15-sec",
|
|
1687
|
+
"go-forward-30-sec",
|
|
1688
|
+
"go-forward-5-sec",
|
|
1689
|
+
"go-forward-60-sec",
|
|
1690
|
+
"gold",
|
|
1691
|
+
"gold-ingots",
|
|
1692
|
+
"golf-ball",
|
|
1693
|
+
"golf-bat",
|
|
1694
|
+
"golf-cart",
|
|
1695
|
+
"golf-hole",
|
|
1696
|
+
"google",
|
|
1697
|
+
"google-doc",
|
|
1698
|
+
"google-drive",
|
|
1699
|
+
"google-gemini",
|
|
1700
|
+
"google-home",
|
|
1701
|
+
"google-lens",
|
|
1702
|
+
"google-maps",
|
|
1703
|
+
"google-photos",
|
|
1704
|
+
"google-sheet",
|
|
1705
|
+
"gps-01",
|
|
1706
|
+
"gps-02",
|
|
1707
|
+
"gps-disconnected",
|
|
1708
|
+
"gps-off-01",
|
|
1709
|
+
"gps-off-02",
|
|
1710
|
+
"gps-signal-01",
|
|
1711
|
+
"gps-signal-02",
|
|
1712
|
+
"gpu",
|
|
1713
|
+
"graduate-female",
|
|
1714
|
+
"graduate-male",
|
|
1715
|
+
"graduation-scroll",
|
|
1716
|
+
"grapes",
|
|
1717
|
+
"gravity",
|
|
1718
|
+
"greater-than",
|
|
1719
|
+
"greater-than-circle",
|
|
1720
|
+
"greater-than-square",
|
|
1721
|
+
"greek-helmet",
|
|
1722
|
+
"green-house",
|
|
1723
|
+
"grid",
|
|
1724
|
+
"grid-02",
|
|
1725
|
+
"grid-off",
|
|
1726
|
+
"grid-table",
|
|
1727
|
+
"grid-view",
|
|
1728
|
+
"grimacing",
|
|
1729
|
+
"grinning",
|
|
1730
|
+
"grok",
|
|
1731
|
+
"group-01",
|
|
1732
|
+
"group-items",
|
|
1733
|
+
"group-layers",
|
|
1734
|
+
"guest-house",
|
|
1735
|
+
"gun",
|
|
1736
|
+
"gymnastic",
|
|
1737
|
+
"gymnastic-rings",
|
|
1738
|
+
"hackerrank",
|
|
1739
|
+
"hair-clips",
|
|
1740
|
+
"hair-dryer",
|
|
1741
|
+
"haji",
|
|
1742
|
+
"halal",
|
|
1743
|
+
"halal-lab",
|
|
1744
|
+
"hamburger-01",
|
|
1745
|
+
"hamburger-02",
|
|
1746
|
+
"hand-bag-01",
|
|
1747
|
+
"hand-bag-02",
|
|
1748
|
+
"hand-beater",
|
|
1749
|
+
"hand-grip",
|
|
1750
|
+
"hand-pointing-down-01",
|
|
1751
|
+
"hand-pointing-down-02",
|
|
1752
|
+
"hand-pointing-down-03",
|
|
1753
|
+
"hand-pointing-down-04",
|
|
1754
|
+
"hand-pointing-left-01",
|
|
1755
|
+
"hand-pointing-left-02",
|
|
1756
|
+
"hand-pointing-left-03",
|
|
1757
|
+
"hand-pointing-left-04",
|
|
1758
|
+
"hand-pointing-right-01",
|
|
1759
|
+
"hand-pointing-right-02",
|
|
1760
|
+
"hand-pointing-right-03",
|
|
1761
|
+
"hand-pointing-right-04",
|
|
1762
|
+
"hand-prayer",
|
|
1763
|
+
"hand-sanitizer",
|
|
1764
|
+
"handcuffs",
|
|
1765
|
+
"hanger",
|
|
1766
|
+
"hanging-clock",
|
|
1767
|
+
"hangout",
|
|
1768
|
+
"happy",
|
|
1769
|
+
"hard-drive",
|
|
1770
|
+
"hat",
|
|
1771
|
+
"hdd",
|
|
1772
|
+
"hdr-01",
|
|
1773
|
+
"hdr-02",
|
|
1774
|
+
"heading",
|
|
1775
|
+
"heading-01",
|
|
1776
|
+
"heading-02",
|
|
1777
|
+
"heading-03",
|
|
1778
|
+
"heading-04",
|
|
1779
|
+
"heading-05",
|
|
1780
|
+
"heading-06",
|
|
1781
|
+
"headphone-mute",
|
|
1782
|
+
"headphones",
|
|
1783
|
+
"headset",
|
|
1784
|
+
"headset-connected",
|
|
1785
|
+
"headset-off",
|
|
1786
|
+
"healtcare",
|
|
1787
|
+
"health",
|
|
1788
|
+
"heart-add",
|
|
1789
|
+
"heart-check",
|
|
1790
|
+
"heart-remove",
|
|
1791
|
+
"heartbreak",
|
|
1792
|
+
"helicopter",
|
|
1793
|
+
"help-circle",
|
|
1794
|
+
"help-square",
|
|
1795
|
+
"hexagon",
|
|
1796
|
+
"hexagon-01",
|
|
1797
|
+
"hierarchy",
|
|
1798
|
+
"hierarchy-circle-01",
|
|
1799
|
+
"hierarchy-circle-02",
|
|
1800
|
+
"hierarchy-circle-03",
|
|
1801
|
+
"hierarchy-files",
|
|
1802
|
+
"hierarchy-square-01",
|
|
1803
|
+
"hierarchy-square-02",
|
|
1804
|
+
"hierarchy-square-03",
|
|
1805
|
+
"hierarchy-square-04",
|
|
1806
|
+
"hierarchy-square-05",
|
|
1807
|
+
"hierarchy-square-06",
|
|
1808
|
+
"hierarchy-square-07",
|
|
1809
|
+
"hierarchy-square-08",
|
|
1810
|
+
"hierarchy-square-10",
|
|
1811
|
+
"high-heels-01",
|
|
1812
|
+
"high-heels-02",
|
|
1813
|
+
"highlighter",
|
|
1814
|
+
"hijab",
|
|
1815
|
+
"hockey",
|
|
1816
|
+
"hold-01",
|
|
1817
|
+
"hold-02",
|
|
1818
|
+
"hold-03",
|
|
1819
|
+
"hold-04",
|
|
1820
|
+
"hold-05",
|
|
1821
|
+
"hold-locked-01",
|
|
1822
|
+
"hold-locked-02",
|
|
1823
|
+
"hold-phone",
|
|
1824
|
+
"hologram",
|
|
1825
|
+
"home-01",
|
|
1826
|
+
"home-02",
|
|
1827
|
+
"home-03",
|
|
1828
|
+
"home-04",
|
|
1829
|
+
"home-05",
|
|
1830
|
+
"home-06",
|
|
1831
|
+
"home-07",
|
|
1832
|
+
"home-08",
|
|
1833
|
+
"home-09",
|
|
1834
|
+
"home-10",
|
|
1835
|
+
"home-11",
|
|
1836
|
+
"home-12",
|
|
1837
|
+
"home-13",
|
|
1838
|
+
"home-wifi",
|
|
1839
|
+
"honey-01",
|
|
1840
|
+
"honey-02",
|
|
1841
|
+
"honor",
|
|
1842
|
+
"honour-star",
|
|
1843
|
+
"hoodie",
|
|
1844
|
+
"horizonal-scroll-point",
|
|
1845
|
+
"horizontal-resize",
|
|
1846
|
+
"horse",
|
|
1847
|
+
"horse-head",
|
|
1848
|
+
"horse-saddle",
|
|
1849
|
+
"hospital-01",
|
|
1850
|
+
"hospital-02",
|
|
1851
|
+
"hospital-bed-01",
|
|
1852
|
+
"hospital-bed-02",
|
|
1853
|
+
"hospital-location",
|
|
1854
|
+
"hot-air-balloon",
|
|
1855
|
+
"hot-price",
|
|
1856
|
+
"hot-tube",
|
|
1857
|
+
"hotdog",
|
|
1858
|
+
"hotel-01",
|
|
1859
|
+
"hotel-02",
|
|
1860
|
+
"hotel-bell",
|
|
1861
|
+
"hotspot",
|
|
1862
|
+
"hotspot-offline",
|
|
1863
|
+
"hourglass",
|
|
1864
|
+
"hourglass-off",
|
|
1865
|
+
"house-01",
|
|
1866
|
+
"house-02",
|
|
1867
|
+
"house-03",
|
|
1868
|
+
"house-04",
|
|
1869
|
+
"house-05",
|
|
1870
|
+
"house-solar-panel",
|
|
1871
|
+
"html-5",
|
|
1872
|
+
"hugeicons",
|
|
1873
|
+
"humidity",
|
|
1874
|
+
"hut",
|
|
1875
|
+
"hydro-power",
|
|
1876
|
+
"hyperbole",
|
|
1877
|
+
"ice-cream-01",
|
|
1878
|
+
"ice-cream-02",
|
|
1879
|
+
"ice-cream-03",
|
|
1880
|
+
"ice-cream-04",
|
|
1881
|
+
"ice-cubes",
|
|
1882
|
+
"ice-hockey",
|
|
1883
|
+
"ice-skating",
|
|
1884
|
+
"ico",
|
|
1885
|
+
"iconjar",
|
|
1886
|
+
"id",
|
|
1887
|
+
"id-not-verified",
|
|
1888
|
+
"id-verified",
|
|
1889
|
+
"idea",
|
|
1890
|
+
"idea-01",
|
|
1891
|
+
"identification",
|
|
1892
|
+
"identity-card",
|
|
1893
|
+
"image-01",
|
|
1894
|
+
"image-02",
|
|
1895
|
+
"image-03",
|
|
1896
|
+
"image-actual-size",
|
|
1897
|
+
"image-add-01",
|
|
1898
|
+
"image-add-02",
|
|
1899
|
+
"image-composition",
|
|
1900
|
+
"image-composition-oval",
|
|
1901
|
+
"image-counter-clockwise",
|
|
1902
|
+
"image-crop",
|
|
1903
|
+
"image-delete-01",
|
|
1904
|
+
"image-delete-02",
|
|
1905
|
+
"image-done-01",
|
|
1906
|
+
"image-done-02",
|
|
1907
|
+
"image-download",
|
|
1908
|
+
"image-download-02",
|
|
1909
|
+
"image-flip-horizontal",
|
|
1910
|
+
"image-flip-vertical",
|
|
1911
|
+
"image-not-found-01",
|
|
1912
|
+
"image-not-found-02",
|
|
1913
|
+
"image-remove-01",
|
|
1914
|
+
"image-remove-02",
|
|
1915
|
+
"image-rotation-clockwise",
|
|
1916
|
+
"image-upload",
|
|
1917
|
+
"image-upload-01",
|
|
1918
|
+
"imo",
|
|
1919
|
+
"important-book",
|
|
1920
|
+
"in-love",
|
|
1921
|
+
"inbox",
|
|
1922
|
+
"inbox-check",
|
|
1923
|
+
"inbox-download",
|
|
1924
|
+
"inbox-unread",
|
|
1925
|
+
"inbox-upload",
|
|
1926
|
+
"incognito",
|
|
1927
|
+
"india-gate",
|
|
1928
|
+
"inequality-01",
|
|
1929
|
+
"inequality-02",
|
|
1930
|
+
"inequality-circle-01",
|
|
1931
|
+
"inequality-circle-02",
|
|
1932
|
+
"inequality-square-01",
|
|
1933
|
+
"inequality-square-02",
|
|
1934
|
+
"infant",
|
|
1935
|
+
"infinity-01",
|
|
1936
|
+
"infinity-02",
|
|
1937
|
+
"infinity-circle",
|
|
1938
|
+
"infinity-square",
|
|
1939
|
+
"information-circle",
|
|
1940
|
+
"information-diamond",
|
|
1941
|
+
"information-square",
|
|
1942
|
+
"injection",
|
|
1943
|
+
"insert-bottom-image",
|
|
1944
|
+
"insert-center-image",
|
|
1945
|
+
"insert-column",
|
|
1946
|
+
"insert-column-left",
|
|
1947
|
+
"insert-column-right",
|
|
1948
|
+
"insert-pi",
|
|
1949
|
+
"insert-row",
|
|
1950
|
+
"insert-row-down",
|
|
1951
|
+
"insert-row-up",
|
|
1952
|
+
"insert-top-image",
|
|
1953
|
+
"inspect-code",
|
|
1954
|
+
"instagram",
|
|
1955
|
+
"installing-updates-01",
|
|
1956
|
+
"installing-updates-02",
|
|
1957
|
+
"internet",
|
|
1958
|
+
"internet-antenna-01",
|
|
1959
|
+
"internet-antenna-02",
|
|
1960
|
+
"internet-antenna-03",
|
|
1961
|
+
"internet-antenna-04",
|
|
1962
|
+
"investigation",
|
|
1963
|
+
"invoice",
|
|
1964
|
+
"invoice-01",
|
|
1965
|
+
"invoice-02",
|
|
1966
|
+
"invoice-03",
|
|
1967
|
+
"invoice-04",
|
|
1968
|
+
"ipod",
|
|
1969
|
+
"iris-scan",
|
|
1970
|
+
"island",
|
|
1971
|
+
"jambiya",
|
|
1972
|
+
"jar",
|
|
1973
|
+
"java",
|
|
1974
|
+
"java-script",
|
|
1975
|
+
"job-link",
|
|
1976
|
+
"job-search",
|
|
1977
|
+
"job-share",
|
|
1978
|
+
"jogger-pants",
|
|
1979
|
+
"join-bevel",
|
|
1980
|
+
"join-round",
|
|
1981
|
+
"join-straight",
|
|
1982
|
+
"joker",
|
|
1983
|
+
"joystick-01",
|
|
1984
|
+
"joystick-02",
|
|
1985
|
+
"joystick-03",
|
|
1986
|
+
"joystick-04",
|
|
1987
|
+
"joystick-05",
|
|
1988
|
+
"jpg-01",
|
|
1989
|
+
"jpg-02",
|
|
1990
|
+
"jsx-01",
|
|
1991
|
+
"jsx-02",
|
|
1992
|
+
"jsx-03",
|
|
1993
|
+
"judge",
|
|
1994
|
+
"jumpers",
|
|
1995
|
+
"jupiter",
|
|
1996
|
+
"justice-scale-01",
|
|
1997
|
+
"justice-scale-02",
|
|
1998
|
+
"kaaba-01",
|
|
1999
|
+
"kaaba-02",
|
|
2000
|
+
"kanban",
|
|
2001
|
+
"kayak",
|
|
2002
|
+
"keffiyeh",
|
|
2003
|
+
"kettle",
|
|
2004
|
+
"kettle-01",
|
|
2005
|
+
"kettlebell",
|
|
2006
|
+
"key-01",
|
|
2007
|
+
"key-02",
|
|
2008
|
+
"key-generator-fob",
|
|
2009
|
+
"keyboard",
|
|
2010
|
+
"keyframe",
|
|
2011
|
+
"keyframe-add",
|
|
2012
|
+
"keyframe-align-center",
|
|
2013
|
+
"keyframe-align-horizontal",
|
|
2014
|
+
"keyframe-align-vertical",
|
|
2015
|
+
"keyframe-bottom",
|
|
2016
|
+
"keyframe-left",
|
|
2017
|
+
"keyframe-remove",
|
|
2018
|
+
"keyframe-right",
|
|
2019
|
+
"keyframe-top",
|
|
2020
|
+
"keyframes-double",
|
|
2021
|
+
"keyframes-double-add",
|
|
2022
|
+
"keyframes-double-remove",
|
|
2023
|
+
"keyframes-multiple",
|
|
2024
|
+
"keyframes-multiple-add",
|
|
2025
|
+
"keyframes-multiple-remove",
|
|
2026
|
+
"kickstarter-01",
|
|
2027
|
+
"kickstarter-02",
|
|
2028
|
+
"kid",
|
|
2029
|
+
"kidneys",
|
|
2030
|
+
"kingdom-tower",
|
|
2031
|
+
"kissing",
|
|
2032
|
+
"kitchen-utensils",
|
|
2033
|
+
"kite",
|
|
2034
|
+
"klarna",
|
|
2035
|
+
"kleeja",
|
|
2036
|
+
"knife-01",
|
|
2037
|
+
"knife-02",
|
|
2038
|
+
"knife-bread",
|
|
2039
|
+
"knight-shield",
|
|
2040
|
+
"knives",
|
|
2041
|
+
"knowledge-01",
|
|
2042
|
+
"knowledge-02",
|
|
2043
|
+
"ko-fi",
|
|
2044
|
+
"kurta",
|
|
2045
|
+
"kurta-01",
|
|
2046
|
+
"label",
|
|
2047
|
+
"label-important",
|
|
2048
|
+
"labor",
|
|
2049
|
+
"labs",
|
|
2050
|
+
"lake",
|
|
2051
|
+
"lamp",
|
|
2052
|
+
"lamp-01",
|
|
2053
|
+
"lamp-02",
|
|
2054
|
+
"lamp-03",
|
|
2055
|
+
"lamp-04",
|
|
2056
|
+
"lamp-05",
|
|
2057
|
+
"language-circle",
|
|
2058
|
+
"language-skill",
|
|
2059
|
+
"language-square",
|
|
2060
|
+
"lantern",
|
|
2061
|
+
"laptop",
|
|
2062
|
+
"laptop-add",
|
|
2063
|
+
"laptop-charging",
|
|
2064
|
+
"laptop-check",
|
|
2065
|
+
"laptop-cloud",
|
|
2066
|
+
"laptop-issue",
|
|
2067
|
+
"laptop-performance",
|
|
2068
|
+
"laptop-phone-sync",
|
|
2069
|
+
"laptop-programming",
|
|
2070
|
+
"laptop-remove",
|
|
2071
|
+
"laptop-settings",
|
|
2072
|
+
"laptop-video",
|
|
2073
|
+
"lasso-tool-01",
|
|
2074
|
+
"lasso-tool-02",
|
|
2075
|
+
"last-fm",
|
|
2076
|
+
"latitude",
|
|
2077
|
+
"laughing",
|
|
2078
|
+
"laurel-wreath-01",
|
|
2079
|
+
"laurel-wreath-02",
|
|
2080
|
+
"laurel-wreath-first-01",
|
|
2081
|
+
"laurel-wreath-first-02",
|
|
2082
|
+
"laurel-wreath-left-01",
|
|
2083
|
+
"laurel-wreath-left-02",
|
|
2084
|
+
"laurel-wreath-left-03",
|
|
2085
|
+
"laurel-wreath-right-01",
|
|
2086
|
+
"laurel-wreath-right-02",
|
|
2087
|
+
"laurel-wreath-right-03",
|
|
2088
|
+
"layer-add",
|
|
2089
|
+
"layer-mask-01",
|
|
2090
|
+
"layer-mask-02",
|
|
2091
|
+
"layers-01",
|
|
2092
|
+
"layers-02",
|
|
2093
|
+
"layers-logo",
|
|
2094
|
+
"layout-01",
|
|
2095
|
+
"layout-02",
|
|
2096
|
+
"layout-03",
|
|
2097
|
+
"layout-04",
|
|
2098
|
+
"layout-05",
|
|
2099
|
+
"layout-06",
|
|
2100
|
+
"layout-07",
|
|
2101
|
+
"layout-2-column",
|
|
2102
|
+
"layout-2-row",
|
|
2103
|
+
"layout-3-column",
|
|
2104
|
+
"layout-3-row",
|
|
2105
|
+
"layout-bottom",
|
|
2106
|
+
"layout-grid",
|
|
2107
|
+
"layout-left",
|
|
2108
|
+
"layout-right",
|
|
2109
|
+
"layout-table-01",
|
|
2110
|
+
"layout-table-02",
|
|
2111
|
+
"layout-top",
|
|
2112
|
+
"leaf-01",
|
|
2113
|
+
"leaf-02",
|
|
2114
|
+
"leaf-03",
|
|
2115
|
+
"leaf-04",
|
|
2116
|
+
"leaving-geo-fence",
|
|
2117
|
+
"leetcode",
|
|
2118
|
+
"left-angle",
|
|
2119
|
+
"left-to-right-block-quote",
|
|
2120
|
+
"left-to-right-list-bullet",
|
|
2121
|
+
"left-to-right-list-dash",
|
|
2122
|
+
"left-to-right-list-number",
|
|
2123
|
+
"left-to-right-list-star",
|
|
2124
|
+
"left-to-right-list-star-01",
|
|
2125
|
+
"left-to-right-list-triangle",
|
|
2126
|
+
"left-triangle",
|
|
2127
|
+
"legal-01",
|
|
2128
|
+
"legal-02",
|
|
2129
|
+
"legal-document-01",
|
|
2130
|
+
"legal-document-02",
|
|
2131
|
+
"legal-hammer",
|
|
2132
|
+
"less-than",
|
|
2133
|
+
"less-than-circle",
|
|
2134
|
+
"less-than-square",
|
|
2135
|
+
"letter-spacing",
|
|
2136
|
+
"libraries",
|
|
2137
|
+
"library",
|
|
2138
|
+
"license",
|
|
2139
|
+
"license-draft",
|
|
2140
|
+
"license-maintenance",
|
|
2141
|
+
"license-no",
|
|
2142
|
+
"license-pin",
|
|
2143
|
+
"license-third-party",
|
|
2144
|
+
"lift-truck",
|
|
2145
|
+
"lighthouse",
|
|
2146
|
+
"limit-order",
|
|
2147
|
+
"limitation",
|
|
2148
|
+
"line",
|
|
2149
|
+
"liner",
|
|
2150
|
+
"link-01",
|
|
2151
|
+
"link-02",
|
|
2152
|
+
"link-03",
|
|
2153
|
+
"link-04",
|
|
2154
|
+
"link-05",
|
|
2155
|
+
"link-06",
|
|
2156
|
+
"link-backward",
|
|
2157
|
+
"link-circle",
|
|
2158
|
+
"link-circle-02",
|
|
2159
|
+
"link-forward",
|
|
2160
|
+
"link-square-01",
|
|
2161
|
+
"link-square-02",
|
|
2162
|
+
"linkedin-01",
|
|
2163
|
+
"linkedin-02",
|
|
2164
|
+
"list-setting",
|
|
2165
|
+
"list-view",
|
|
2166
|
+
"litecoin",
|
|
2167
|
+
"live-streaming-01",
|
|
2168
|
+
"live-streaming-02",
|
|
2169
|
+
"live-streaming-03",
|
|
2170
|
+
"liver",
|
|
2171
|
+
"loading-01",
|
|
2172
|
+
"loading-02",
|
|
2173
|
+
"loading-03",
|
|
2174
|
+
"loading-04",
|
|
2175
|
+
"location-01",
|
|
2176
|
+
"location-02",
|
|
2177
|
+
"location-03",
|
|
2178
|
+
"location-04",
|
|
2179
|
+
"location-05",
|
|
2180
|
+
"location-06",
|
|
2181
|
+
"location-07",
|
|
2182
|
+
"location-08",
|
|
2183
|
+
"location-09",
|
|
2184
|
+
"location-10",
|
|
2185
|
+
"location-add-01",
|
|
2186
|
+
"location-add-02",
|
|
2187
|
+
"location-check-01",
|
|
2188
|
+
"location-check-02",
|
|
2189
|
+
"location-favourite-01",
|
|
2190
|
+
"location-favourite-02",
|
|
2191
|
+
"location-offline-01",
|
|
2192
|
+
"location-offline-02",
|
|
2193
|
+
"location-offline-03",
|
|
2194
|
+
"location-offline-04",
|
|
2195
|
+
"location-remove-01",
|
|
2196
|
+
"location-remove-02",
|
|
2197
|
+
"location-share-01",
|
|
2198
|
+
"location-share-02",
|
|
2199
|
+
"location-star-01",
|
|
2200
|
+
"location-star-02",
|
|
2201
|
+
"location-update-01",
|
|
2202
|
+
"location-update-02",
|
|
2203
|
+
"location-user-01",
|
|
2204
|
+
"location-user-02",
|
|
2205
|
+
"location-user-03",
|
|
2206
|
+
"location-user-04",
|
|
2207
|
+
"lock",
|
|
2208
|
+
"lock-computer",
|
|
2209
|
+
"lock-key",
|
|
2210
|
+
"lock-password",
|
|
2211
|
+
"lock-sync-01",
|
|
2212
|
+
"lock-sync-02",
|
|
2213
|
+
"locked",
|
|
2214
|
+
"locker",
|
|
2215
|
+
"locker-01",
|
|
2216
|
+
"login-01",
|
|
2217
|
+
"login-02",
|
|
2218
|
+
"login-03",
|
|
2219
|
+
"login-circle-01",
|
|
2220
|
+
"login-circle-02",
|
|
2221
|
+
"login-method",
|
|
2222
|
+
"login-square-01",
|
|
2223
|
+
"login-square-02",
|
|
2224
|
+
"logout-01",
|
|
2225
|
+
"logout-02",
|
|
2226
|
+
"logout-03",
|
|
2227
|
+
"logout-04",
|
|
2228
|
+
"logout-05",
|
|
2229
|
+
"logout-circle-01",
|
|
2230
|
+
"logout-circle-02",
|
|
2231
|
+
"logout-square-01",
|
|
2232
|
+
"logout-square-02",
|
|
2233
|
+
"lollipop",
|
|
2234
|
+
"long-sleeve-shirt",
|
|
2235
|
+
"longitude",
|
|
2236
|
+
"look-bottom",
|
|
2237
|
+
"look-left",
|
|
2238
|
+
"look-right",
|
|
2239
|
+
"look-top",
|
|
2240
|
+
"loom",
|
|
2241
|
+
"lottiefiles",
|
|
2242
|
+
"love-korean-finger",
|
|
2243
|
+
"low-signal",
|
|
2244
|
+
"loyalty-card",
|
|
2245
|
+
"luggage-01",
|
|
2246
|
+
"luggage-02",
|
|
2247
|
+
"lungs",
|
|
2248
|
+
"machine-robot",
|
|
2249
|
+
"magic-wand-01",
|
|
2250
|
+
"magic-wand-02",
|
|
2251
|
+
"magic-wand-03",
|
|
2252
|
+
"magic-wand-04",
|
|
2253
|
+
"magnet",
|
|
2254
|
+
"magnet-01",
|
|
2255
|
+
"magnet-02",
|
|
2256
|
+
"mail-01",
|
|
2257
|
+
"mail-02",
|
|
2258
|
+
"mail-account-01",
|
|
2259
|
+
"mail-account-02",
|
|
2260
|
+
"mail-add-01",
|
|
2261
|
+
"mail-add-02",
|
|
2262
|
+
"mail-at-sign-01",
|
|
2263
|
+
"mail-at-sign-02",
|
|
2264
|
+
"mail-block-01",
|
|
2265
|
+
"mail-block-02",
|
|
2266
|
+
"mail-download-01",
|
|
2267
|
+
"mail-edit-01",
|
|
2268
|
+
"mail-edit-02",
|
|
2269
|
+
"mail-lock-01",
|
|
2270
|
+
"mail-lock-02",
|
|
2271
|
+
"mail-love-01",
|
|
2272
|
+
"mail-love-02",
|
|
2273
|
+
"mail-minus-01",
|
|
2274
|
+
"mail-minus-02",
|
|
2275
|
+
"mail-open",
|
|
2276
|
+
"mail-open-01",
|
|
2277
|
+
"mail-open-02",
|
|
2278
|
+
"mail-open-love",
|
|
2279
|
+
"mail-receive-01",
|
|
2280
|
+
"mail-receive-02",
|
|
2281
|
+
"mail-remove-01",
|
|
2282
|
+
"mail-remove-02",
|
|
2283
|
+
"mail-reply-01",
|
|
2284
|
+
"mail-reply-02",
|
|
2285
|
+
"mail-reply-all-01",
|
|
2286
|
+
"mail-reply-all-02",
|
|
2287
|
+
"mail-search-01",
|
|
2288
|
+
"mail-search-02",
|
|
2289
|
+
"mail-secure-01",
|
|
2290
|
+
"mail-secure-02",
|
|
2291
|
+
"mail-send-01",
|
|
2292
|
+
"mail-send-02",
|
|
2293
|
+
"mail-setting-01",
|
|
2294
|
+
"mail-setting-02",
|
|
2295
|
+
"mail-unlock-01",
|
|
2296
|
+
"mail-unlock-02",
|
|
2297
|
+
"mail-upload-01",
|
|
2298
|
+
"mail-upload-02",
|
|
2299
|
+
"mail-validation-01",
|
|
2300
|
+
"mail-validation-02",
|
|
2301
|
+
"mail-voice-01",
|
|
2302
|
+
"mail-voice-02",
|
|
2303
|
+
"mailbox",
|
|
2304
|
+
"mailbox-01",
|
|
2305
|
+
"makkah",
|
|
2306
|
+
"male-02",
|
|
2307
|
+
"male-symbol",
|
|
2308
|
+
"man",
|
|
2309
|
+
"man-woman",
|
|
2310
|
+
"manager",
|
|
2311
|
+
"map-pin",
|
|
2312
|
+
"map-pinpoint-01",
|
|
2313
|
+
"map-pinpoint-02",
|
|
2314
|
+
"maping",
|
|
2315
|
+
"maps",
|
|
2316
|
+
"maps-circle-01",
|
|
2317
|
+
"maps-circle-02",
|
|
2318
|
+
"maps-editing",
|
|
2319
|
+
"maps-global-01",
|
|
2320
|
+
"maps-global-02",
|
|
2321
|
+
"maps-location-01",
|
|
2322
|
+
"maps-location-02",
|
|
2323
|
+
"maps-off",
|
|
2324
|
+
"maps-refresh",
|
|
2325
|
+
"maps-search",
|
|
2326
|
+
"maps-square-01",
|
|
2327
|
+
"maps-square-02",
|
|
2328
|
+
"market-analysis",
|
|
2329
|
+
"market-order",
|
|
2330
|
+
"marketing",
|
|
2331
|
+
"mask",
|
|
2332
|
+
"mask-love",
|
|
2333
|
+
"master-card",
|
|
2334
|
+
"mastodon",
|
|
2335
|
+
"matches",
|
|
2336
|
+
"material-and-texture",
|
|
2337
|
+
"math",
|
|
2338
|
+
"matrix",
|
|
2339
|
+
"maximize-01",
|
|
2340
|
+
"maximize-02",
|
|
2341
|
+
"maximize-03",
|
|
2342
|
+
"maximize-04",
|
|
2343
|
+
"maximize-screen",
|
|
2344
|
+
"mayan-pyramid",
|
|
2345
|
+
"maze",
|
|
2346
|
+
"medal-01",
|
|
2347
|
+
"medal-02",
|
|
2348
|
+
"medal-03",
|
|
2349
|
+
"medal-04",
|
|
2350
|
+
"medal-05",
|
|
2351
|
+
"medal-06",
|
|
2352
|
+
"medal-07",
|
|
2353
|
+
"medal-first-place",
|
|
2354
|
+
"medal-second-place",
|
|
2355
|
+
"medal-third-place",
|
|
2356
|
+
"medical-file",
|
|
2357
|
+
"medical-mask",
|
|
2358
|
+
"medicine-01",
|
|
2359
|
+
"medicine-02",
|
|
2360
|
+
"medicine-bottle-01",
|
|
2361
|
+
"medicine-bottle-02",
|
|
2362
|
+
"medicine-syrup",
|
|
2363
|
+
"medina",
|
|
2364
|
+
"medium",
|
|
2365
|
+
"medium-signal",
|
|
2366
|
+
"medium-square",
|
|
2367
|
+
"meeting-room",
|
|
2368
|
+
"megaphone-01",
|
|
2369
|
+
"megaphone-02",
|
|
2370
|
+
"megaphone-03",
|
|
2371
|
+
"meh",
|
|
2372
|
+
"mentor",
|
|
2373
|
+
"mentoring",
|
|
2374
|
+
"menu-01",
|
|
2375
|
+
"menu-02",
|
|
2376
|
+
"menu-03",
|
|
2377
|
+
"menu-04",
|
|
2378
|
+
"menu-05",
|
|
2379
|
+
"menu-06",
|
|
2380
|
+
"menu-07",
|
|
2381
|
+
"menu-08",
|
|
2382
|
+
"menu-09",
|
|
2383
|
+
"menu-10",
|
|
2384
|
+
"menu-11",
|
|
2385
|
+
"menu-circle",
|
|
2386
|
+
"menu-collapse",
|
|
2387
|
+
"menu-restaurant",
|
|
2388
|
+
"menu-square",
|
|
2389
|
+
"menu-two-line",
|
|
2390
|
+
"mesbah",
|
|
2391
|
+
"message-01",
|
|
2392
|
+
"message-02",
|
|
2393
|
+
"message-add-01",
|
|
2394
|
+
"message-add-02",
|
|
2395
|
+
"message-blocked",
|
|
2396
|
+
"message-cancel-01",
|
|
2397
|
+
"message-cancel-02",
|
|
2398
|
+
"message-delay-01",
|
|
2399
|
+
"message-delay-02",
|
|
2400
|
+
"message-done-01",
|
|
2401
|
+
"message-done-02",
|
|
2402
|
+
"message-download-01",
|
|
2403
|
+
"message-download-02",
|
|
2404
|
+
"message-edit-01",
|
|
2405
|
+
"message-edit-02",
|
|
2406
|
+
"message-favourite-01",
|
|
2407
|
+
"message-favourite-02",
|
|
2408
|
+
"message-incoming-01",
|
|
2409
|
+
"message-incoming-02",
|
|
2410
|
+
"message-lock-01",
|
|
2411
|
+
"message-lock-02",
|
|
2412
|
+
"message-multiple-01",
|
|
2413
|
+
"message-multiple-02",
|
|
2414
|
+
"message-notification-01",
|
|
2415
|
+
"message-notification-02",
|
|
2416
|
+
"message-outgoing-01",
|
|
2417
|
+
"message-outgoing-02",
|
|
2418
|
+
"message-preview-01",
|
|
2419
|
+
"message-preview-02",
|
|
2420
|
+
"message-programming",
|
|
2421
|
+
"message-question",
|
|
2422
|
+
"message-search-01",
|
|
2423
|
+
"message-search-02",
|
|
2424
|
+
"message-secure-01",
|
|
2425
|
+
"message-secure-02",
|
|
2426
|
+
"message-translate",
|
|
2427
|
+
"message-unlock-01",
|
|
2428
|
+
"message-unlock-02",
|
|
2429
|
+
"message-upload-01",
|
|
2430
|
+
"message-upload-02",
|
|
2431
|
+
"message-user-01",
|
|
2432
|
+
"message-user-02",
|
|
2433
|
+
"messenger",
|
|
2434
|
+
"meta",
|
|
2435
|
+
"metro",
|
|
2436
|
+
"mic-01",
|
|
2437
|
+
"mic-02",
|
|
2438
|
+
"mic-off-01",
|
|
2439
|
+
"mic-off-02",
|
|
2440
|
+
"microscope",
|
|
2441
|
+
"microsoft",
|
|
2442
|
+
"microsoft-admin",
|
|
2443
|
+
"microwave",
|
|
2444
|
+
"milk-bottle",
|
|
2445
|
+
"milk-carton",
|
|
2446
|
+
"milk-coconut",
|
|
2447
|
+
"milk-oat",
|
|
2448
|
+
"minimize-01",
|
|
2449
|
+
"minimize-02",
|
|
2450
|
+
"minimize-03",
|
|
2451
|
+
"minimize-04",
|
|
2452
|
+
"minimize-screen",
|
|
2453
|
+
"mining-01",
|
|
2454
|
+
"mining-02",
|
|
2455
|
+
"mining-03",
|
|
2456
|
+
"minus-plus-01",
|
|
2457
|
+
"minus-plus-02",
|
|
2458
|
+
"minus-plus-circle-01",
|
|
2459
|
+
"minus-plus-circle-02",
|
|
2460
|
+
"minus-plus-square-01",
|
|
2461
|
+
"minus-plus-square-02",
|
|
2462
|
+
"minus-sign",
|
|
2463
|
+
"minus-sign-circle",
|
|
2464
|
+
"minus-sign-square",
|
|
2465
|
+
"mirror",
|
|
2466
|
+
"mirroring-screen",
|
|
2467
|
+
"mixer",
|
|
2468
|
+
"mobile-navigator-01",
|
|
2469
|
+
"mobile-navigator-02",
|
|
2470
|
+
"mobile-programming-01",
|
|
2471
|
+
"mobile-programming-02",
|
|
2472
|
+
"mobile-protection",
|
|
2473
|
+
"mobile-security",
|
|
2474
|
+
"mochi",
|
|
2475
|
+
"modern-tv",
|
|
2476
|
+
"modern-tv-4-k",
|
|
2477
|
+
"modern-tv-issue",
|
|
2478
|
+
"molecules",
|
|
2479
|
+
"mollie",
|
|
2480
|
+
"monas",
|
|
2481
|
+
"money-01",
|
|
2482
|
+
"money-02",
|
|
2483
|
+
"money-03",
|
|
2484
|
+
"money-04",
|
|
2485
|
+
"money-add-01",
|
|
2486
|
+
"money-add-02",
|
|
2487
|
+
"money-bag-01",
|
|
2488
|
+
"money-bag-02",
|
|
2489
|
+
"money-exchange-01",
|
|
2490
|
+
"money-exchange-02",
|
|
2491
|
+
"money-exchange-03",
|
|
2492
|
+
"money-not-found-01",
|
|
2493
|
+
"money-not-found-02",
|
|
2494
|
+
"money-not-found-03",
|
|
2495
|
+
"money-not-found-04",
|
|
2496
|
+
"money-receive-01",
|
|
2497
|
+
"money-receive-02",
|
|
2498
|
+
"money-receive-circle",
|
|
2499
|
+
"money-receive-flow-01",
|
|
2500
|
+
"money-receive-flow-02",
|
|
2501
|
+
"money-receive-square",
|
|
2502
|
+
"money-remove-01",
|
|
2503
|
+
"money-remove-02",
|
|
2504
|
+
"money-safe",
|
|
2505
|
+
"money-saving-jar",
|
|
2506
|
+
"money-security",
|
|
2507
|
+
"money-send-01",
|
|
2508
|
+
"money-send-02",
|
|
2509
|
+
"money-send-circle",
|
|
2510
|
+
"money-send-flow-01",
|
|
2511
|
+
"money-send-flow-02",
|
|
2512
|
+
"money-send-square",
|
|
2513
|
+
"monocle",
|
|
2514
|
+
"monocle-01",
|
|
2515
|
+
"monster",
|
|
2516
|
+
"moon",
|
|
2517
|
+
"moon-01",
|
|
2518
|
+
"moon-02",
|
|
2519
|
+
"moon-angled-rain-zap",
|
|
2520
|
+
"moon-cloud",
|
|
2521
|
+
"moon-cloud-angled-rain",
|
|
2522
|
+
"moon-cloud-angled-zap",
|
|
2523
|
+
"moon-cloud-big-rain",
|
|
2524
|
+
"moon-cloud-fast-wind",
|
|
2525
|
+
"moon-cloud-hailstone",
|
|
2526
|
+
"moon-cloud-little-rain",
|
|
2527
|
+
"moon-cloud-little-snow",
|
|
2528
|
+
"moon-cloud-mid-rain",
|
|
2529
|
+
"moon-cloud-mid-snow",
|
|
2530
|
+
"moon-cloud-slow-wind",
|
|
2531
|
+
"moon-cloud-snow",
|
|
2532
|
+
"moon-eclipse",
|
|
2533
|
+
"moon-fast-wind",
|
|
2534
|
+
"moon-landing",
|
|
2535
|
+
"moon-slow-wind",
|
|
2536
|
+
"moonset",
|
|
2537
|
+
"more",
|
|
2538
|
+
"more-01",
|
|
2539
|
+
"more-02",
|
|
2540
|
+
"more-03",
|
|
2541
|
+
"more-horizontal",
|
|
2542
|
+
"more-horizontal-circle-01",
|
|
2543
|
+
"more-horizontal-circle-02",
|
|
2544
|
+
"more-horizontal-square-01",
|
|
2545
|
+
"more-horizontal-square-02",
|
|
2546
|
+
"more-or-less",
|
|
2547
|
+
"more-or-less-circle",
|
|
2548
|
+
"more-or-less-square",
|
|
2549
|
+
"more-vertical",
|
|
2550
|
+
"more-vertical-circle-01",
|
|
2551
|
+
"more-vertical-circle-02",
|
|
2552
|
+
"more-vertical-square-01",
|
|
2553
|
+
"more-vertical-square-02",
|
|
2554
|
+
"mortar",
|
|
2555
|
+
"mortarboard-01",
|
|
2556
|
+
"mortarboard-02",
|
|
2557
|
+
"mosque-01",
|
|
2558
|
+
"mosque-02",
|
|
2559
|
+
"mosque-03",
|
|
2560
|
+
"mosque-04",
|
|
2561
|
+
"mosque-05",
|
|
2562
|
+
"mosque-location",
|
|
2563
|
+
"motion-01",
|
|
2564
|
+
"motion-02",
|
|
2565
|
+
"motorbike-01",
|
|
2566
|
+
"motorbike-02",
|
|
2567
|
+
"mountain",
|
|
2568
|
+
"mouse-01",
|
|
2569
|
+
"mouse-02",
|
|
2570
|
+
"mouse-03",
|
|
2571
|
+
"mouse-04",
|
|
2572
|
+
"mouse-05",
|
|
2573
|
+
"mouse-06",
|
|
2574
|
+
"mouse-07",
|
|
2575
|
+
"mouse-08",
|
|
2576
|
+
"mouse-09",
|
|
2577
|
+
"mouse-10",
|
|
2578
|
+
"mouse-11",
|
|
2579
|
+
"mouse-12",
|
|
2580
|
+
"mouse-13",
|
|
2581
|
+
"mouse-14",
|
|
2582
|
+
"mouse-15",
|
|
2583
|
+
"mouse-16",
|
|
2584
|
+
"mouse-17",
|
|
2585
|
+
"mouse-18",
|
|
2586
|
+
"mouse-19",
|
|
2587
|
+
"mouse-20",
|
|
2588
|
+
"mouse-21",
|
|
2589
|
+
"mouse-22",
|
|
2590
|
+
"mouse-23",
|
|
2591
|
+
"mouse-left-click-01",
|
|
2592
|
+
"mouse-left-click-02",
|
|
2593
|
+
"mouse-left-click-03",
|
|
2594
|
+
"mouse-left-click-04",
|
|
2595
|
+
"mouse-left-click-05",
|
|
2596
|
+
"mouse-left-click-06",
|
|
2597
|
+
"mouse-right-click-01",
|
|
2598
|
+
"mouse-right-click-02",
|
|
2599
|
+
"mouse-right-click-03",
|
|
2600
|
+
"mouse-right-click-04",
|
|
2601
|
+
"mouse-right-click-05",
|
|
2602
|
+
"mouse-right-click-06",
|
|
2603
|
+
"mouse-scroll-01",
|
|
2604
|
+
"mouse-scroll-02",
|
|
2605
|
+
"move",
|
|
2606
|
+
"move-01",
|
|
2607
|
+
"move-02",
|
|
2608
|
+
"move-bottom",
|
|
2609
|
+
"move-left",
|
|
2610
|
+
"move-right",
|
|
2611
|
+
"move-to",
|
|
2612
|
+
"move-top",
|
|
2613
|
+
"mp-3-01",
|
|
2614
|
+
"mp-3-02",
|
|
2615
|
+
"mp-4-01",
|
|
2616
|
+
"mp-4-02",
|
|
2617
|
+
"mubkhara",
|
|
2618
|
+
"muhammad",
|
|
2619
|
+
"multiplication-sign",
|
|
2620
|
+
"multiplication-sign-circle",
|
|
2621
|
+
"multiplication-sign-square",
|
|
2622
|
+
"mushroom",
|
|
2623
|
+
"mushroom-01",
|
|
2624
|
+
"music-note-01",
|
|
2625
|
+
"music-note-02",
|
|
2626
|
+
"music-note-03",
|
|
2627
|
+
"music-note-04",
|
|
2628
|
+
"music-note-square-01",
|
|
2629
|
+
"music-note-square-02",
|
|
2630
|
+
"muslim",
|
|
2631
|
+
"mute",
|
|
2632
|
+
"mymind",
|
|
2633
|
+
"n-th-root",
|
|
2634
|
+
"n-th-root-circle",
|
|
2635
|
+
"n-th-root-square",
|
|
2636
|
+
"nano-technology",
|
|
2637
|
+
"napkins-01",
|
|
2638
|
+
"napkins-02",
|
|
2639
|
+
"natural-food",
|
|
2640
|
+
"navigation-01",
|
|
2641
|
+
"navigation-02",
|
|
2642
|
+
"navigation-03",
|
|
2643
|
+
"navigation-04",
|
|
2644
|
+
"navigation-05",
|
|
2645
|
+
"navigator-01",
|
|
2646
|
+
"navigator-02",
|
|
2647
|
+
"necklace",
|
|
2648
|
+
"nerd",
|
|
2649
|
+
"neural-network",
|
|
2650
|
+
"neutral",
|
|
2651
|
+
"new-job",
|
|
2652
|
+
"new-office",
|
|
2653
|
+
"new-releases",
|
|
2654
|
+
"new-twitter",
|
|
2655
|
+
"new-twitter-ellipse",
|
|
2656
|
+
"new-twitter-rectangle",
|
|
2657
|
+
"news",
|
|
2658
|
+
"news-01",
|
|
2659
|
+
"next",
|
|
2660
|
+
"nike",
|
|
2661
|
+
"nintendo",
|
|
2662
|
+
"nintendo-switch",
|
|
2663
|
+
"niqab",
|
|
2664
|
+
"no-internet",
|
|
2665
|
+
"no-meeting-room",
|
|
2666
|
+
"no-signal",
|
|
2667
|
+
"node-add",
|
|
2668
|
+
"node-edit",
|
|
2669
|
+
"node-move-down",
|
|
2670
|
+
"node-move-up",
|
|
2671
|
+
"node-remove",
|
|
2672
|
+
"noodles",
|
|
2673
|
+
"nose",
|
|
2674
|
+
"not-equal-sign",
|
|
2675
|
+
"not-equal-sign-circle",
|
|
2676
|
+
"not-equal-sign-square",
|
|
2677
|
+
"note",
|
|
2678
|
+
"note-01",
|
|
2679
|
+
"note-02",
|
|
2680
|
+
"note-03",
|
|
2681
|
+
"note-04",
|
|
2682
|
+
"note-05",
|
|
2683
|
+
"note-add",
|
|
2684
|
+
"note-done",
|
|
2685
|
+
"note-edit",
|
|
2686
|
+
"note-remove",
|
|
2687
|
+
"notebook",
|
|
2688
|
+
"notebook-01",
|
|
2689
|
+
"notebook-02",
|
|
2690
|
+
"notification-01",
|
|
2691
|
+
"notification-02",
|
|
2692
|
+
"notification-03",
|
|
2693
|
+
"notification-block-01",
|
|
2694
|
+
"notification-block-02",
|
|
2695
|
+
"notification-block-03",
|
|
2696
|
+
"notification-bubble",
|
|
2697
|
+
"notification-circle",
|
|
2698
|
+
"notification-off-01",
|
|
2699
|
+
"notification-off-02",
|
|
2700
|
+
"notification-off-03",
|
|
2701
|
+
"notification-snooze-01",
|
|
2702
|
+
"notification-snooze-02",
|
|
2703
|
+
"notification-snooze-03",
|
|
2704
|
+
"notification-square",
|
|
2705
|
+
"notion-01",
|
|
2706
|
+
"notion-02",
|
|
2707
|
+
"npm",
|
|
2708
|
+
"nuclear-power",
|
|
2709
|
+
"nut",
|
|
2710
|
+
"obtuse",
|
|
2711
|
+
"octagon",
|
|
2712
|
+
"octopus",
|
|
2713
|
+
"office",
|
|
2714
|
+
"office-365",
|
|
2715
|
+
"office-chair",
|
|
2716
|
+
"oil",
|
|
2717
|
+
"oil-barrel",
|
|
2718
|
+
"ok-finger",
|
|
2719
|
+
"olympic-torch",
|
|
2720
|
+
"online-learning-01",
|
|
2721
|
+
"online-learning-02",
|
|
2722
|
+
"online-learning-03",
|
|
2723
|
+
"online-learning-04",
|
|
2724
|
+
"open-caption",
|
|
2725
|
+
"option",
|
|
2726
|
+
"orange",
|
|
2727
|
+
"orbit-01",
|
|
2728
|
+
"orbit-02",
|
|
2729
|
+
"organic-food",
|
|
2730
|
+
"orthogonal-edge",
|
|
2731
|
+
"oval",
|
|
2732
|
+
"oven",
|
|
2733
|
+
"package",
|
|
2734
|
+
"package-02",
|
|
2735
|
+
"package-03",
|
|
2736
|
+
"package-add",
|
|
2737
|
+
"package-delivered",
|
|
2738
|
+
"package-dimensions-01",
|
|
2739
|
+
"package-dimensions-02",
|
|
2740
|
+
"package-moving",
|
|
2741
|
+
"package-open",
|
|
2742
|
+
"package-out-of-stock",
|
|
2743
|
+
"package-process",
|
|
2744
|
+
"package-receive",
|
|
2745
|
+
"package-remove",
|
|
2746
|
+
"package-search",
|
|
2747
|
+
"package-sent",
|
|
2748
|
+
"packaging",
|
|
2749
|
+
"pacman-01",
|
|
2750
|
+
"pacman-02",
|
|
2751
|
+
"paella",
|
|
2752
|
+
"paint-board",
|
|
2753
|
+
"paint-brush-01",
|
|
2754
|
+
"paint-brush-02",
|
|
2755
|
+
"paint-brush-03",
|
|
2756
|
+
"paint-brush-04",
|
|
2757
|
+
"paint-bucket",
|
|
2758
|
+
"pan-01",
|
|
2759
|
+
"pan-02",
|
|
2760
|
+
"pan-03",
|
|
2761
|
+
"parabola-01",
|
|
2762
|
+
"parabola-02",
|
|
2763
|
+
"parabola-03",
|
|
2764
|
+
"paragliding",
|
|
2765
|
+
"paragraph",
|
|
2766
|
+
"paragraph-bullets-point-01",
|
|
2767
|
+
"paragraph-bullets-point-02",
|
|
2768
|
+
"paragraph-spacing",
|
|
2769
|
+
"parallelogram",
|
|
2770
|
+
"parking-area-circle",
|
|
2771
|
+
"parking-area-square",
|
|
2772
|
+
"party",
|
|
2773
|
+
"passport",
|
|
2774
|
+
"passport-01",
|
|
2775
|
+
"passport-expired",
|
|
2776
|
+
"passport-valid",
|
|
2777
|
+
"password-validation",
|
|
2778
|
+
"path",
|
|
2779
|
+
"pathfinder-crop",
|
|
2780
|
+
"pathfinder-divide",
|
|
2781
|
+
"pathfinder-exclude",
|
|
2782
|
+
"pathfinder-intersect",
|
|
2783
|
+
"pathfinder-merge",
|
|
2784
|
+
"pathfinder-minus-back",
|
|
2785
|
+
"pathfinder-minus-front",
|
|
2786
|
+
"pathfinder-outline",
|
|
2787
|
+
"pathfinder-trim",
|
|
2788
|
+
"pathfinder-unite",
|
|
2789
|
+
"patient",
|
|
2790
|
+
"patio",
|
|
2791
|
+
"pause",
|
|
2792
|
+
"pause-circle",
|
|
2793
|
+
"pavilon",
|
|
2794
|
+
"pay-by-check",
|
|
2795
|
+
"payment-01",
|
|
2796
|
+
"payment-02",
|
|
2797
|
+
"payment-success-01",
|
|
2798
|
+
"payment-success-02",
|
|
2799
|
+
"payoneer",
|
|
2800
|
+
"paypal",
|
|
2801
|
+
"pdf-01",
|
|
2802
|
+
"pdf-02",
|
|
2803
|
+
"peer-to-peer-01",
|
|
2804
|
+
"peer-to-peer-02",
|
|
2805
|
+
"peer-to-peer-03",
|
|
2806
|
+
"pen-01",
|
|
2807
|
+
"pen-02",
|
|
2808
|
+
"pen-connect-bluetooth",
|
|
2809
|
+
"pen-connect-usb",
|
|
2810
|
+
"pen-connect-wifi",
|
|
2811
|
+
"pen-tool-01",
|
|
2812
|
+
"pen-tool-02",
|
|
2813
|
+
"pen-tool-03",
|
|
2814
|
+
"pen-tool-add",
|
|
2815
|
+
"pen-tool-minus",
|
|
2816
|
+
"pencil",
|
|
2817
|
+
"pencil-edit-01",
|
|
2818
|
+
"pencil-edit-02",
|
|
2819
|
+
"pendulum",
|
|
2820
|
+
"pensive",
|
|
2821
|
+
"pentagon",
|
|
2822
|
+
"pentagon-01",
|
|
2823
|
+
"percent",
|
|
2824
|
+
"percent-circle",
|
|
2825
|
+
"percent-square",
|
|
2826
|
+
"perfume",
|
|
2827
|
+
"periscope",
|
|
2828
|
+
"permanent-job",
|
|
2829
|
+
"perplexity-ai",
|
|
2830
|
+
"perspective",
|
|
2831
|
+
"petals-01",
|
|
2832
|
+
"petals-02",
|
|
2833
|
+
"petals-03",
|
|
2834
|
+
"petrol-pump",
|
|
2835
|
+
"pexels",
|
|
2836
|
+
"phone-off-01",
|
|
2837
|
+
"phone-off-02",
|
|
2838
|
+
"php",
|
|
2839
|
+
"physics",
|
|
2840
|
+
"pi",
|
|
2841
|
+
"pi-circle",
|
|
2842
|
+
"pi-square",
|
|
2843
|
+
"picasa",
|
|
2844
|
+
"pickup-01",
|
|
2845
|
+
"pickup-02",
|
|
2846
|
+
"picture-in-picture-exit",
|
|
2847
|
+
"picture-in-picture-on",
|
|
2848
|
+
"pie",
|
|
2849
|
+
"pie-chart",
|
|
2850
|
+
"pie-chart-01",
|
|
2851
|
+
"pie-chart-02",
|
|
2852
|
+
"pie-chart-03",
|
|
2853
|
+
"pie-chart-04",
|
|
2854
|
+
"pie-chart-05",
|
|
2855
|
+
"pie-chart-06",
|
|
2856
|
+
"pie-chart-07",
|
|
2857
|
+
"pie-chart-08",
|
|
2858
|
+
"pie-chart-09",
|
|
2859
|
+
"pie-chart-square",
|
|
2860
|
+
"pin",
|
|
2861
|
+
"pin-02",
|
|
2862
|
+
"pin-code",
|
|
2863
|
+
"pin-location-01",
|
|
2864
|
+
"pin-location-02",
|
|
2865
|
+
"pin-location-03",
|
|
2866
|
+
"pin-off",
|
|
2867
|
+
"pine-tree",
|
|
2868
|
+
"pinterest",
|
|
2869
|
+
"pipeline",
|
|
2870
|
+
"pisa-tower",
|
|
2871
|
+
"pivot",
|
|
2872
|
+
"pizza-01",
|
|
2873
|
+
"pizza-02",
|
|
2874
|
+
"pizza-03",
|
|
2875
|
+
"pizza-04",
|
|
2876
|
+
"pizza-cutter",
|
|
2877
|
+
"plane",
|
|
2878
|
+
"plant-01",
|
|
2879
|
+
"plant-02",
|
|
2880
|
+
"plant-03",
|
|
2881
|
+
"plant-04",
|
|
2882
|
+
"plate",
|
|
2883
|
+
"plaxo",
|
|
2884
|
+
"play",
|
|
2885
|
+
"play-circle",
|
|
2886
|
+
"play-circle-02",
|
|
2887
|
+
"play-list",
|
|
2888
|
+
"play-list-add",
|
|
2889
|
+
"play-list-favourite-01",
|
|
2890
|
+
"play-list-favourite-02",
|
|
2891
|
+
"play-list-minus",
|
|
2892
|
+
"play-list-remove",
|
|
2893
|
+
"play-square",
|
|
2894
|
+
"play-store",
|
|
2895
|
+
"playlist-01",
|
|
2896
|
+
"playlist-02",
|
|
2897
|
+
"playlist-03",
|
|
2898
|
+
"plaza",
|
|
2899
|
+
"plug-01",
|
|
2900
|
+
"plug-02",
|
|
2901
|
+
"plug-socket",
|
|
2902
|
+
"plus-minus",
|
|
2903
|
+
"plus-minus-01",
|
|
2904
|
+
"plus-minus-02",
|
|
2905
|
+
"plus-minus-circle-01",
|
|
2906
|
+
"plus-minus-circle-02",
|
|
2907
|
+
"plus-minus-square-01",
|
|
2908
|
+
"plus-minus-square-02",
|
|
2909
|
+
"plus-sign",
|
|
2910
|
+
"plus-sign-circle",
|
|
2911
|
+
"plus-sign-square",
|
|
2912
|
+
"png-01",
|
|
2913
|
+
"png-02",
|
|
2914
|
+
"podcast",
|
|
2915
|
+
"podium",
|
|
2916
|
+
"pointing-left-01",
|
|
2917
|
+
"pointing-left-02",
|
|
2918
|
+
"pointing-left-03",
|
|
2919
|
+
"pointing-left-04",
|
|
2920
|
+
"pointing-left-05",
|
|
2921
|
+
"pointing-left-06",
|
|
2922
|
+
"pointing-left-07",
|
|
2923
|
+
"pointing-left-08",
|
|
2924
|
+
"pointing-right-01",
|
|
2925
|
+
"pointing-right-02",
|
|
2926
|
+
"pointing-right-03",
|
|
2927
|
+
"pointing-right-04",
|
|
2928
|
+
"pointing-right-05",
|
|
2929
|
+
"pointing-right-06",
|
|
2930
|
+
"pointing-right-07",
|
|
2931
|
+
"pointing-right-08",
|
|
2932
|
+
"pokeball",
|
|
2933
|
+
"pokemon",
|
|
2934
|
+
"police-badge",
|
|
2935
|
+
"police-cap",
|
|
2936
|
+
"police-car",
|
|
2937
|
+
"police-station",
|
|
2938
|
+
"policy",
|
|
2939
|
+
"poly-tank",
|
|
2940
|
+
"polygon",
|
|
2941
|
+
"pool",
|
|
2942
|
+
"pool-table",
|
|
2943
|
+
"popcorn",
|
|
2944
|
+
"pot-01",
|
|
2945
|
+
"pot-02",
|
|
2946
|
+
"potion",
|
|
2947
|
+
"pound",
|
|
2948
|
+
"pound-circle",
|
|
2949
|
+
"pound-receive",
|
|
2950
|
+
"pound-send",
|
|
2951
|
+
"pound-square",
|
|
2952
|
+
"power-service",
|
|
2953
|
+
"power-socket-01",
|
|
2954
|
+
"power-socket-02",
|
|
2955
|
+
"ppt-01",
|
|
2956
|
+
"ppt-02",
|
|
2957
|
+
"prawn",
|
|
2958
|
+
"prayer-rug-01",
|
|
2959
|
+
"prayer-rug-02",
|
|
2960
|
+
"preference-horizontal",
|
|
2961
|
+
"preference-vertical",
|
|
2962
|
+
"prescription",
|
|
2963
|
+
"presentation-01",
|
|
2964
|
+
"presentation-02",
|
|
2965
|
+
"presentation-03",
|
|
2966
|
+
"presentation-04",
|
|
2967
|
+
"presentation-05",
|
|
2968
|
+
"presentation-06",
|
|
2969
|
+
"presentation-07",
|
|
2970
|
+
"presentation-bar-chart-01",
|
|
2971
|
+
"presentation-bar-chart-02",
|
|
2972
|
+
"presentation-line-chart-01",
|
|
2973
|
+
"presentation-line-chart-02",
|
|
2974
|
+
"presentation-online",
|
|
2975
|
+
"presentation-podium",
|
|
2976
|
+
"previous",
|
|
2977
|
+
"printer",
|
|
2978
|
+
"printer-off",
|
|
2979
|
+
"prism",
|
|
2980
|
+
"prism-01",
|
|
2981
|
+
"prison",
|
|
2982
|
+
"prison-guard",
|
|
2983
|
+
"prisoner",
|
|
2984
|
+
"product-loading",
|
|
2985
|
+
"profile",
|
|
2986
|
+
"profile-02",
|
|
2987
|
+
"profit",
|
|
2988
|
+
"programming-flag",
|
|
2989
|
+
"progress",
|
|
2990
|
+
"progress-01",
|
|
2991
|
+
"progress-02",
|
|
2992
|
+
"progress-03",
|
|
2993
|
+
"progress-04",
|
|
2994
|
+
"projector",
|
|
2995
|
+
"projector-01",
|
|
2996
|
+
"promotion",
|
|
2997
|
+
"property-add",
|
|
2998
|
+
"property-delete",
|
|
2999
|
+
"property-edit",
|
|
3000
|
+
"property-new",
|
|
3001
|
+
"property-search",
|
|
3002
|
+
"property-view",
|
|
3003
|
+
"protection-mask",
|
|
3004
|
+
"pulley",
|
|
3005
|
+
"pulse-01",
|
|
3006
|
+
"pulse-02",
|
|
3007
|
+
"pulse-rectangle-01",
|
|
3008
|
+
"pulse-rectangle-02",
|
|
3009
|
+
"pumpkin",
|
|
3010
|
+
"punch",
|
|
3011
|
+
"punching-ball-01",
|
|
3012
|
+
"punching-ball-02",
|
|
3013
|
+
"purse",
|
|
3014
|
+
"purse-01",
|
|
3015
|
+
"push-up-bar",
|
|
3016
|
+
"puzzle",
|
|
3017
|
+
"pyramid",
|
|
3018
|
+
"pyramid-maslowo",
|
|
3019
|
+
"pyramid-structure-01",
|
|
3020
|
+
"pyramid-structure-02",
|
|
3021
|
+
"python",
|
|
3022
|
+
"qq-plot",
|
|
3023
|
+
"qr-code",
|
|
3024
|
+
"qr-code-01",
|
|
3025
|
+
"question",
|
|
3026
|
+
"queue-01",
|
|
3027
|
+
"queue-02",
|
|
3028
|
+
"quill-write-01",
|
|
3029
|
+
"quill-write-02",
|
|
3030
|
+
"quiz-01",
|
|
3031
|
+
"quiz-02",
|
|
3032
|
+
"quiz-03",
|
|
3033
|
+
"quiz-04",
|
|
3034
|
+
"quiz-05",
|
|
3035
|
+
"quora",
|
|
3036
|
+
"quote-down",
|
|
3037
|
+
"quote-down-circle",
|
|
3038
|
+
"quote-down-square",
|
|
3039
|
+
"quote-up",
|
|
3040
|
+
"quote-up-circle",
|
|
3041
|
+
"quote-up-square",
|
|
3042
|
+
"quotes",
|
|
3043
|
+
"quran-01",
|
|
3044
|
+
"quran-02",
|
|
3045
|
+
"quran-03",
|
|
3046
|
+
"racing-flag",
|
|
3047
|
+
"radar-01",
|
|
3048
|
+
"radar-02",
|
|
3049
|
+
"radial",
|
|
3050
|
+
"radio",
|
|
3051
|
+
"radio-01",
|
|
3052
|
+
"radio-02",
|
|
3053
|
+
"radio-button",
|
|
3054
|
+
"radioactive-alert",
|
|
3055
|
+
"radius",
|
|
3056
|
+
"rain",
|
|
3057
|
+
"rain-double-drop",
|
|
3058
|
+
"rain-drop",
|
|
3059
|
+
"rainbow",
|
|
3060
|
+
"ramadhan-01",
|
|
3061
|
+
"ramadhan-02",
|
|
3062
|
+
"ramadhan-month",
|
|
3063
|
+
"ranking",
|
|
3064
|
+
"rar-01",
|
|
3065
|
+
"rar-02",
|
|
3066
|
+
"raw-01",
|
|
3067
|
+
"raw-02",
|
|
3068
|
+
"re",
|
|
3069
|
+
"react",
|
|
3070
|
+
"real-estate-01",
|
|
3071
|
+
"real-estate-02",
|
|
3072
|
+
"receipt-dollar",
|
|
3073
|
+
"record",
|
|
3074
|
+
"recovery-mail",
|
|
3075
|
+
"rectangular",
|
|
3076
|
+
"rectangular-01",
|
|
3077
|
+
"recycle-01",
|
|
3078
|
+
"recycle-02",
|
|
3079
|
+
"recycle-03",
|
|
3080
|
+
"reddit",
|
|
3081
|
+
"redo",
|
|
3082
|
+
"redo-02",
|
|
3083
|
+
"redo-03",
|
|
3084
|
+
"reflex",
|
|
3085
|
+
"refresh",
|
|
3086
|
+
"refrigerator",
|
|
3087
|
+
"register",
|
|
3088
|
+
"registered",
|
|
3089
|
+
"relieved-01",
|
|
3090
|
+
"relieved-02",
|
|
3091
|
+
"reload",
|
|
3092
|
+
"reminder",
|
|
3093
|
+
"remote-control",
|
|
3094
|
+
"remove-01",
|
|
3095
|
+
"remove-02",
|
|
3096
|
+
"remove-circle",
|
|
3097
|
+
"remove-circle-half-dot",
|
|
3098
|
+
"remove-female",
|
|
3099
|
+
"remove-male",
|
|
3100
|
+
"remove-pi",
|
|
3101
|
+
"remove-square",
|
|
3102
|
+
"renewable-energy",
|
|
3103
|
+
"renewable-energy-01",
|
|
3104
|
+
"repair",
|
|
3105
|
+
"repeat",
|
|
3106
|
+
"repeat-off",
|
|
3107
|
+
"repeat-one-01",
|
|
3108
|
+
"repeat-one-02",
|
|
3109
|
+
"replay",
|
|
3110
|
+
"repository",
|
|
3111
|
+
"reset-password",
|
|
3112
|
+
"resize-01",
|
|
3113
|
+
"resize-02",
|
|
3114
|
+
"resize-field",
|
|
3115
|
+
"resize-field-rectangle",
|
|
3116
|
+
"resources-add",
|
|
3117
|
+
"resources-remove",
|
|
3118
|
+
"restaurant-01",
|
|
3119
|
+
"restaurant-02",
|
|
3120
|
+
"restaurant-03",
|
|
3121
|
+
"restaurant-table",
|
|
3122
|
+
"restore-bin",
|
|
3123
|
+
"return-request",
|
|
3124
|
+
"reverse-withdrawal-01",
|
|
3125
|
+
"reverse-withdrawal-02",
|
|
3126
|
+
"rhombus",
|
|
3127
|
+
"rhombus-01",
|
|
3128
|
+
"rice-bowl-01",
|
|
3129
|
+
"rice-bowl-02",
|
|
3130
|
+
"right-angle",
|
|
3131
|
+
"right-to-left-block-quote",
|
|
3132
|
+
"right-to-left-list-bullet",
|
|
3133
|
+
"right-to-left-list-dash",
|
|
3134
|
+
"right-to-left-list-number",
|
|
3135
|
+
"right-to-left-list-triangle",
|
|
3136
|
+
"right-triangle",
|
|
3137
|
+
"ripple",
|
|
3138
|
+
"riyal-circular",
|
|
3139
|
+
"riyal-square",
|
|
3140
|
+
"road",
|
|
3141
|
+
"road-01",
|
|
3142
|
+
"road-02",
|
|
3143
|
+
"road-location-01",
|
|
3144
|
+
"road-location-02",
|
|
3145
|
+
"road-wayside",
|
|
3146
|
+
"robot-01",
|
|
3147
|
+
"robot-02",
|
|
3148
|
+
"robotic",
|
|
3149
|
+
"rocket",
|
|
3150
|
+
"rocket-01",
|
|
3151
|
+
"rocket-02",
|
|
3152
|
+
"rocking-chair",
|
|
3153
|
+
"rocking-horse",
|
|
3154
|
+
"roller-skate",
|
|
3155
|
+
"rolling-pin",
|
|
3156
|
+
"root-01",
|
|
3157
|
+
"root-02",
|
|
3158
|
+
"root-1st-bracket",
|
|
3159
|
+
"root-2nd-bracket",
|
|
3160
|
+
"root-3rd-bracket",
|
|
3161
|
+
"root-circle",
|
|
3162
|
+
"rotate-01",
|
|
3163
|
+
"rotate-02",
|
|
3164
|
+
"rotate-360",
|
|
3165
|
+
"rotate-bottom-left",
|
|
3166
|
+
"rotate-bottom-right",
|
|
3167
|
+
"rotate-clockwise",
|
|
3168
|
+
"rotate-crop",
|
|
3169
|
+
"rotate-left-01",
|
|
3170
|
+
"rotate-left-02",
|
|
3171
|
+
"rotate-left-03",
|
|
3172
|
+
"rotate-left-04",
|
|
3173
|
+
"rotate-left-05",
|
|
3174
|
+
"rotate-left-06",
|
|
3175
|
+
"rotate-right-01",
|
|
3176
|
+
"rotate-right-02",
|
|
3177
|
+
"rotate-right-03",
|
|
3178
|
+
"rotate-right-04",
|
|
3179
|
+
"rotate-right-05",
|
|
3180
|
+
"rotate-right-06",
|
|
3181
|
+
"rotate-square",
|
|
3182
|
+
"rotate-top-left",
|
|
3183
|
+
"rotate-top-right",
|
|
3184
|
+
"route-01",
|
|
3185
|
+
"route-02",
|
|
3186
|
+
"route-03",
|
|
3187
|
+
"route-block",
|
|
3188
|
+
"router",
|
|
3189
|
+
"router-01",
|
|
3190
|
+
"router-02",
|
|
3191
|
+
"row-delete",
|
|
3192
|
+
"row-insert",
|
|
3193
|
+
"rss",
|
|
3194
|
+
"rss-connected-01",
|
|
3195
|
+
"rss-connected-02",
|
|
3196
|
+
"rss-error",
|
|
3197
|
+
"rss-locked",
|
|
3198
|
+
"rss-unlocked",
|
|
3199
|
+
"rub-el-hizb",
|
|
3200
|
+
"rubber-duck",
|
|
3201
|
+
"rubiks-cube",
|
|
3202
|
+
"ruku",
|
|
3203
|
+
"ruler",
|
|
3204
|
+
"running-shoes",
|
|
3205
|
+
"sad-01",
|
|
3206
|
+
"sad-02",
|
|
3207
|
+
"sad-dizzy",
|
|
3208
|
+
"safari",
|
|
3209
|
+
"safe",
|
|
3210
|
+
"safe-delivery-01",
|
|
3211
|
+
"safe-delivery-02",
|
|
3212
|
+
"safety-pin-01",
|
|
3213
|
+
"safety-pin-02",
|
|
3214
|
+
"sailboat-coastal",
|
|
3215
|
+
"sailboat-offshore",
|
|
3216
|
+
"sakura",
|
|
3217
|
+
"salah",
|
|
3218
|
+
"salah-time",
|
|
3219
|
+
"sale-tag-01",
|
|
3220
|
+
"sale-tag-02",
|
|
3221
|
+
"sand-dunes",
|
|
3222
|
+
"sandals",
|
|
3223
|
+
"satellite",
|
|
3224
|
+
"satellite-01",
|
|
3225
|
+
"satellite-02",
|
|
3226
|
+
"satellite-03",
|
|
3227
|
+
"saturn",
|
|
3228
|
+
"saturn-01",
|
|
3229
|
+
"saturn-02",
|
|
3230
|
+
"saudi-arabia-logo",
|
|
3231
|
+
"saudi-arabia-map",
|
|
3232
|
+
"saudi-coffee-fenjan",
|
|
3233
|
+
"saudi-shemagh",
|
|
3234
|
+
"sausage",
|
|
3235
|
+
"save-energy-01",
|
|
3236
|
+
"save-energy-02",
|
|
3237
|
+
"save-money-dollar",
|
|
3238
|
+
"save-money-euro",
|
|
3239
|
+
"save-money-pound",
|
|
3240
|
+
"save-money-yen",
|
|
3241
|
+
"savings",
|
|
3242
|
+
"scheme",
|
|
3243
|
+
"school",
|
|
3244
|
+
"school-01",
|
|
3245
|
+
"school-bell-01",
|
|
3246
|
+
"school-bell-02",
|
|
3247
|
+
"school-bus",
|
|
3248
|
+
"school-report-card",
|
|
3249
|
+
"school-tie",
|
|
3250
|
+
"scissor",
|
|
3251
|
+
"scissor-01",
|
|
3252
|
+
"scissor-rectangle",
|
|
3253
|
+
"scooter-01",
|
|
3254
|
+
"scooter-02",
|
|
3255
|
+
"scooter-03",
|
|
3256
|
+
"scooter-04",
|
|
3257
|
+
"scooter-electric",
|
|
3258
|
+
"scratch-card",
|
|
3259
|
+
"screen-add-to-home",
|
|
3260
|
+
"screen-lock-rotation",
|
|
3261
|
+
"screen-rotation",
|
|
3262
|
+
"scribd",
|
|
3263
|
+
"scroll",
|
|
3264
|
+
"scroll-horizontal",
|
|
3265
|
+
"scroll-vertical",
|
|
3266
|
+
"sd-card",
|
|
3267
|
+
"seal",
|
|
3268
|
+
"search-01",
|
|
3269
|
+
"search-02",
|
|
3270
|
+
"search-add",
|
|
3271
|
+
"search-area",
|
|
3272
|
+
"search-circle",
|
|
3273
|
+
"search-dollar",
|
|
3274
|
+
"search-focus",
|
|
3275
|
+
"search-list-01",
|
|
3276
|
+
"search-list-02",
|
|
3277
|
+
"search-minus",
|
|
3278
|
+
"search-remove",
|
|
3279
|
+
"search-replace",
|
|
3280
|
+
"search-square",
|
|
3281
|
+
"search-visual",
|
|
3282
|
+
"searching",
|
|
3283
|
+
"seat-selector",
|
|
3284
|
+
"secured-network",
|
|
3285
|
+
"security",
|
|
3286
|
+
"security-block",
|
|
3287
|
+
"security-check",
|
|
3288
|
+
"security-key-usb",
|
|
3289
|
+
"security-lock",
|
|
3290
|
+
"security-password",
|
|
3291
|
+
"security-validation",
|
|
3292
|
+
"security-wifi",
|
|
3293
|
+
"segment",
|
|
3294
|
+
"select-01",
|
|
3295
|
+
"select-02",
|
|
3296
|
+
"self-transfer",
|
|
3297
|
+
"semi-truck",
|
|
3298
|
+
"send-to-mobile",
|
|
3299
|
+
"sending-order",
|
|
3300
|
+
"senseless",
|
|
3301
|
+
"sent",
|
|
3302
|
+
"sent-02",
|
|
3303
|
+
"seo",
|
|
3304
|
+
"server-stack-01",
|
|
3305
|
+
"server-stack-02",
|
|
3306
|
+
"server-stack-03",
|
|
3307
|
+
"service",
|
|
3308
|
+
"serving-food",
|
|
3309
|
+
"setting-06",
|
|
3310
|
+
"setting-07",
|
|
3311
|
+
"setting-done-01",
|
|
3312
|
+
"setting-done-02",
|
|
3313
|
+
"setting-done-03",
|
|
3314
|
+
"setting-done-04",
|
|
3315
|
+
"setting-error-03",
|
|
3316
|
+
"setting-error-04",
|
|
3317
|
+
"settings-01",
|
|
3318
|
+
"settings-02",
|
|
3319
|
+
"settings-03",
|
|
3320
|
+
"settings-04",
|
|
3321
|
+
"settings-05",
|
|
3322
|
+
"settings-error-01",
|
|
3323
|
+
"settings-error-02",
|
|
3324
|
+
"setup-01",
|
|
3325
|
+
"setup-02",
|
|
3326
|
+
"shaka-01",
|
|
3327
|
+
"shaka-02",
|
|
3328
|
+
"shaka-03",
|
|
3329
|
+
"shaka-04",
|
|
3330
|
+
"shampoo",
|
|
3331
|
+
"shape-collection",
|
|
3332
|
+
"shapes",
|
|
3333
|
+
"share-01",
|
|
3334
|
+
"share-02",
|
|
3335
|
+
"share-03",
|
|
3336
|
+
"share-04",
|
|
3337
|
+
"share-05",
|
|
3338
|
+
"share-06",
|
|
3339
|
+
"share-07",
|
|
3340
|
+
"share-08",
|
|
3341
|
+
"share-knowledge",
|
|
3342
|
+
"share-location-01",
|
|
3343
|
+
"share-location-02",
|
|
3344
|
+
"shared-wifi",
|
|
3345
|
+
"sharing",
|
|
3346
|
+
"sheep-01",
|
|
3347
|
+
"shellfish",
|
|
3348
|
+
"sheriff-01",
|
|
3349
|
+
"shield-01",
|
|
3350
|
+
"shield-02",
|
|
3351
|
+
"shield-blockchain",
|
|
3352
|
+
"shield-energy",
|
|
3353
|
+
"shield-key",
|
|
3354
|
+
"shield-user",
|
|
3355
|
+
"shipment-tracking",
|
|
3356
|
+
"shipping-center",
|
|
3357
|
+
"shipping-loading",
|
|
3358
|
+
"shipping-truck-01",
|
|
3359
|
+
"shipping-truck-02",
|
|
3360
|
+
"shirt-01",
|
|
3361
|
+
"shocked",
|
|
3362
|
+
"shop-sign",
|
|
3363
|
+
"shopify",
|
|
3364
|
+
"shopping-bag-01",
|
|
3365
|
+
"shopping-bag-02",
|
|
3366
|
+
"shopping-bag-03",
|
|
3367
|
+
"shopping-bag-add",
|
|
3368
|
+
"shopping-bag-check",
|
|
3369
|
+
"shopping-bag-favorite",
|
|
3370
|
+
"shopping-bag-remove",
|
|
3371
|
+
"shopping-basket-01",
|
|
3372
|
+
"shopping-basket-02",
|
|
3373
|
+
"shopping-basket-03",
|
|
3374
|
+
"shopping-basket-add-01",
|
|
3375
|
+
"shopping-basket-add-02",
|
|
3376
|
+
"shopping-basket-add-03",
|
|
3377
|
+
"shopping-basket-check-in-01",
|
|
3378
|
+
"shopping-basket-check-in-02",
|
|
3379
|
+
"shopping-basket-check-in-03",
|
|
3380
|
+
"shopping-basket-check-out-01",
|
|
3381
|
+
"shopping-basket-check-out-02",
|
|
3382
|
+
"shopping-basket-check-out-03",
|
|
3383
|
+
"shopping-basket-done-01",
|
|
3384
|
+
"shopping-basket-done-02",
|
|
3385
|
+
"shopping-basket-done-03",
|
|
3386
|
+
"shopping-basket-favorite-01",
|
|
3387
|
+
"shopping-basket-favorite-02",
|
|
3388
|
+
"shopping-basket-favorite-03",
|
|
3389
|
+
"shopping-basket-remove-01",
|
|
3390
|
+
"shopping-basket-remove-02",
|
|
3391
|
+
"shopping-basket-remove-03",
|
|
3392
|
+
"shopping-basket-secure-01",
|
|
3393
|
+
"shopping-basket-secure-02",
|
|
3394
|
+
"shopping-basket-secure-03",
|
|
3395
|
+
"shopping-cart-01",
|
|
3396
|
+
"shopping-cart-02",
|
|
3397
|
+
"shopping-cart-add-01",
|
|
3398
|
+
"shopping-cart-add-02",
|
|
3399
|
+
"shopping-cart-check-01",
|
|
3400
|
+
"shopping-cart-check-02",
|
|
3401
|
+
"shopping-cart-check-in-01",
|
|
3402
|
+
"shopping-cart-check-in-02",
|
|
3403
|
+
"shopping-cart-check-out-01",
|
|
3404
|
+
"shopping-cart-check-out-02",
|
|
3405
|
+
"shopping-cart-favorite-01",
|
|
3406
|
+
"shopping-cart-favorite-02",
|
|
3407
|
+
"shopping-cart-remove-01",
|
|
3408
|
+
"shopping-cart-remove-02",
|
|
3409
|
+
"shoulder",
|
|
3410
|
+
"shuffle",
|
|
3411
|
+
"shuffle-square",
|
|
3412
|
+
"shut-down",
|
|
3413
|
+
"shutterstock",
|
|
3414
|
+
"sidebar-bottom",
|
|
3415
|
+
"sidebar-left",
|
|
3416
|
+
"sidebar-left-01",
|
|
3417
|
+
"sidebar-right",
|
|
3418
|
+
"sidebar-right-01",
|
|
3419
|
+
"sidebar-top",
|
|
3420
|
+
"sign-language-c",
|
|
3421
|
+
"signal",
|
|
3422
|
+
"signal-full-01",
|
|
3423
|
+
"signal-full-02",
|
|
3424
|
+
"signal-low-01",
|
|
3425
|
+
"signal-low-02",
|
|
3426
|
+
"signal-low-medium",
|
|
3427
|
+
"signal-medium-01",
|
|
3428
|
+
"signal-medium-02",
|
|
3429
|
+
"signal-no-01",
|
|
3430
|
+
"signal-no-02",
|
|
3431
|
+
"signature",
|
|
3432
|
+
"silence",
|
|
3433
|
+
"simcard-01",
|
|
3434
|
+
"simcard-02",
|
|
3435
|
+
"simcard-dual",
|
|
3436
|
+
"sin",
|
|
3437
|
+
"sine-01",
|
|
3438
|
+
"sine-02",
|
|
3439
|
+
"sing-left",
|
|
3440
|
+
"sing-right",
|
|
3441
|
+
"sink-01",
|
|
3442
|
+
"sink-02",
|
|
3443
|
+
"siri",
|
|
3444
|
+
"siri-new",
|
|
3445
|
+
"sketch",
|
|
3446
|
+
"skew",
|
|
3447
|
+
"ski",
|
|
3448
|
+
"skipping-rope",
|
|
3449
|
+
"skool",
|
|
3450
|
+
"skull",
|
|
3451
|
+
"skype",
|
|
3452
|
+
"slack",
|
|
3453
|
+
"sleeping",
|
|
3454
|
+
"sleeveless",
|
|
3455
|
+
"sliders-horizontal",
|
|
3456
|
+
"sliders-vertical",
|
|
3457
|
+
"slideshare",
|
|
3458
|
+
"slow-winds",
|
|
3459
|
+
"smart",
|
|
3460
|
+
"smart-ac",
|
|
3461
|
+
"smart-phone-01",
|
|
3462
|
+
"smart-phone-02",
|
|
3463
|
+
"smart-phone-03",
|
|
3464
|
+
"smart-phone-04",
|
|
3465
|
+
"smart-phone-landscape",
|
|
3466
|
+
"smart-watch-01",
|
|
3467
|
+
"smart-watch-02",
|
|
3468
|
+
"smart-watch-03",
|
|
3469
|
+
"smart-watch-04",
|
|
3470
|
+
"smartphone-lost-wifi",
|
|
3471
|
+
"smartphone-wifi",
|
|
3472
|
+
"smile",
|
|
3473
|
+
"smile-dizzy",
|
|
3474
|
+
"sms-code",
|
|
3475
|
+
"snail",
|
|
3476
|
+
"snapchat",
|
|
3477
|
+
"snow",
|
|
3478
|
+
"socks",
|
|
3479
|
+
"soda-can",
|
|
3480
|
+
"sofa-01",
|
|
3481
|
+
"sofa-02",
|
|
3482
|
+
"sofa-03",
|
|
3483
|
+
"sofa-single",
|
|
3484
|
+
"soft-drink-01",
|
|
3485
|
+
"soft-drink-02",
|
|
3486
|
+
"software",
|
|
3487
|
+
"software-license",
|
|
3488
|
+
"software-uninstall",
|
|
3489
|
+
"soil-moisture-field",
|
|
3490
|
+
"soil-moisture-global",
|
|
3491
|
+
"soil-temperature-field",
|
|
3492
|
+
"soil-temperature-global",
|
|
3493
|
+
"solar-energy",
|
|
3494
|
+
"solar-panel-01",
|
|
3495
|
+
"solar-panel-02",
|
|
3496
|
+
"solar-panel-03",
|
|
3497
|
+
"solar-panel-04",
|
|
3498
|
+
"solar-panel-05",
|
|
3499
|
+
"solar-power",
|
|
3500
|
+
"solar-system",
|
|
3501
|
+
"solar-system-01",
|
|
3502
|
+
"solid-line-01",
|
|
3503
|
+
"solid-line-02",
|
|
3504
|
+
"sort-by-down-01",
|
|
3505
|
+
"sort-by-down-02",
|
|
3506
|
+
"sort-by-up-01",
|
|
3507
|
+
"sort-by-up-02",
|
|
3508
|
+
"sorting-01",
|
|
3509
|
+
"sorting-02",
|
|
3510
|
+
"sorting-03",
|
|
3511
|
+
"sorting-04",
|
|
3512
|
+
"sorting-05",
|
|
3513
|
+
"sorting-1-9",
|
|
3514
|
+
"sorting-9-1",
|
|
3515
|
+
"sorting-a-z-01",
|
|
3516
|
+
"sorting-a-z-02",
|
|
3517
|
+
"sorting-down",
|
|
3518
|
+
"sorting-up",
|
|
3519
|
+
"sorting-z-a-01",
|
|
3520
|
+
"soundcloud",
|
|
3521
|
+
"source-code",
|
|
3522
|
+
"source-code-circle",
|
|
3523
|
+
"source-code-square",
|
|
3524
|
+
"spaceship",
|
|
3525
|
+
"spades",
|
|
3526
|
+
"spaghetti",
|
|
3527
|
+
"spam",
|
|
3528
|
+
"sparkles",
|
|
3529
|
+
"spartan-helmet",
|
|
3530
|
+
"spatula",
|
|
3531
|
+
"speaker",
|
|
3532
|
+
"speaker-01",
|
|
3533
|
+
"speech-to-text",
|
|
3534
|
+
"speed-train-01",
|
|
3535
|
+
"speed-train-02",
|
|
3536
|
+
"sperm",
|
|
3537
|
+
"sphere",
|
|
3538
|
+
"spirals",
|
|
3539
|
+
"spoon",
|
|
3540
|
+
"spoon-and-fork",
|
|
3541
|
+
"spoon-and-knife",
|
|
3542
|
+
"spotify",
|
|
3543
|
+
"sprout-01",
|
|
3544
|
+
"sprout-02",
|
|
3545
|
+
"sql",
|
|
3546
|
+
"square",
|
|
3547
|
+
"square-01",
|
|
3548
|
+
"square-arrow-data-transfer-diagonal",
|
|
3549
|
+
"square-arrow-data-transfer-horizontal",
|
|
3550
|
+
"square-arrow-data-transfer-vertical",
|
|
3551
|
+
"square-arrow-diagonal-01",
|
|
3552
|
+
"square-arrow-diagonal-02",
|
|
3553
|
+
"square-arrow-down-01",
|
|
3554
|
+
"square-arrow-down-02",
|
|
3555
|
+
"square-arrow-down-03",
|
|
3556
|
+
"square-arrow-down-double",
|
|
3557
|
+
"square-arrow-down-left",
|
|
3558
|
+
"square-arrow-down-right",
|
|
3559
|
+
"square-arrow-expand-01",
|
|
3560
|
+
"square-arrow-expand-02",
|
|
3561
|
+
"square-arrow-horizontal",
|
|
3562
|
+
"square-arrow-left-01",
|
|
3563
|
+
"square-arrow-left-02",
|
|
3564
|
+
"square-arrow-left-03",
|
|
3565
|
+
"square-arrow-left-double",
|
|
3566
|
+
"square-arrow-left-right",
|
|
3567
|
+
"square-arrow-move-down-left",
|
|
3568
|
+
"square-arrow-move-down-right",
|
|
3569
|
+
"square-arrow-move-left-down",
|
|
3570
|
+
"square-arrow-move-left-up",
|
|
3571
|
+
"square-arrow-move-right-down",
|
|
3572
|
+
"square-arrow-move-right-up",
|
|
3573
|
+
"square-arrow-reload-01",
|
|
3574
|
+
"square-arrow-reload-02",
|
|
3575
|
+
"square-arrow-right-01",
|
|
3576
|
+
"square-arrow-right-02",
|
|
3577
|
+
"square-arrow-right-03",
|
|
3578
|
+
"square-arrow-right-double",
|
|
3579
|
+
"square-arrow-shrink-01",
|
|
3580
|
+
"square-arrow-shrink-02",
|
|
3581
|
+
"square-arrow-up-01",
|
|
3582
|
+
"square-arrow-up-02",
|
|
3583
|
+
"square-arrow-up-03",
|
|
3584
|
+
"square-arrow-up-double",
|
|
3585
|
+
"square-arrow-up-down",
|
|
3586
|
+
"square-arrow-up-left",
|
|
3587
|
+
"square-arrow-up-right",
|
|
3588
|
+
"square-arrow-vertical",
|
|
3589
|
+
"square-circle",
|
|
3590
|
+
"square-lock-01",
|
|
3591
|
+
"square-lock-02",
|
|
3592
|
+
"square-lock-add-01",
|
|
3593
|
+
"square-lock-add-02",
|
|
3594
|
+
"square-lock-check-01",
|
|
3595
|
+
"square-lock-check-02",
|
|
3596
|
+
"square-lock-minus-01",
|
|
3597
|
+
"square-lock-minus-02",
|
|
3598
|
+
"square-lock-password",
|
|
3599
|
+
"square-lock-remove-01",
|
|
3600
|
+
"square-lock-remove-02",
|
|
3601
|
+
"square-root-square",
|
|
3602
|
+
"square-square",
|
|
3603
|
+
"square-unlock-01",
|
|
3604
|
+
"square-unlock-02",
|
|
3605
|
+
"stack-star",
|
|
3606
|
+
"stake",
|
|
3607
|
+
"stamp",
|
|
3608
|
+
"stamp-01",
|
|
3609
|
+
"stamp-02",
|
|
3610
|
+
"star",
|
|
3611
|
+
"star-award-01",
|
|
3612
|
+
"star-award-02",
|
|
3613
|
+
"star-circle",
|
|
3614
|
+
"star-face",
|
|
3615
|
+
"star-half",
|
|
3616
|
+
"star-off",
|
|
3617
|
+
"star-square",
|
|
3618
|
+
"stars",
|
|
3619
|
+
"start-up-01",
|
|
3620
|
+
"start-up-02",
|
|
3621
|
+
"stationery",
|
|
3622
|
+
"status",
|
|
3623
|
+
"steak",
|
|
3624
|
+
"steering",
|
|
3625
|
+
"step-into",
|
|
3626
|
+
"step-out",
|
|
3627
|
+
"step-over",
|
|
3628
|
+
"stethoscope",
|
|
3629
|
+
"stethoscope-02",
|
|
3630
|
+
"sticky-note-01",
|
|
3631
|
+
"sticky-note-02",
|
|
3632
|
+
"sticky-note-03",
|
|
3633
|
+
"stop",
|
|
3634
|
+
"stop-circle",
|
|
3635
|
+
"stop-loss-order",
|
|
3636
|
+
"stop-watch",
|
|
3637
|
+
"store-01",
|
|
3638
|
+
"store-02",
|
|
3639
|
+
"store-03",
|
|
3640
|
+
"store-04",
|
|
3641
|
+
"store-add-01",
|
|
3642
|
+
"store-add-02",
|
|
3643
|
+
"store-location-01",
|
|
3644
|
+
"store-location-02",
|
|
3645
|
+
"store-management-01",
|
|
3646
|
+
"store-management-02",
|
|
3647
|
+
"store-remove-01",
|
|
3648
|
+
"store-remove-02",
|
|
3649
|
+
"store-verified-01",
|
|
3650
|
+
"store-verified-02",
|
|
3651
|
+
"straight-edge",
|
|
3652
|
+
"strategy",
|
|
3653
|
+
"streering-wheel",
|
|
3654
|
+
"street-food",
|
|
3655
|
+
"stripe",
|
|
3656
|
+
"stroke-bottom",
|
|
3657
|
+
"stroke-center",
|
|
3658
|
+
"stroke-inside",
|
|
3659
|
+
"stroke-left",
|
|
3660
|
+
"stroke-outside",
|
|
3661
|
+
"stroke-right",
|
|
3662
|
+
"stroke-top",
|
|
3663
|
+
"structure-01",
|
|
3664
|
+
"structure-02",
|
|
3665
|
+
"structure-03",
|
|
3666
|
+
"structure-04",
|
|
3667
|
+
"structure-05",
|
|
3668
|
+
"structure-add",
|
|
3669
|
+
"structure-check",
|
|
3670
|
+
"structure-fail",
|
|
3671
|
+
"structure-folder",
|
|
3672
|
+
"structure-folder-circle",
|
|
3673
|
+
"student",
|
|
3674
|
+
"student-card",
|
|
3675
|
+
"students",
|
|
3676
|
+
"study-desk",
|
|
3677
|
+
"study-lamp",
|
|
3678
|
+
"stumbleupon",
|
|
3679
|
+
"submarine",
|
|
3680
|
+
"submerge",
|
|
3681
|
+
"subnode-add",
|
|
3682
|
+
"subnode-delete",
|
|
3683
|
+
"subpoena",
|
|
3684
|
+
"subtitle",
|
|
3685
|
+
"suit-01",
|
|
3686
|
+
"suit-02",
|
|
3687
|
+
"sujood",
|
|
3688
|
+
"summation-01",
|
|
3689
|
+
"summation-02",
|
|
3690
|
+
"summation-circle",
|
|
3691
|
+
"summation-square",
|
|
3692
|
+
"sun-01",
|
|
3693
|
+
"sun-02",
|
|
3694
|
+
"sun-03",
|
|
3695
|
+
"sun-cloud-01",
|
|
3696
|
+
"sun-cloud-02",
|
|
3697
|
+
"sun-cloud-angled-rain-01",
|
|
3698
|
+
"sun-cloud-angled-rain-02",
|
|
3699
|
+
"sun-cloud-angled-rain-zap-01",
|
|
3700
|
+
"sun-cloud-angled-rain-zap-02",
|
|
3701
|
+
"sun-cloud-angled-zap-01",
|
|
3702
|
+
"sun-cloud-angled-zap-02",
|
|
3703
|
+
"sun-cloud-big-rain-01",
|
|
3704
|
+
"sun-cloud-big-rain-02",
|
|
3705
|
+
"sun-cloud-fast-wind-01",
|
|
3706
|
+
"sun-cloud-fast-wind-02",
|
|
3707
|
+
"sun-cloud-hailstone-01",
|
|
3708
|
+
"sun-cloud-hailstone-02",
|
|
3709
|
+
"sun-cloud-little-rain-01",
|
|
3710
|
+
"sun-cloud-little-rain-02",
|
|
3711
|
+
"sun-cloud-little-snow-01",
|
|
3712
|
+
"sun-cloud-little-snow-02",
|
|
3713
|
+
"sun-cloud-mid-rain-01",
|
|
3714
|
+
"sun-cloud-mid-rain-02",
|
|
3715
|
+
"sun-cloud-mid-snow-01",
|
|
3716
|
+
"sun-cloud-mid-snow-02",
|
|
3717
|
+
"sun-cloud-slow-wind-01",
|
|
3718
|
+
"sun-cloud-slow-wind-02",
|
|
3719
|
+
"sun-cloud-snow-01",
|
|
3720
|
+
"sun-cloud-snow-02",
|
|
3721
|
+
"sunglasses",
|
|
3722
|
+
"sunrise",
|
|
3723
|
+
"sunset",
|
|
3724
|
+
"super-mario",
|
|
3725
|
+
"super-mario-toad",
|
|
3726
|
+
"surfboard",
|
|
3727
|
+
"surprise",
|
|
3728
|
+
"sushi-01",
|
|
3729
|
+
"sushi-02",
|
|
3730
|
+
"sushi-03",
|
|
3731
|
+
"suspicious",
|
|
3732
|
+
"sustainable-energy",
|
|
3733
|
+
"svg-01",
|
|
3734
|
+
"svg-02",
|
|
3735
|
+
"swarm",
|
|
3736
|
+
"swatch",
|
|
3737
|
+
"swimming",
|
|
3738
|
+
"swimming-cap",
|
|
3739
|
+
"swipe-down-01",
|
|
3740
|
+
"swipe-down-02",
|
|
3741
|
+
"swipe-down-03",
|
|
3742
|
+
"swipe-down-04",
|
|
3743
|
+
"swipe-down-05",
|
|
3744
|
+
"swipe-down-06",
|
|
3745
|
+
"swipe-down-07",
|
|
3746
|
+
"swipe-down-08",
|
|
3747
|
+
"swipe-left-01",
|
|
3748
|
+
"swipe-left-02",
|
|
3749
|
+
"swipe-left-03",
|
|
3750
|
+
"swipe-left-04",
|
|
3751
|
+
"swipe-left-05",
|
|
3752
|
+
"swipe-left-06",
|
|
3753
|
+
"swipe-left-07",
|
|
3754
|
+
"swipe-left-08",
|
|
3755
|
+
"swipe-left-09",
|
|
3756
|
+
"swipe-right-01",
|
|
3757
|
+
"swipe-right-02",
|
|
3758
|
+
"swipe-right-03",
|
|
3759
|
+
"swipe-right-04",
|
|
3760
|
+
"swipe-right-05",
|
|
3761
|
+
"swipe-right-06",
|
|
3762
|
+
"swipe-right-07",
|
|
3763
|
+
"swipe-right-08",
|
|
3764
|
+
"swipe-right-09",
|
|
3765
|
+
"swipe-up-01",
|
|
3766
|
+
"swipe-up-02",
|
|
3767
|
+
"swipe-up-03",
|
|
3768
|
+
"swipe-up-04",
|
|
3769
|
+
"swipe-up-05",
|
|
3770
|
+
"swipe-up-06",
|
|
3771
|
+
"swipe-up-07",
|
|
3772
|
+
"swipe-up-08",
|
|
3773
|
+
"sword-01",
|
|
3774
|
+
"sword-02",
|
|
3775
|
+
"sword-03",
|
|
3776
|
+
"system-update-01",
|
|
3777
|
+
"system-update-02",
|
|
3778
|
+
"t-shirt",
|
|
3779
|
+
"table",
|
|
3780
|
+
"table-01",
|
|
3781
|
+
"table-02",
|
|
3782
|
+
"table-03",
|
|
3783
|
+
"table-lamp-01",
|
|
3784
|
+
"table-lamp-02",
|
|
3785
|
+
"table-round",
|
|
3786
|
+
"table-tennis-bat",
|
|
3787
|
+
"tablet-01",
|
|
3788
|
+
"tablet-02",
|
|
3789
|
+
"tablet-connected-bluetooth",
|
|
3790
|
+
"tablet-connected-usb",
|
|
3791
|
+
"tablet-connected-wifi",
|
|
3792
|
+
"tablet-pen",
|
|
3793
|
+
"taco-01",
|
|
3794
|
+
"taco-02",
|
|
3795
|
+
"tag-01",
|
|
3796
|
+
"tag-02",
|
|
3797
|
+
"tags",
|
|
3798
|
+
"taj-mahal",
|
|
3799
|
+
"tan",
|
|
3800
|
+
"tanker-truck",
|
|
3801
|
+
"tap-01",
|
|
3802
|
+
"tap-02",
|
|
3803
|
+
"tap-03",
|
|
3804
|
+
"tap-04",
|
|
3805
|
+
"tap-05",
|
|
3806
|
+
"tap-06",
|
|
3807
|
+
"tap-07",
|
|
3808
|
+
"tap-08",
|
|
3809
|
+
"tape-measure",
|
|
3810
|
+
"target-01",
|
|
3811
|
+
"target-02",
|
|
3812
|
+
"target-03",
|
|
3813
|
+
"target-dollar",
|
|
3814
|
+
"tasbih",
|
|
3815
|
+
"task-01",
|
|
3816
|
+
"task-02",
|
|
3817
|
+
"task-add-01",
|
|
3818
|
+
"task-add-02",
|
|
3819
|
+
"task-daily-01",
|
|
3820
|
+
"task-daily-02",
|
|
3821
|
+
"task-done-01",
|
|
3822
|
+
"task-done-02",
|
|
3823
|
+
"task-edit-01",
|
|
3824
|
+
"task-edit-02",
|
|
3825
|
+
"task-remove-01",
|
|
3826
|
+
"task-remove-02",
|
|
3827
|
+
"taxes",
|
|
3828
|
+
"taxi",
|
|
3829
|
+
"taxi-02",
|
|
3830
|
+
"tea",
|
|
3831
|
+
"tea-pod",
|
|
3832
|
+
"teacher",
|
|
3833
|
+
"teaching",
|
|
3834
|
+
"teamviewer",
|
|
3835
|
+
"telegram",
|
|
3836
|
+
"telephone",
|
|
3837
|
+
"telescope-01",
|
|
3838
|
+
"telescope-02",
|
|
3839
|
+
"television-table",
|
|
3840
|
+
"temperature",
|
|
3841
|
+
"tennis-ball",
|
|
3842
|
+
"tent",
|
|
3843
|
+
"terrace",
|
|
3844
|
+
"test-tube",
|
|
3845
|
+
"test-tube-01",
|
|
3846
|
+
"test-tube-02",
|
|
3847
|
+
"test-tube-03",
|
|
3848
|
+
"tetris",
|
|
3849
|
+
"text",
|
|
3850
|
+
"text-align-center",
|
|
3851
|
+
"text-align-justify-center",
|
|
3852
|
+
"text-align-justify-left",
|
|
3853
|
+
"text-align-justify-right",
|
|
3854
|
+
"text-align-left",
|
|
3855
|
+
"text-align-left-01",
|
|
3856
|
+
"text-align-right",
|
|
3857
|
+
"text-align-right-01",
|
|
3858
|
+
"text-all-caps",
|
|
3859
|
+
"text-bold",
|
|
3860
|
+
"text-centerline-center-top",
|
|
3861
|
+
"text-centerline-left",
|
|
3862
|
+
"text-centerline-middle",
|
|
3863
|
+
"text-centerline-right",
|
|
3864
|
+
"text-check",
|
|
3865
|
+
"text-circle",
|
|
3866
|
+
"text-clear",
|
|
3867
|
+
"text-color",
|
|
3868
|
+
"text-creation",
|
|
3869
|
+
"text-firstline-left",
|
|
3870
|
+
"text-firstline-right",
|
|
3871
|
+
"text-font",
|
|
3872
|
+
"text-footnote",
|
|
3873
|
+
"text-indent",
|
|
3874
|
+
"text-indent-01",
|
|
3875
|
+
"text-indent-less",
|
|
3876
|
+
"text-indent-more",
|
|
3877
|
+
"text-italic",
|
|
3878
|
+
"text-italic-slash",
|
|
3879
|
+
"text-kerning",
|
|
3880
|
+
"text-number-sign",
|
|
3881
|
+
"text-selection",
|
|
3882
|
+
"text-smallcaps",
|
|
3883
|
+
"text-square",
|
|
3884
|
+
"text-strikethrough",
|
|
3885
|
+
"text-subscript",
|
|
3886
|
+
"text-superscript",
|
|
3887
|
+
"text-tracking",
|
|
3888
|
+
"text-underline",
|
|
3889
|
+
"text-variable-front",
|
|
3890
|
+
"text-vertical-alignment",
|
|
3891
|
+
"text-wrap",
|
|
3892
|
+
"the-prophets-mosque",
|
|
3893
|
+
"thermometer",
|
|
3894
|
+
"thermometer-cold",
|
|
3895
|
+
"thermometer-warm",
|
|
3896
|
+
"thread",
|
|
3897
|
+
"threads",
|
|
3898
|
+
"threads-ellipse",
|
|
3899
|
+
"threads-rectangle",
|
|
3900
|
+
"three-finger-01",
|
|
3901
|
+
"three-finger-02",
|
|
3902
|
+
"three-finger-03",
|
|
3903
|
+
"three-finger-04",
|
|
3904
|
+
"three-finger-05",
|
|
3905
|
+
"thumbs-down",
|
|
3906
|
+
"thumbs-down-ellipse",
|
|
3907
|
+
"thumbs-down-rectangle",
|
|
3908
|
+
"thumbs-up",
|
|
3909
|
+
"thumbs-up-down",
|
|
3910
|
+
"thumbs-up-ellipse",
|
|
3911
|
+
"thumbs-up-rectangle",
|
|
3912
|
+
"tic-tac-toe",
|
|
3913
|
+
"tick-01",
|
|
3914
|
+
"tick-02",
|
|
3915
|
+
"tick-03",
|
|
3916
|
+
"tick-04",
|
|
3917
|
+
"tick-double-01",
|
|
3918
|
+
"tick-double-02",
|
|
3919
|
+
"tick-double-03",
|
|
3920
|
+
"tick-double-04",
|
|
3921
|
+
"ticket-01",
|
|
3922
|
+
"ticket-02",
|
|
3923
|
+
"ticket-03",
|
|
3924
|
+
"ticket-star",
|
|
3925
|
+
"tie",
|
|
3926
|
+
"tiff-01",
|
|
3927
|
+
"tiff-02",
|
|
3928
|
+
"tiktok",
|
|
3929
|
+
"tiktok-square",
|
|
3930
|
+
"tiltify",
|
|
3931
|
+
"time-01",
|
|
3932
|
+
"time-02",
|
|
3933
|
+
"time-03",
|
|
3934
|
+
"time-04",
|
|
3935
|
+
"time-half-pass",
|
|
3936
|
+
"time-management",
|
|
3937
|
+
"time-management-circle",
|
|
3938
|
+
"time-quarter",
|
|
3939
|
+
"time-quarter-02",
|
|
3940
|
+
"time-quarter-pass",
|
|
3941
|
+
"time-schedule",
|
|
3942
|
+
"time-setting-01",
|
|
3943
|
+
"time-setting-02",
|
|
3944
|
+
"time-setting-03",
|
|
3945
|
+
"timer-01",
|
|
3946
|
+
"timer-02",
|
|
3947
|
+
"tips",
|
|
3948
|
+
"tire",
|
|
3949
|
+
"tired-01",
|
|
3950
|
+
"tired-02",
|
|
3951
|
+
"tissue-paper",
|
|
3952
|
+
"toggle-off",
|
|
3953
|
+
"toggle-on",
|
|
3954
|
+
"toilet-01",
|
|
3955
|
+
"toilet-02",
|
|
3956
|
+
"token-circle",
|
|
3957
|
+
"token-square",
|
|
3958
|
+
"tongue",
|
|
3959
|
+
"tongue-01",
|
|
3960
|
+
"tongue-wink-left",
|
|
3961
|
+
"tongue-wink-right",
|
|
3962
|
+
"tools",
|
|
3963
|
+
"tornado-01",
|
|
3964
|
+
"tornado-02",
|
|
3965
|
+
"torri-gate",
|
|
3966
|
+
"touch-01",
|
|
3967
|
+
"touch-02",
|
|
3968
|
+
"touch-03",
|
|
3969
|
+
"touch-04",
|
|
3970
|
+
"touch-05",
|
|
3971
|
+
"touch-06",
|
|
3972
|
+
"touch-07",
|
|
3973
|
+
"touch-08",
|
|
3974
|
+
"touch-09",
|
|
3975
|
+
"touch-10",
|
|
3976
|
+
"touch-interaction-01",
|
|
3977
|
+
"touch-interaction-02",
|
|
3978
|
+
"touch-interaction-03",
|
|
3979
|
+
"touch-interaction-04",
|
|
3980
|
+
"touch-locked-01",
|
|
3981
|
+
"touch-locked-02",
|
|
3982
|
+
"touch-locked-03",
|
|
3983
|
+
"touch-locked-04",
|
|
3984
|
+
"touchpad-01",
|
|
3985
|
+
"touchpad-02",
|
|
3986
|
+
"touchpad-03",
|
|
3987
|
+
"touchpad-04",
|
|
3988
|
+
"tow-truck",
|
|
3989
|
+
"towels",
|
|
3990
|
+
"toy-train",
|
|
3991
|
+
"tractor",
|
|
3992
|
+
"trade-down",
|
|
3993
|
+
"trade-mark",
|
|
3994
|
+
"trade-up",
|
|
3995
|
+
"trademark",
|
|
3996
|
+
"traffic-incident",
|
|
3997
|
+
"traffic-jam-01",
|
|
3998
|
+
"traffic-jam-02",
|
|
3999
|
+
"traffic-light",
|
|
4000
|
+
"train-01",
|
|
4001
|
+
"train-02",
|
|
4002
|
+
"tram",
|
|
4003
|
+
"trampoline",
|
|
4004
|
+
"transaction",
|
|
4005
|
+
"transition-bottom",
|
|
4006
|
+
"transition-left",
|
|
4007
|
+
"transition-right",
|
|
4008
|
+
"transition-top",
|
|
4009
|
+
"translate",
|
|
4010
|
+
"translation",
|
|
4011
|
+
"transmission",
|
|
4012
|
+
"transparency",
|
|
4013
|
+
"trapezoid-line-horizontal",
|
|
4014
|
+
"trapezoid-line-vertical",
|
|
4015
|
+
"travel-bag",
|
|
4016
|
+
"treadmill-01",
|
|
4017
|
+
"treadmill-02",
|
|
4018
|
+
"treatment",
|
|
4019
|
+
"tree-01",
|
|
4020
|
+
"tree-02",
|
|
4021
|
+
"tree-03",
|
|
4022
|
+
"tree-04",
|
|
4023
|
+
"tree-05",
|
|
4024
|
+
"tree-06",
|
|
4025
|
+
"tree-07",
|
|
4026
|
+
"trello",
|
|
4027
|
+
"triangle",
|
|
4028
|
+
"triangle-01",
|
|
4029
|
+
"triangle-02",
|
|
4030
|
+
"triangle-03",
|
|
4031
|
+
"trolley-01",
|
|
4032
|
+
"trolley-02",
|
|
4033
|
+
"tropical-storm",
|
|
4034
|
+
"tropical-storm-tracks-01",
|
|
4035
|
+
"tropical-storm-tracks-02",
|
|
4036
|
+
"truck",
|
|
4037
|
+
"truck-delivery",
|
|
4038
|
+
"truck-monster",
|
|
4039
|
+
"truck-return",
|
|
4040
|
+
"trulli",
|
|
4041
|
+
"tsunami",
|
|
4042
|
+
"tulip",
|
|
4043
|
+
"tumblr",
|
|
4044
|
+
"turtle-neck",
|
|
4045
|
+
"tv-01",
|
|
4046
|
+
"tv-02",
|
|
4047
|
+
"tv-fix",
|
|
4048
|
+
"tv-issue",
|
|
4049
|
+
"tv-smart",
|
|
4050
|
+
"twin-tower",
|
|
4051
|
+
"twitch",
|
|
4052
|
+
"twitter",
|
|
4053
|
+
"twitter-square",
|
|
4054
|
+
"two-factor-access",
|
|
4055
|
+
"two-finger-01",
|
|
4056
|
+
"two-finger-02",
|
|
4057
|
+
"two-finger-03",
|
|
4058
|
+
"two-finger-04",
|
|
4059
|
+
"two-finger-05",
|
|
4060
|
+
"txt-01",
|
|
4061
|
+
"txt-02",
|
|
4062
|
+
"type-cursor",
|
|
4063
|
+
"typescript-01",
|
|
4064
|
+
"typescript-02",
|
|
4065
|
+
"typescript-03",
|
|
4066
|
+
"uber",
|
|
4067
|
+
"ufo",
|
|
4068
|
+
"ufo-01",
|
|
4069
|
+
"umbrella",
|
|
4070
|
+
"umbrella-dollar",
|
|
4071
|
+
"unamused",
|
|
4072
|
+
"unavailable",
|
|
4073
|
+
"undo",
|
|
4074
|
+
"undo-02",
|
|
4075
|
+
"undo-03",
|
|
4076
|
+
"unfold-less",
|
|
4077
|
+
"unfold-more",
|
|
4078
|
+
"ungroup-items",
|
|
4079
|
+
"ungroup-layers",
|
|
4080
|
+
"unhappy",
|
|
4081
|
+
"universal-access",
|
|
4082
|
+
"universal-access-circle",
|
|
4083
|
+
"university",
|
|
4084
|
+
"unlink-01",
|
|
4085
|
+
"unlink-02",
|
|
4086
|
+
"unlink-03",
|
|
4087
|
+
"unlink-04",
|
|
4088
|
+
"unlink-05",
|
|
4089
|
+
"unlink-06",
|
|
4090
|
+
"unsplash",
|
|
4091
|
+
"upload-01",
|
|
4092
|
+
"upload-02",
|
|
4093
|
+
"upload-03",
|
|
4094
|
+
"upload-04",
|
|
4095
|
+
"upload-05",
|
|
4096
|
+
"upload-circle-01",
|
|
4097
|
+
"upload-circle-02",
|
|
4098
|
+
"upload-square-01",
|
|
4099
|
+
"upload-square-02",
|
|
4100
|
+
"upwork",
|
|
4101
|
+
"usb",
|
|
4102
|
+
"usb-bugs",
|
|
4103
|
+
"usb-connected-01",
|
|
4104
|
+
"usb-connected-02",
|
|
4105
|
+
"usb-connected-03",
|
|
4106
|
+
"usb-error",
|
|
4107
|
+
"usb-memory-01",
|
|
4108
|
+
"usb-memory-02",
|
|
4109
|
+
"usb-not-connected-01",
|
|
4110
|
+
"usb-not-connected-02",
|
|
4111
|
+
"user",
|
|
4112
|
+
"user-02",
|
|
4113
|
+
"user-03",
|
|
4114
|
+
"user-account",
|
|
4115
|
+
"user-add-01",
|
|
4116
|
+
"user-add-02",
|
|
4117
|
+
"user-arrow-left-right",
|
|
4118
|
+
"user-block-01",
|
|
4119
|
+
"user-block-02",
|
|
4120
|
+
"user-check-01",
|
|
4121
|
+
"user-check-02",
|
|
4122
|
+
"user-circle",
|
|
4123
|
+
"user-circle-02",
|
|
4124
|
+
"user-edit-01",
|
|
4125
|
+
"user-full-view",
|
|
4126
|
+
"user-group",
|
|
4127
|
+
"user-group-02",
|
|
4128
|
+
"user-group-03",
|
|
4129
|
+
"user-id-verification",
|
|
4130
|
+
"user-list",
|
|
4131
|
+
"user-lock-01",
|
|
4132
|
+
"user-lock-02",
|
|
4133
|
+
"user-love-01",
|
|
4134
|
+
"user-love-02",
|
|
4135
|
+
"user-minus-01",
|
|
4136
|
+
"user-minus-02",
|
|
4137
|
+
"user-multiple",
|
|
4138
|
+
"user-multiple-02",
|
|
4139
|
+
"user-multiple-03",
|
|
4140
|
+
"user-question-01",
|
|
4141
|
+
"user-question-02",
|
|
4142
|
+
"user-remove-01",
|
|
4143
|
+
"user-remove-02",
|
|
4144
|
+
"user-roadside",
|
|
4145
|
+
"user-search-01",
|
|
4146
|
+
"user-search-02",
|
|
4147
|
+
"user-settings-01",
|
|
4148
|
+
"user-settings-02",
|
|
4149
|
+
"user-sharing",
|
|
4150
|
+
"user-shield-01",
|
|
4151
|
+
"user-shield-02",
|
|
4152
|
+
"user-square",
|
|
4153
|
+
"user-star-01",
|
|
4154
|
+
"user-star-02",
|
|
4155
|
+
"user-status",
|
|
4156
|
+
"user-story",
|
|
4157
|
+
"user-switch",
|
|
4158
|
+
"user-unlock-01",
|
|
4159
|
+
"user-unlock-02",
|
|
4160
|
+
"uv-01",
|
|
4161
|
+
"uv-02",
|
|
4162
|
+
"uv-03",
|
|
4163
|
+
"vaccine",
|
|
4164
|
+
"validation",
|
|
4165
|
+
"validation-approval",
|
|
4166
|
+
"van",
|
|
4167
|
+
"variable",
|
|
4168
|
+
"vegetarian-food",
|
|
4169
|
+
"versus",
|
|
4170
|
+
"vertical-resize",
|
|
4171
|
+
"vertical-scroll-point",
|
|
4172
|
+
"vest",
|
|
4173
|
+
"victory-finger-01",
|
|
4174
|
+
"victory-finger-02",
|
|
4175
|
+
"victory-finger-03",
|
|
4176
|
+
"video-01",
|
|
4177
|
+
"video-02",
|
|
4178
|
+
"video-console",
|
|
4179
|
+
"video-off",
|
|
4180
|
+
"video-replay",
|
|
4181
|
+
"view",
|
|
4182
|
+
"view-off",
|
|
4183
|
+
"view-off-slash",
|
|
4184
|
+
"vimeo",
|
|
4185
|
+
"vine",
|
|
4186
|
+
"vine-square",
|
|
4187
|
+
"vintage-clock",
|
|
4188
|
+
"virtual-reality-vr-01",
|
|
4189
|
+
"virtual-reality-vr-02",
|
|
4190
|
+
"vision",
|
|
4191
|
+
"vk",
|
|
4192
|
+
"vk-square",
|
|
4193
|
+
"voice",
|
|
4194
|
+
"voice-id",
|
|
4195
|
+
"volleyball",
|
|
4196
|
+
"volume-high",
|
|
4197
|
+
"volume-low",
|
|
4198
|
+
"volume-minus",
|
|
4199
|
+
"volume-mute-01",
|
|
4200
|
+
"volume-mute-02",
|
|
4201
|
+
"volume-off",
|
|
4202
|
+
"volume-up",
|
|
4203
|
+
"vomiting",
|
|
4204
|
+
"voucher",
|
|
4205
|
+
"vr",
|
|
4206
|
+
"vr-glasses",
|
|
4207
|
+
"vynil-01",
|
|
4208
|
+
"vynil-02",
|
|
4209
|
+
"vynil-03",
|
|
4210
|
+
"waiter",
|
|
4211
|
+
"waiters",
|
|
4212
|
+
"wall-lamp",
|
|
4213
|
+
"wallet-01",
|
|
4214
|
+
"wallet-02",
|
|
4215
|
+
"wallet-03",
|
|
4216
|
+
"wallet-04",
|
|
4217
|
+
"wallet-05",
|
|
4218
|
+
"wallet-add-01",
|
|
4219
|
+
"wallet-add-02",
|
|
4220
|
+
"wallet-done-01",
|
|
4221
|
+
"wallet-done-02",
|
|
4222
|
+
"wallet-not-found-01",
|
|
4223
|
+
"wallet-not-found-02",
|
|
4224
|
+
"wallet-remove-01",
|
|
4225
|
+
"wallet-remove-02",
|
|
4226
|
+
"wanted",
|
|
4227
|
+
"wardrobe-01",
|
|
4228
|
+
"wardrobe-02",
|
|
4229
|
+
"wardrobe-03",
|
|
4230
|
+
"wardrobe-04",
|
|
4231
|
+
"warehouse",
|
|
4232
|
+
"washington-monument",
|
|
4233
|
+
"waste",
|
|
4234
|
+
"waste-restore",
|
|
4235
|
+
"watch-01",
|
|
4236
|
+
"watch-02",
|
|
4237
|
+
"water-energy",
|
|
4238
|
+
"water-polo",
|
|
4239
|
+
"water-pump",
|
|
4240
|
+
"waterfall-down-01",
|
|
4241
|
+
"waterfall-down-03",
|
|
4242
|
+
"waterfall-up-01",
|
|
4243
|
+
"waterfall-up-02",
|
|
4244
|
+
"watermelon",
|
|
4245
|
+
"wattpad",
|
|
4246
|
+
"wattpad-square",
|
|
4247
|
+
"wav-01",
|
|
4248
|
+
"wav-02",
|
|
4249
|
+
"waving-hand-01",
|
|
4250
|
+
"waving-hand-02",
|
|
4251
|
+
"waze",
|
|
4252
|
+
"web-design-01",
|
|
4253
|
+
"web-design-02",
|
|
4254
|
+
"web-programming",
|
|
4255
|
+
"web-protection",
|
|
4256
|
+
"web-security",
|
|
4257
|
+
"web-validation",
|
|
4258
|
+
"webflow",
|
|
4259
|
+
"webhook",
|
|
4260
|
+
"wechat",
|
|
4261
|
+
"wedding",
|
|
4262
|
+
"weight-scale",
|
|
4263
|
+
"weight-scale-01",
|
|
4264
|
+
"wellness",
|
|
4265
|
+
"whatsapp",
|
|
4266
|
+
"whatsapp-business",
|
|
4267
|
+
"wheelchair",
|
|
4268
|
+
"whisk",
|
|
4269
|
+
"whistle",
|
|
4270
|
+
"whiteboard",
|
|
4271
|
+
"wifi-01",
|
|
4272
|
+
"wifi-02",
|
|
4273
|
+
"wifi-circle",
|
|
4274
|
+
"wifi-connected-01",
|
|
4275
|
+
"wifi-connected-02",
|
|
4276
|
+
"wifi-connected-03",
|
|
4277
|
+
"wifi-disconnected-01",
|
|
4278
|
+
"wifi-disconnected-02",
|
|
4279
|
+
"wifi-disconnected-03",
|
|
4280
|
+
"wifi-disconnected-04",
|
|
4281
|
+
"wifi-error-01",
|
|
4282
|
+
"wifi-error-02",
|
|
4283
|
+
"wifi-full-signal",
|
|
4284
|
+
"wifi-location",
|
|
4285
|
+
"wifi-lock",
|
|
4286
|
+
"wifi-low-signal",
|
|
4287
|
+
"wifi-medium-signal",
|
|
4288
|
+
"wifi-no-signal",
|
|
4289
|
+
"wifi-off-01",
|
|
4290
|
+
"wifi-off-02",
|
|
4291
|
+
"wifi-square",
|
|
4292
|
+
"wifi-unlock",
|
|
4293
|
+
"wikipedia",
|
|
4294
|
+
"wind-power",
|
|
4295
|
+
"wind-power-01",
|
|
4296
|
+
"wind-power-02",
|
|
4297
|
+
"wind-power-03",
|
|
4298
|
+
"wind-surf",
|
|
4299
|
+
"wind-turbine",
|
|
4300
|
+
"windows-new",
|
|
4301
|
+
"windows-old",
|
|
4302
|
+
"wink",
|
|
4303
|
+
"winking",
|
|
4304
|
+
"wireless",
|
|
4305
|
+
"wireless-cloud-access",
|
|
4306
|
+
"wise",
|
|
4307
|
+
"woman",
|
|
4308
|
+
"wordpress",
|
|
4309
|
+
"work",
|
|
4310
|
+
"work-alert",
|
|
4311
|
+
"work-history",
|
|
4312
|
+
"work-update",
|
|
4313
|
+
"workflow-circle-01",
|
|
4314
|
+
"workflow-circle-02",
|
|
4315
|
+
"workflow-circle-03",
|
|
4316
|
+
"workflow-circle-04",
|
|
4317
|
+
"workflow-circle-05",
|
|
4318
|
+
"workflow-circle-06",
|
|
4319
|
+
"workflow-square-01",
|
|
4320
|
+
"workflow-square-02",
|
|
4321
|
+
"workflow-square-03",
|
|
4322
|
+
"workflow-square-04",
|
|
4323
|
+
"workflow-square-05",
|
|
4324
|
+
"workflow-square-06",
|
|
4325
|
+
"workflow-square-07",
|
|
4326
|
+
"workflow-square-08",
|
|
4327
|
+
"workflow-square-09",
|
|
4328
|
+
"workflow-square-10",
|
|
4329
|
+
"workout-battle-ropes",
|
|
4330
|
+
"workout-gymnastics",
|
|
4331
|
+
"workout-kicking",
|
|
4332
|
+
"workout-run",
|
|
4333
|
+
"workout-sport",
|
|
4334
|
+
"workout-squats",
|
|
4335
|
+
"workout-stretching",
|
|
4336
|
+
"workout-warm-up",
|
|
4337
|
+
"worry",
|
|
4338
|
+
"wps-office",
|
|
4339
|
+
"wps-office-rectangle",
|
|
4340
|
+
"wrench-01",
|
|
4341
|
+
"wrench-02",
|
|
4342
|
+
"wudu",
|
|
4343
|
+
"x-ray",
|
|
4344
|
+
"x-variable",
|
|
4345
|
+
"x-variable-circle",
|
|
4346
|
+
"x-variable-square",
|
|
4347
|
+
"xing",
|
|
4348
|
+
"xls-01",
|
|
4349
|
+
"xls-02",
|
|
4350
|
+
"xml-01",
|
|
4351
|
+
"xml-02",
|
|
4352
|
+
"xsl-01",
|
|
4353
|
+
"xsl-02",
|
|
4354
|
+
"yelp",
|
|
4355
|
+
"yen",
|
|
4356
|
+
"yen-circle",
|
|
4357
|
+
"yen-receive",
|
|
4358
|
+
"yen-send",
|
|
4359
|
+
"yen-square",
|
|
4360
|
+
"yoga-01",
|
|
4361
|
+
"yoga-02",
|
|
4362
|
+
"yoga-03",
|
|
4363
|
+
"yoga-ball",
|
|
4364
|
+
"yoga-mat",
|
|
4365
|
+
"yogurt",
|
|
4366
|
+
"youtube",
|
|
4367
|
+
"yurt",
|
|
4368
|
+
"zakat",
|
|
4369
|
+
"zakat-bag-closed",
|
|
4370
|
+
"zakat-bag-open",
|
|
4371
|
+
"zap",
|
|
4372
|
+
"zeppelin",
|
|
4373
|
+
"zip-01",
|
|
4374
|
+
"zip-02",
|
|
4375
|
+
"zoom",
|
|
4376
|
+
"zoom-circle",
|
|
4377
|
+
"zoom-in-area",
|
|
4378
|
+
"zoom-out-area",
|
|
4379
|
+
"zoom-square",
|
|
4380
|
+
"zsh",
|
|
4381
|
+
"zubairi-footwear",
|
|
4382
|
+
"zzz",
|
|
4383
|
+
] as const;
|
|
4384
|
+
|
|
4385
|
+
export type DgaIconName = (typeof DGA_ICON_NAMES)[number];
|
|
4386
|
+
|
|
4387
|
+
export const DGA_ICON_VARIANTS = ["solid", "stroke"] as const;
|
|
4388
|
+
export type DgaIconVariant = (typeof DGA_ICON_VARIANTS)[number];
|