@orfium/ictinus 5.43.6 → 5.43.8
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/dist/components/Avatar/UserAvatar.js +5 -6
- package/dist/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.js +7 -8
- package/dist/components/Button/Button.js +21 -22
- package/dist/components/ButtonBase/constants.js +1 -7
- package/dist/components/Controls/CheckBox/CheckBox.js +28 -27
- package/dist/components/IconButton/IconButton.js +11 -10
- package/dist/index.js +233 -239
- package/dist/package.json.d.ts +8 -5
- package/dist/package.json.js +1 -1
- package/dist/src/actions/ActionsContent.d.ts +281 -281
- package/dist/src/actions/ActionsRoot.d.ts +281 -281
- package/dist/src/components/Avatar/UserAvatar.d.ts +1 -2
- package/dist/src/components/IconButton/IconButton.d.ts +5 -6
- package/dist/src/data-table/DataTable.d.ts +281 -281
- package/dist/src/data-table/DataTableBody.d.ts +281 -281
- package/dist/src/data-table/DataTableHeader.d.ts +281 -281
- package/dist/src/data-table/DataTableRow.d.ts +563 -563
- package/dist/src/index.d.ts +0 -2
- package/dist/src/skeleton/Skeleton.d.ts +281 -281
- package/dist/src/sprinkles/properties.css.d.ts +369 -369
- package/dist/src/sprinkles/sprinkles.d.ts +625 -625
- package/dist/src/vanilla/Box/Box.d.ts +281 -281
- package/dist/src/vanilla/Box/extractBoxProps.d.ts +2 -2
- package/dist/src/vanilla/Table/Table.d.ts +281 -281
- package/dist/src/vanilla/Table/TableBody.d.ts +281 -281
- package/dist/src/vanilla/Table/TableCell.d.ts +282 -282
- package/dist/src/vanilla/Table/TableFooter.d.ts +281 -281
- package/dist/src/vanilla/Table/TableHeader.d.ts +281 -281
- package/dist/src/vanilla/Table/TableHeaderCell.d.ts +282 -282
- package/dist/src/vanilla/Table/TableRow.d.ts +281 -281
- package/dist/src/vanilla/Text/Text.d.ts +281 -281
- package/dist/src/vanilla/index.d.ts +2 -0
- package/dist/vanilla/Dropdown/Dropdown-css.js +3 -4
- package/dist/vanilla/Menu/Menu-css.js +5 -6
- package/dist/vanilla/Popover/Popover-css.js +4 -5
- package/dist/vanilla/Table/Table-css.js +5 -6
- package/dist/vanilla/Table/TableBody-css.js +3 -3
- package/dist/vanilla/Table/TableCell-css.js +5 -6
- package/dist/vanilla/Table/TableFooter-css.js +3 -3
- package/dist/vanilla/Table/TableHeader-css.js +3 -3
- package/dist/vanilla/Table/TableHeaderCell-css.js +7 -8
- package/dist/vanilla/Table/TableRow-css.js +4 -5
- package/dist/vanilla/Text/Text-css.js +3 -3
- package/dist/vanilla/ThemeProvider/ThemeProvider.js +2 -0
- package/dist/vanilla/Tooltip/Tooltip-css.js +7 -8
- package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-CY_zQdRt.css +22 -0
- package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-Sfxv3QTp.css +4 -0
- package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-C5CLCAO-.css +70 -0
- package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-CJ7qRgCp.css +36 -0
- package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-DOIEZBDT.css +1 -0
- package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-DdlGEtT6.css +6 -0
- package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-DunamBlA.css +10127 -0
- package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-CCuBBcIY.css +15 -0
- package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-D_hJVnXG.css +10 -0
- package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-CtMyXgp5.css +21 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-NM1bg9yo.css +6 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-C9lOnXw3.css +28 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-DdPLAnn2.css +11 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-BFZehdGr.css +8 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-BKqTSx1s.css +25 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-ConQ39lM.css +18 -0
- package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-yQfwZHu2.css +38 -0
- package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-CgAdIrpn.css +39 -0
- package/dist/vanilla/index.d.ts +9735 -2
- package/dist/vanilla/index.js +3 -0
- package/dist/vanilla/package.json.js +1 -1
- package/dist/vanilla/src/actions/ActionsContent-css.js +5 -6
- package/dist/vanilla/src/actions/ActionsRoot-css.js +3 -3
- package/dist/vanilla/src/components/Avatar/UserAvatar.js +4 -6
- package/dist/vanilla/src/components/Button/Button.js +5 -8
- package/dist/vanilla/src/components/ButtonBase/constants.js +1 -7
- package/dist/vanilla/src/components/Controls/CheckBox/CheckBox.js +7 -6
- package/dist/vanilla/src/components/Icon/Icon.js +44 -0
- package/dist/vanilla/src/components/Icon/Icon.style.js +42 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/forward.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/next.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/pause.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/play.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/previous.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/resume.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/rewind.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/stop.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/check.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/close.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/columnChooser.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/convert.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/copy.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/delete.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/download.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/edit.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/login.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/logout.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/mediaFile.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/minus.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/plus.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/redo.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/refresh.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/restore.svg.js +19 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/review.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/search.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/share.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sort.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sortAscending.svg.js +24 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sortDescending.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/undo.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/update.svg.js +19 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/upload.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/analytics.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dashboard.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dataset.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/earnings.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/income.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/insight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/invoice.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/calendar.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/chat.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/delivery.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/details.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/externalLink.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/file.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/filter.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/issue.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/keyword.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/generic/language.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/legal.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/location.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/mail.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/manual.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/moreOptions.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/notification.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/policy.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/report.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/search filled.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/generic/settings.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/tag.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/iconSelector.js +301 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/album.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/artist.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/asset.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/broadcast.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/catalog.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/channel.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/cinema.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/claim.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/composition.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/concert.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/conflict.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/cueSheet.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/digital.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/distribution.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/license.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/playcount.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/publicPerformance.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/publisher.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/radio.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/recordLabel.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/recording.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/television.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/usage.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/work.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/writer.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/youTube.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/apps.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowLeft.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowRight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronLeft.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronRight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/menu.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/pageFirst.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/pageLast.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleDown.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleLeft.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleRight.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleUp.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/audio.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/audioOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmark.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmarkOff.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/eye.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/eyeOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/favorite.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/favoriteOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/flag.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/flagOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/freeze.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/image.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/imageOff.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/link.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/lock.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/pair.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unfreeze.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unlink.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unlock.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unpair.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/video.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/videoOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/account.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/entities.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/error.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/help.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/informational.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/organization.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/pending.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/role.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/statusIndicator.svg.js +20 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/success.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/unverified.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/user.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/users.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/verified.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/warning.svg.js +18 -0
- package/dist/vanilla/src/components/IconButton/IconButton.js +5 -4
- package/dist/vanilla/src/data-table/DataTableBody-css.js +11 -12
- package/dist/vanilla/src/data-table/DataTableBody.js +2 -2
- package/dist/vanilla/src/data-table/DataTableCheckbox.js +1 -1
- package/dist/vanilla/src/data-table/DataTableHeaderCell-css.js +9 -10
- package/dist/vanilla/src/data-table/DataTableHeaderCell.js +1 -1
- package/dist/vanilla/src/data-table/DataTableRow.js +6 -1
- package/dist/vanilla/src/layers/layers-css.js +9 -0
- package/dist/vanilla/src/skeleton/Skeleton-css.js +4 -5
- package/dist/vanilla/src/sprinkles/properties-css.js +5 -6
- package/dist/vanilla/src/sprinkles/sprinkles.js +3 -3
- package/package.json +8 -5
- package/.turbo/turbo-build.log +0 -660
- package/CHANGELOG.md +0 -163
- package/codemods/avatarCodemod.ts +0 -53
- package/codemods/buttonCodemod.ts +0 -52
- package/codemods/checkboxCodemod.ts +0 -42
- package/codemods/chipCodemode.ts +0 -45
- package/codemods/drawerCodemod.ts +0 -73
- package/codemods/filterCodemod.ts +0 -29
- package/codemods/globalsCodemod.ts +0 -145
- package/codemods/iconButtonCodemod.ts +0 -54
- package/codemods/iconCodemod.ts +0 -24
- package/codemods/loaderCodemod.ts +0 -47
- package/codemods/menuCodemod.ts +0 -43
- package/codemods/notificationsCodemod.ts +0 -21
- package/codemods/paginationCodemod.ts +0 -36
- package/codemods/radioCodemod.ts +0 -27
- package/codemods/radioGroupCodemod.ts +0 -23
- package/codemods/searchCodemod.ts +0 -38
- package/codemods/selectCodemod.ts +0 -88
- package/codemods/switchCodemod.ts +0 -40
- package/codemods/tableCodemod.ts +0 -24
- package/codemods/textareaCodemod.ts +0 -58
- package/codemods/textfieldCodemod.ts +0 -55
- package/codemods/tooltipCodemod.ts +0 -35
- package/codemods/unchangedIconsCodemod.ts +0 -62
- package/dist/icon/Icon.js +0 -309
- package/dist/icons/AccountIcon.js +0 -8
- package/dist/icons/AlbumIcon.js +0 -8
- package/dist/icons/AnalyticsIcon.js +0 -8
- package/dist/icons/AppsIcon.js +0 -8
- package/dist/icons/ArrowDownIcon.js +0 -8
- package/dist/icons/ArrowLeftIcon.js +0 -8
- package/dist/icons/ArrowRightIcon.js +0 -8
- package/dist/icons/ArrowUpIcon.js +0 -8
- package/dist/icons/ArtistIcon.js +0 -8
- package/dist/icons/AssetIcon.js +0 -8
- package/dist/icons/AudioIcon.js +0 -8
- package/dist/icons/AudioOffIcon.js +0 -13
- package/dist/icons/BookmarkIcon.js +0 -8
- package/dist/icons/BookmarkOffIcon.js +0 -8
- package/dist/icons/BroadcastIcon.js +0 -8
- package/dist/icons/CalendarIcon.js +0 -8
- package/dist/icons/CatalogIcon.js +0 -8
- package/dist/icons/ChannelIcon.js +0 -12
- package/dist/icons/ChatIcon.js +0 -8
- package/dist/icons/CheckIcon.js +0 -8
- package/dist/icons/ChevronDownIcon.js +0 -8
- package/dist/icons/ChevronLeftIcon.js +0 -8
- package/dist/icons/ChevronRightIcon.js +0 -8
- package/dist/icons/ChevronUpIcon.js +0 -8
- package/dist/icons/CinemaIcon.js +0 -8
- package/dist/icons/ClaimIcon.js +0 -8
- package/dist/icons/CloseIcon.js +0 -8
- package/dist/icons/ColumnChooserIcon.js +0 -8
- package/dist/icons/CompositionIcon.js +0 -8
- package/dist/icons/ConcertIcon.js +0 -8
- package/dist/icons/ConflictIcon.js +0 -8
- package/dist/icons/ConvertIcon.js +0 -8
- package/dist/icons/CopyIcon.js +0 -8
- package/dist/icons/CueSheetIcon.js +0 -8
- package/dist/icons/DashboardIcon.js +0 -8
- package/dist/icons/DatasetIcon.js +0 -8
- package/dist/icons/DeleteIcon.js +0 -8
- package/dist/icons/DeliveryIcon.js +0 -8
- package/dist/icons/DetailsIcon.js +0 -8
- package/dist/icons/DigitalIcon.js +0 -8
- package/dist/icons/DistributionIcon.js +0 -8
- package/dist/icons/DownloadIcon.js +0 -8
- package/dist/icons/EarningsIcon.js +0 -8
- package/dist/icons/EditIcon.js +0 -8
- package/dist/icons/EntitiesIcon.js +0 -8
- package/dist/icons/ErrorIcon.js +0 -8
- package/dist/icons/ExternalLinkIcon.js +0 -8
- package/dist/icons/EyeIcon.js +0 -8
- package/dist/icons/EyeOffIcon.js +0 -8
- package/dist/icons/FavoriteIcon.js +0 -8
- package/dist/icons/FavoriteOffIcon.js +0 -8
- package/dist/icons/FileIcon.js +0 -8
- package/dist/icons/FilterIcon.js +0 -8
- package/dist/icons/FlagIcon.js +0 -8
- package/dist/icons/FlagOffIcon.js +0 -8
- package/dist/icons/ForwardIcon.js +0 -8
- package/dist/icons/FreezeIcon.js +0 -8
- package/dist/icons/HelpIcon.js +0 -8
- package/dist/icons/ImageIcon.js +0 -8
- package/dist/icons/ImageOffIcon.js +0 -11
- package/dist/icons/IncomeIcon.js +0 -8
- package/dist/icons/InformationalIcon.js +0 -8
- package/dist/icons/InsightIcon.js +0 -8
- package/dist/icons/InvoiceIcon.js +0 -8
- package/dist/icons/IssueIcon.js +0 -8
- package/dist/icons/KeywordIcon.js +0 -8
- package/dist/icons/LanguageIcon.js +0 -8
- package/dist/icons/LegalIcon.js +0 -8
- package/dist/icons/LicenseIcon.js +0 -8
- package/dist/icons/LinkIcon.js +0 -8
- package/dist/icons/LocationIcon.js +0 -8
- package/dist/icons/LockIcon.js +0 -8
- package/dist/icons/LoginIcon.js +0 -8
- package/dist/icons/LogoutIcon.js +0 -8
- package/dist/icons/MailIcon.js +0 -8
- package/dist/icons/ManualIcon.js +0 -8
- package/dist/icons/MediaFileIcon.js +0 -8
- package/dist/icons/MenuIcon.js +0 -8
- package/dist/icons/MinusIcon.js +0 -8
- package/dist/icons/MoreOptionsIcon.js +0 -12
- package/dist/icons/NextIcon.js +0 -8
- package/dist/icons/NotificationIcon.js +0 -8
- package/dist/icons/OrganizationIcon.js +0 -8
- package/dist/icons/PageFirstIcon.js +0 -8
- package/dist/icons/PageLastIcon.js +0 -8
- package/dist/icons/PairIcon.js +0 -8
- package/dist/icons/PauseIcon.js +0 -8
- package/dist/icons/PendingIcon.js +0 -8
- package/dist/icons/PlayIcon.js +0 -8
- package/dist/icons/PlaycountIcon.js +0 -8
- package/dist/icons/PlusIcon.js +0 -8
- package/dist/icons/PolicyIcon.js +0 -8
- package/dist/icons/PreviousIcon.js +0 -8
- package/dist/icons/PublicPerformanceIcon.js +0 -8
- package/dist/icons/PublisherIcon.js +0 -11
- package/dist/icons/RadioIcon.js +0 -8
- package/dist/icons/RecordLabelIcon.js +0 -8
- package/dist/icons/RecordingIcon.js +0 -8
- package/dist/icons/RedoIcon.js +0 -8
- package/dist/icons/RefreshIcon.js +0 -8
- package/dist/icons/ReportIcon.js +0 -8
- package/dist/icons/RestoreIcon.js +0 -11
- package/dist/icons/ResumeIcon.js +0 -11
- package/dist/icons/ReviewIcon.js +0 -8
- package/dist/icons/RewindIcon.js +0 -8
- package/dist/icons/RoleIcon.js +0 -8
- package/dist/icons/SearchFilledIcon.js +0 -8
- package/dist/icons/SearchIcon.js +0 -8
- package/dist/icons/SettingsIcon.js +0 -8
- package/dist/icons/ShareIcon.js +0 -8
- package/dist/icons/SortAscendingIcon.js +0 -12
- package/dist/icons/SortDescendingIcon.js +0 -12
- package/dist/icons/SortIcon.js +0 -11
- package/dist/icons/StatusIndicatorIcon.js +0 -8
- package/dist/icons/StopIcon.js +0 -8
- package/dist/icons/SuccessIcon.js +0 -8
- package/dist/icons/TagIcon.js +0 -8
- package/dist/icons/TelevisionIcon.js +0 -8
- package/dist/icons/ThumbsDownIcon.js +0 -8
- package/dist/icons/ThumbsUpIcon.js +0 -8
- package/dist/icons/TrendingDownIcon.js +0 -8
- package/dist/icons/TrendingUpIcon.js +0 -8
- package/dist/icons/TriangleDownIcon.js +0 -8
- package/dist/icons/TriangleLeftIcon.js +0 -8
- package/dist/icons/TriangleRightIcon.js +0 -8
- package/dist/icons/TriangleUpIcon.js +0 -8
- package/dist/icons/UndoIcon.js +0 -8
- package/dist/icons/UnfreezeIcon.js +0 -11
- package/dist/icons/UnlinkIcon.js +0 -8
- package/dist/icons/UnlockIcon.js +0 -8
- package/dist/icons/UnpairIcon.js +0 -8
- package/dist/icons/UnverifiedIcon.js +0 -11
- package/dist/icons/UpdateIcon.js +0 -11
- package/dist/icons/UploadIcon.js +0 -8
- package/dist/icons/UsageIcon.js +0 -8
- package/dist/icons/UserIcon.js +0 -8
- package/dist/icons/UsersIcon.js +0 -13
- package/dist/icons/VerifiedIcon.js +0 -8
- package/dist/icons/VideoIcon.js +0 -8
- package/dist/icons/VideoOffIcon.js +0 -11
- package/dist/icons/WarningIcon.js +0 -8
- package/dist/icons/WorkIcon.js +0 -8
- package/dist/icons/WriterIcon.js +0 -12
- package/dist/icons/YouTubeIcon.js +0 -8
- package/dist/layers/layers.css.js +0 -9
- package/dist/layers/layers.css.ts.vanilla.css +0 -1
- package/dist/sprinkles/createSprinklesMerge.js +0 -27
- package/dist/sprinkles/properties.css.js +0 -9
- package/dist/sprinkles/properties.css.ts.vanilla.css +0 -1
- package/dist/sprinkles/sprinkles.js +0 -8
- package/dist/sprinkles/sprinklesMerge.js +0 -6
- package/dist/utils/cn.js +0 -7
- package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-BVxWvGVF.css +0 -22
- package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-B5JvX1-v.css +0 -4
- package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-B8JRxzQ8.css +0 -70
- package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-B2HJ86a7.css +0 -36
- package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css +0 -1
- package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-CNzX69JK.css +0 -6
- package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css +0 -10127
- package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-C4DzWzim.css +0 -15
- package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-CVYpB1bf.css +0 -10
- package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-D8zK7RSt.css +0 -21
- package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-BWkZ_Hqu.css +0 -6
- package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-BmF3z2D_.css +0 -28
- package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-CpsnDIuH.css +0 -11
- package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-2yw_MsU1.css +0 -8
- package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-CZtubUTB.css +0 -25
- package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-B1NNK8v8.css +0 -18
- package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-cv9I-28W.css +0 -38
- package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-nRPDcOsw.css +0 -39
- package/dist/vanilla-extract/global.css.ts.vanilla.css +0 -1
- package/eslint.config.mjs +0 -176
- package/postcss.config.mjs +0 -13
- package/rollup.config.mjs +0 -66
- package/src/actions/ActionsContent.css.ts +0 -52
- package/src/actions/ActionsContent.tsx +0 -19
- package/src/actions/ActionsRoot.css.ts +0 -8
- package/src/actions/ActionsRoot.tsx +0 -19
- package/src/actions/index.ts +0 -2
- package/src/components/Avatar/Avatar.style.ts +0 -124
- package/src/components/Avatar/Avatar.tsx +0 -38
- package/src/components/Avatar/Avatar.types.ts +0 -24
- package/src/components/Avatar/AvatarStack/AvatarStack.style.ts +0 -25
- package/src/components/Avatar/AvatarStack/AvatarStack.tsx +0 -49
- package/src/components/Avatar/AvatarStack/AvatarStack.types.ts +0 -12
- package/src/components/Avatar/AvatarStack/index.ts +0 -2
- package/src/components/Avatar/AvatarStack/utils.ts +0 -10
- package/src/components/Avatar/UserAvatar.tsx +0 -18
- package/src/components/Avatar/index.ts +0 -3
- package/src/components/Box/Box.style.ts +0 -3
- package/src/components/Box/Box.test.ts +0 -98
- package/src/components/Box/Box.tsx +0 -57
- package/src/components/Box/Box.types.ts +0 -336
- package/src/components/Box/Box.utilities.ts +0 -171
- package/src/components/Box/index.ts +0 -3
- package/src/components/Breadcrumb/BackToItem/BackToItem.tsx +0 -25
- package/src/components/Breadcrumb/BackToItem/index.ts +0 -1
- package/src/components/Breadcrumb/Breadcrumb.style.ts +0 -16
- package/src/components/Breadcrumb/Breadcrumb.tsx +0 -79
- package/src/components/Breadcrumb/Breadcrumb.types.ts +0 -16
- package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.style.ts +0 -25
- package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.tsx +0 -35
- package/src/components/Breadcrumb/BreadcrumbItem/index.ts +0 -1
- package/src/components/Breadcrumb/index.ts +0 -3
- package/src/components/Broadcast/Broadcast.style.ts +0 -132
- package/src/components/Broadcast/Broadcast.tsx +0 -89
- package/src/components/Broadcast/Broadcast.types.ts +0 -43
- package/src/components/Broadcast/index.ts +0 -1
- package/src/components/Broadcast/tests/Broadcast.test.tsx +0 -71
- package/src/components/Button/Button.tsx +0 -57
- package/src/components/Button/Button.types.ts +0 -5
- package/src/components/Button/ButtonLoader/ButtonLoader.style.ts +0 -49
- package/src/components/Button/ButtonLoader/ButtonLoader.tsx +0 -20
- package/src/components/Button/ButtonLoader/index.ts +0 -2
- package/src/components/Button/index.ts +0 -2
- package/src/components/ButtonBase/ButtonBase.style.ts +0 -94
- package/src/components/ButtonBase/ButtonBase.tsx +0 -102
- package/src/components/ButtonBase/constants.ts +0 -43
- package/src/components/ButtonBase/index.ts +0 -2
- package/src/components/Card/Card.style.ts +0 -17
- package/src/components/Card/Card.tsx +0 -25
- package/src/components/Card/index.ts +0 -2
- package/src/components/Chart/BarChart/BarChart.tsx +0 -154
- package/src/components/Chart/BarChart/components/CustomLabel/CustomLabel.tsx +0 -35
- package/src/components/Chart/BarChart/components/CustomLabel/index.ts +0 -1
- package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.style.ts +0 -36
- package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.tsx +0 -47
- package/src/components/Chart/BarChart/components/CustomTooltip/index.ts +0 -1
- package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.style.ts +0 -45
- package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.tsx +0 -31
- package/src/components/Chart/BarChart/components/CustomTooltipContent/index.ts +0 -1
- package/src/components/Chart/BarChart/index.ts +0 -1
- package/src/components/Chart/BarChart/utils.ts +0 -69
- package/src/components/Chart/DonutChart/DonutChart.tsx +0 -50
- package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.style.ts +0 -16
- package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.tsx +0 -45
- package/src/components/Chart/DonutChart/components/CustomLabel/index.ts +0 -1
- package/src/components/Chart/DonutChart/index.ts +0 -1
- package/src/components/Chart/LineChart/LineChart.test.ts +0 -33
- package/src/components/Chart/LineChart/LineChart.tsx +0 -103
- package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.style.ts +0 -40
- package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.tsx +0 -32
- package/src/components/Chart/LineChart/components/CustomTooltip/index.ts +0 -1
- package/src/components/Chart/LineChart/components/GradientLine/GradientLine.tsx +0 -17
- package/src/components/Chart/LineChart/components/GradientLine/index.ts +0 -1
- package/src/components/Chart/LineChart/index.ts +0 -1
- package/src/components/Chart/LineChart/mockedData.ts +0 -43
- package/src/components/Chart/LineChart/story.utils.ts +0 -13
- package/src/components/Chart/LineChart/utils.ts +0 -33
- package/src/components/Chart/Wrapper.tsx +0 -31
- package/src/components/Controls/CheckBox/CheckBox.style.ts +0 -84
- package/src/components/Controls/CheckBox/CheckBox.test.tsx +0 -86
- package/src/components/Controls/CheckBox/CheckBox.tsx +0 -98
- package/src/components/Controls/CheckBox/__snapshots__/CheckBox.stories.storyshot +0 -2410
- package/src/components/Controls/CheckBox/__snapshots__/CheckBox.test.tsx.snap +0 -145
- package/src/components/Controls/CheckBox/index.ts +0 -2
- package/src/components/Controls/ControlLabel/ControlHelpText.tsx +0 -16
- package/src/components/Controls/ControlLabel/ControlLabel.style.ts +0 -39
- package/src/components/Controls/ControlLabel/ControlLabelText.tsx +0 -18
- package/src/components/Controls/ControlLabel/index.ts +0 -2
- package/src/components/Controls/Controls.types.ts +0 -12
- package/src/components/Controls/Radio/Radio.style.ts +0 -96
- package/src/components/Controls/Radio/Radio.test.tsx +0 -62
- package/src/components/Controls/Radio/Radio.tsx +0 -73
- package/src/components/Controls/Radio/__snapshots__/Radio.stories.storyshot +0 -2659
- package/src/components/Controls/Radio/__snapshots__/Radio.test.tsx.snap +0 -122
- package/src/components/Controls/Radio/components/RadioGroup/RadioGroup.tsx +0 -42
- package/src/components/Controls/Radio/components/RadioGroup/RadioGroupContext.ts +0 -6
- package/src/components/Controls/Radio/components/RadioGroup/index.ts +0 -2
- package/src/components/Controls/Radio/index.ts +0 -2
- package/src/components/Controls/Switch/Switch.style.ts +0 -91
- package/src/components/Controls/Switch/Switch.test.tsx +0 -53
- package/src/components/Controls/Switch/Switch.tsx +0 -84
- package/src/components/Controls/Switch/__snapshots__/Switch.test.tsx.snap +0 -141
- package/src/components/Controls/Switch/index.ts +0 -2
- package/src/components/Controls/index.ts +0 -5
- package/src/components/DatePicker/DatePickInput/DatePickInput.style.ts +0 -47
- package/src/components/DatePicker/DatePickInput/DatePickInput.tsx +0 -165
- package/src/components/DatePicker/DatePickInput/index.ts +0 -2
- package/src/components/DatePicker/DatePicker.style.ts +0 -15
- package/src/components/DatePicker/DatePicker.test.tsx +0 -346
- package/src/components/DatePicker/DatePicker.tsx +0 -231
- package/src/components/DatePicker/DatePicker.types.ts +0 -57
- package/src/components/DatePicker/Day/Day.style.ts +0 -111
- package/src/components/DatePicker/Day/Day.test.tsx +0 -97
- package/src/components/DatePicker/Day/Day.tsx +0 -100
- package/src/components/DatePicker/Day/__snapshots__/Day.test.tsx.snap +0 -320
- package/src/components/DatePicker/Day/index.ts +0 -2
- package/src/components/DatePicker/Month/Month.style.ts +0 -32
- package/src/components/DatePicker/Month/Month.test.tsx +0 -96
- package/src/components/DatePicker/Month/Month.tsx +0 -154
- package/src/components/DatePicker/Month/Month.utils.ts +0 -107
- package/src/components/DatePicker/Month/__snapshots__/Month.test.tsx.snap +0 -803
- package/src/components/DatePicker/Month/hooks/useMonthKeyboardNavigation.ts +0 -84
- package/src/components/DatePicker/Month/index.ts +0 -2
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.style.ts +0 -71
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.test.tsx +0 -109
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.tsx +0 -118
- package/src/components/DatePicker/OverlayComponent/__snapshots__/OverlayComponent.test.tsx.snap +0 -3183
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.style.ts +0 -55
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.test.tsx +0 -52
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.tsx +0 -154
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/__snapshots__/MonthWrapper.test.tsx.snap +0 -1098
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/index.ts +0 -0
- package/src/components/DatePicker/OverlayComponent/index.ts +0 -2
- package/src/components/DatePicker/OverlayComponent/utils.ts +0 -15
- package/src/components/DatePicker/constants.ts +0 -28
- package/src/components/DatePicker/index.ts +0 -4
- package/src/components/DatePicker/utils.ts +0 -17
- package/src/components/Drawer/Drawer.style.ts +0 -204
- package/src/components/Drawer/Drawer.test.tsx +0 -127
- package/src/components/Drawer/Drawer.tsx +0 -80
- package/src/components/Drawer/Drawer.types.ts +0 -20
- package/src/components/Drawer/DrawerContext.tsx +0 -103
- package/src/components/Drawer/components/DrawerContent/DrawerContent.tsx +0 -26
- package/src/components/Drawer/components/DrawerContent/hooks/useDrawerContentObserver.ts +0 -52
- package/src/components/Drawer/components/DrawerContent/index.ts +0 -1
- package/src/components/Drawer/components/DrawerFooter/DrawerFooter.tsx +0 -20
- package/src/components/Drawer/components/DrawerFooter/index.ts +0 -1
- package/src/components/Drawer/components/DrawerHeader/DrawerHeader.tsx +0 -22
- package/src/components/Drawer/components/DrawerHeader/index.ts +0 -1
- package/src/components/Drawer/components/index.ts +0 -3
- package/src/components/Drawer/index.ts +0 -5
- package/src/components/DropdownButton/DropdownButton.style.ts +0 -90
- package/src/components/DropdownButton/DropdownButton.test.tsx +0 -57
- package/src/components/DropdownButton/DropdownButton.tsx +0 -159
- package/src/components/DropdownButton/index.ts +0 -1
- package/src/components/ExpandCollapse/ExpandCollapse.style.ts +0 -9
- package/src/components/ExpandCollapse/ExpandCollapse.tsx +0 -56
- package/src/components/ExpandCollapse/ExpandCollapse.types.ts +0 -68
- package/src/components/ExpandCollapse/index.ts +0 -3
- package/src/components/ExpandCollapse/useManageContentRef.ts +0 -45
- package/src/components/ExpandCollapse/utils.ts +0 -21
- package/src/components/Filter/Filter.test.tsx +0 -218
- package/src/components/Filter/Filter.tsx +0 -162
- package/src/components/Filter/Filter.types.ts +0 -77
- package/src/components/Filter/StatefulFilter.tsx +0 -37
- package/src/components/Filter/components/FilterButton/FilterButton.style.ts +0 -74
- package/src/components/Filter/components/FilterButton/FilterButton.tsx +0 -101
- package/src/components/Filter/components/FilterButton/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/FilterMenu.style.ts +0 -15
- package/src/components/Filter/components/FilterMenu/FilterMenu.tsx +0 -78
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.style.ts +0 -31
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.tsx +0 -106
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/components/Options/Options.style.ts +0 -40
- package/src/components/Filter/components/FilterMenu/components/Options/Options.tsx +0 -94
- package/src/components/Filter/components/FilterMenu/components/Options/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/index.ts +0 -1
- package/src/components/Filter/constants.ts +0 -39
- package/src/components/Filter/hooks/index.ts +0 -1
- package/src/components/Filter/hooks/useFilterWithSelectionUtils.ts +0 -122
- package/src/components/Filter/index.ts +0 -3
- package/src/components/Icon/Icon.style.ts +0 -52
- package/src/components/Icon/Icon.tsx +0 -68
- package/src/components/Icon/Icon.types.ts +0 -169
- package/src/components/Icon/assets/audioControls/forward.svg +0 -3
- package/src/components/Icon/assets/audioControls/next.svg +0 -3
- package/src/components/Icon/assets/audioControls/pause.svg +0 -3
- package/src/components/Icon/assets/audioControls/play.svg +0 -3
- package/src/components/Icon/assets/audioControls/previous.svg +0 -3
- package/src/components/Icon/assets/audioControls/resume.svg +0 -4
- package/src/components/Icon/assets/audioControls/rewind.svg +0 -3
- package/src/components/Icon/assets/audioControls/stop.svg +0 -3
- package/src/components/Icon/assets/basicActions/check.svg +0 -3
- package/src/components/Icon/assets/basicActions/close.svg +0 -3
- package/src/components/Icon/assets/basicActions/columnChooser.svg +0 -3
- package/src/components/Icon/assets/basicActions/convert.svg +0 -3
- package/src/components/Icon/assets/basicActions/copy.svg +0 -3
- package/src/components/Icon/assets/basicActions/delete.svg +0 -3
- package/src/components/Icon/assets/basicActions/download.svg +0 -3
- package/src/components/Icon/assets/basicActions/edit.svg +0 -3
- package/src/components/Icon/assets/basicActions/login.svg +0 -3
- package/src/components/Icon/assets/basicActions/logout.svg +0 -3
- package/src/components/Icon/assets/basicActions/mediaFile.svg +0 -3
- package/src/components/Icon/assets/basicActions/minus.svg +0 -3
- package/src/components/Icon/assets/basicActions/plus.svg +0 -3
- package/src/components/Icon/assets/basicActions/redo.svg +0 -3
- package/src/components/Icon/assets/basicActions/refresh.svg +0 -3
- package/src/components/Icon/assets/basicActions/restore.svg +0 -4
- package/src/components/Icon/assets/basicActions/review.svg +0 -3
- package/src/components/Icon/assets/basicActions/search.svg +0 -3
- package/src/components/Icon/assets/basicActions/share.svg +0 -3
- package/src/components/Icon/assets/basicActions/sort.svg +0 -4
- package/src/components/Icon/assets/basicActions/sortAscending.svg +0 -5
- package/src/components/Icon/assets/basicActions/sortDescending.svg +0 -5
- package/src/components/Icon/assets/basicActions/thumbsDown.svg +0 -3
- package/src/components/Icon/assets/basicActions/thumbsUp.svg +0 -3
- package/src/components/Icon/assets/basicActions/undo.svg +0 -3
- package/src/components/Icon/assets/basicActions/update.svg +0 -4
- package/src/components/Icon/assets/basicActions/upload.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/analytics.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/dashboard.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/dataset.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/earnings.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/income.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/insight.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/invoice.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/trendingDown.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/trendingUp.svg +0 -3
- package/src/components/Icon/assets/generic/calendar.svg +0 -3
- package/src/components/Icon/assets/generic/chat.svg +0 -3
- package/src/components/Icon/assets/generic/delivery.svg +0 -3
- package/src/components/Icon/assets/generic/details.svg +0 -3
- package/src/components/Icon/assets/generic/externalLink.svg +0 -3
- package/src/components/Icon/assets/generic/file.svg +0 -3
- package/src/components/Icon/assets/generic/filter.svg +0 -3
- package/src/components/Icon/assets/generic/issue.svg +0 -3
- package/src/components/Icon/assets/generic/keyword.svg +0 -3
- package/src/components/Icon/assets/generic/language.svg +0 -3
- package/src/components/Icon/assets/generic/legal.svg +0 -3
- package/src/components/Icon/assets/generic/location.svg +0 -3
- package/src/components/Icon/assets/generic/mail.svg +0 -3
- package/src/components/Icon/assets/generic/manual.svg +0 -3
- package/src/components/Icon/assets/generic/moreOptions.svg +0 -5
- package/src/components/Icon/assets/generic/notification.svg +0 -3
- package/src/components/Icon/assets/generic/policy.svg +0 -3
- package/src/components/Icon/assets/generic/report.svg +0 -3
- package/src/components/Icon/assets/generic/search filled.svg +0 -3
- package/src/components/Icon/assets/generic/settings.svg +0 -3
- package/src/components/Icon/assets/generic/tag.svg +0 -3
- package/src/components/Icon/assets/iconSelector.ts +0 -312
- package/src/components/Icon/assets/musicBusiness/album.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/artist.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/asset.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/broadcast.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/catalog.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/channel.svg +0 -5
- package/src/components/Icon/assets/musicBusiness/cinema.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/claim.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/composition.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/concert.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/conflict.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/cueSheet.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/digital.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/distribution.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/license.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/playcount.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/publicPerformance.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/publisher.svg +0 -4
- package/src/components/Icon/assets/musicBusiness/radio.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/recordLabel.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/recording.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/television.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/usage.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/work.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/writer.svg +0 -5
- package/src/components/Icon/assets/musicBusiness/youTube.svg +0 -3
- package/src/components/Icon/assets/navigation/apps.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowDown.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowRight.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowUp.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronDown.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronRight.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronUp.svg +0 -3
- package/src/components/Icon/assets/navigation/menu.svg +0 -3
- package/src/components/Icon/assets/navigation/pageFirst.svg +0 -3
- package/src/components/Icon/assets/navigation/pageLast.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleDown.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleRight.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleUp.svg +0 -3
- package/src/components/Icon/assets/toggledActions/audio.svg +0 -3
- package/src/components/Icon/assets/toggledActions/audioOff.svg +0 -6
- package/src/components/Icon/assets/toggledActions/bookmark.svg +0 -3
- package/src/components/Icon/assets/toggledActions/bookmarkOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/eye.svg +0 -3
- package/src/components/Icon/assets/toggledActions/eyeOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/favorite.svg +0 -3
- package/src/components/Icon/assets/toggledActions/favoriteOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/flag.svg +0 -3
- package/src/components/Icon/assets/toggledActions/flagOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/freeze.svg +0 -3
- package/src/components/Icon/assets/toggledActions/image.svg +0 -3
- package/src/components/Icon/assets/toggledActions/imageOff.svg +0 -4
- package/src/components/Icon/assets/toggledActions/link.svg +0 -3
- package/src/components/Icon/assets/toggledActions/lock.svg +0 -3
- package/src/components/Icon/assets/toggledActions/pair.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unfreeze.svg +0 -4
- package/src/components/Icon/assets/toggledActions/unlink.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unlock.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unpair.svg +0 -3
- package/src/components/Icon/assets/toggledActions/video.svg +0 -3
- package/src/components/Icon/assets/toggledActions/videoOff.svg +0 -4
- package/src/components/Icon/assets/usersAndStatus/account.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/entities.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/error.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/help.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/informational.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/organization.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/pending.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/role.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/statusIndicator.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/success.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/unverified.svg +0 -4
- package/src/components/Icon/assets/usersAndStatus/user.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/users.svg +0 -6
- package/src/components/Icon/assets/usersAndStatus/verified.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/warning.svg +0 -3
- package/src/components/Icon/constants.ts +0 -199
- package/src/components/Icon/index.ts +0 -5
- package/src/components/IconButton/IconButton.tsx +0 -59
- package/src/components/IconButton/index.ts +0 -2
- package/src/components/InlineAlert/InlineAlert.style.ts +0 -117
- package/src/components/InlineAlert/InlineAlert.tsx +0 -89
- package/src/components/InlineAlert/InlineAlert.types.ts +0 -48
- package/src/components/InlineAlert/index.ts +0 -2
- package/src/components/InlineAlert/tests/InlineAlert.test.tsx +0 -71
- package/src/components/Label/Label.style.ts +0 -42
- package/src/components/Label/Label.tsx +0 -36
- package/src/components/Label/index.ts +0 -2
- package/src/components/Link/Link.style.ts +0 -90
- package/src/components/Link/Link.tsx +0 -58
- package/src/components/Link/Link.types.ts +0 -23
- package/src/components/Link/index.ts +0 -1
- package/src/components/List/List.style.ts +0 -50
- package/src/components/List/List.tsx +0 -168
- package/src/components/List/ListItem.tsx +0 -28
- package/src/components/List/ListSection.tsx +0 -22
- package/src/components/List/Window.tsx +0 -86
- package/src/components/List/components/ListItemAction/ListItemAction.style.ts +0 -10
- package/src/components/List/components/ListItemAction/ListItemAction.tsx +0 -12
- package/src/components/List/components/ListItemAction/index.ts +0 -2
- package/src/components/List/components/ListItemText/ListItemText.style.ts +0 -45
- package/src/components/List/components/ListItemText/ListItemText.tsx +0 -19
- package/src/components/List/components/ListItemText/index.ts +0 -2
- package/src/components/List/components/ListItemWrapper/ListItemWrapper.style.ts +0 -65
- package/src/components/List/components/ListItemWrapper/ListItemWrapper.tsx +0 -49
- package/src/components/List/components/ListItemWrapper/README.md +0 -1
- package/src/components/List/components/ListItemWrapper/index.ts +0 -2
- package/src/components/List/index.ts +0 -7
- package/src/components/List/types.ts +0 -13
- package/src/components/List/utils.tsx +0 -13
- package/src/components/Menu/Menu.style.ts +0 -83
- package/src/components/Menu/Menu.tsx +0 -91
- package/src/components/Menu/MenuItemDivider.tsx +0 -31
- package/src/components/Menu/index.ts +0 -4
- package/src/components/Modal/Modal.style.ts +0 -45
- package/src/components/Modal/Modal.test.tsx +0 -93
- package/src/components/Modal/Modal.tsx +0 -87
- package/src/components/Modal/ModalContent/ModalContent.style.ts +0 -47
- package/src/components/Modal/ModalContent/ModalContent.tsx +0 -78
- package/src/components/Modal/ModalContent/index.ts +0 -1
- package/src/components/Modal/index.ts +0 -1
- package/src/components/MultiTextFieldBase/MultiTextFieldBase.style.ts +0 -111
- package/src/components/MultiTextFieldBase/MultiTextFieldBase.tsx +0 -181
- package/src/components/MultiTextFieldBase/hooks.tsx +0 -97
- package/src/components/MultiTextFieldBase/index.ts +0 -1
- package/src/components/Notification/Banner/Banner.tsx +0 -63
- package/src/components/Notification/Banner/index.tsx +0 -2
- package/src/components/Notification/InlineNotification/InlineNotification.tsx +0 -59
- package/src/components/Notification/InlineNotification/index.tsx +0 -2
- package/src/components/Notification/Notification.style.ts +0 -59
- package/src/components/Notification/Notification.test.tsx +0 -293
- package/src/components/Notification/Notification.tsx +0 -16
- package/src/components/Notification/NotificationVisual/NotificationVisual.style.tsx +0 -14
- package/src/components/Notification/NotificationVisual/NotificationVisual.tsx +0 -58
- package/src/components/Notification/NotificationVisual/index.tsx +0 -2
- package/src/components/Notification/NotificationsContainer/NotificationsContainer.style.tsx +0 -54
- package/src/components/Notification/NotificationsContainer/NotificationsContainer.tsx +0 -31
- package/src/components/Notification/NotificationsContainer/index.ts +0 -2
- package/src/components/Notification/Snackbar/Snackbar.style.ts +0 -55
- package/src/components/Notification/Snackbar/Snackbar.tsx +0 -94
- package/src/components/Notification/Snackbar/index.tsx +0 -2
- package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.style.ts +0 -48
- package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.tsx +0 -118
- package/src/components/Notification/subcomponents/CompactNotification/index.tsx +0 -2
- package/src/components/Notification/subcomponents/NotificationActionsArea/NotificationActionsArea.tsx +0 -43
- package/src/components/Notification/subcomponents/NotificationActionsArea/index.ts +0 -1
- package/src/components/NumberField/NumberField.style.ts +0 -10
- package/src/components/NumberField/NumberField.test.tsx +0 -83
- package/src/components/NumberField/NumberField.tsx +0 -135
- package/src/components/NumberField/components/Stepper/Stepper.style.ts +0 -37
- package/src/components/NumberField/components/Stepper/Stepper.tsx +0 -46
- package/src/components/NumberField/components/Stepper/index.ts +0 -1
- package/src/components/NumberField/index.ts +0 -2
- package/src/components/Pagination/Pagination.tsx +0 -86
- package/src/components/Pagination/index.ts +0 -2
- package/src/components/ProgressIndicator/ProgressIndicator.tsx +0 -25
- package/src/components/ProgressIndicator/ProgressIndicator.types.ts +0 -12
- package/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.stories.storyshot +0 -883
- package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.style.ts +0 -85
- package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.tsx +0 -37
- package/src/components/ProgressIndicator/components/ProgressBar/index.ts +0 -1
- package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.style.ts +0 -24
- package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.tsx +0 -60
- package/src/components/ProgressIndicator/components/ProgressCircle/index.ts +0 -1
- package/src/components/ProgressIndicator/index.ts +0 -1
- package/src/components/Search/Search.style.ts +0 -104
- package/src/components/Search/Search.test.tsx +0 -87
- package/src/components/Search/Search.tsx +0 -86
- package/src/components/Search/Search.types.ts +0 -33
- package/src/components/Search/StatefulSearch.tsx +0 -66
- package/src/components/Search/constants.ts +0 -10
- package/src/components/Search/index.ts +0 -3
- package/src/components/Select/Select.style.ts +0 -21
- package/src/components/Select/Select.test.tsx +0 -413
- package/src/components/Select/Select.tsx +0 -406
- package/src/components/Select/StatefulSelect.tsx +0 -36
- package/src/components/Select/components/SelectMenu/SelectMenu.style.tsx +0 -66
- package/src/components/Select/components/SelectMenu/SelectMenu.tsx +0 -119
- package/src/components/Select/components/SelectMenu/index.ts +0 -2
- package/src/components/Select/constants.ts +0 -58
- package/src/components/Select/index.ts +0 -4
- package/src/components/Select/types.ts +0 -74
- package/src/components/Slider/Slider.style.tsx +0 -23
- package/src/components/Slider/Slider.tsx +0 -208
- package/src/components/Slider/components/SliderMark/SliderMark.style.tsx +0 -74
- package/src/components/Slider/components/SliderMark/SliderMark.tsx +0 -54
- package/src/components/Slider/components/SliderMark/index.ts +0 -2
- package/src/components/Slider/components/SliderThumb/SliderThumb.style.tsx +0 -44
- package/src/components/Slider/components/SliderThumb/SliderThumb.tsx +0 -36
- package/src/components/Slider/components/SliderThumb/index.ts +0 -2
- package/src/components/Slider/components/SliderTrack/SliderTrack.style.tsx +0 -14
- package/src/components/Slider/components/SliderTrack/SliderTrack.tsx +0 -58
- package/src/components/Slider/components/SliderTrack/index.ts +0 -2
- package/src/components/Slider/index.ts +0 -2
- package/src/components/TabStepper/TabStepper.tsx +0 -44
- package/src/components/TabStepper/components/TabStep/TabStep.style.ts +0 -29
- package/src/components/TabStepper/components/TabStep/TabStep.tsx +0 -75
- package/src/components/TabStepper/components/TabStep/index.ts +0 -1
- package/src/components/TabStepper/components/TabStepList/TabStepList.style.ts +0 -126
- package/src/components/TabStepper/components/TabStepList/TabStepList.tsx +0 -19
- package/src/components/TabStepper/components/TabStepList/index.ts +0 -1
- package/src/components/TabStepper/components/index.ts +0 -2
- package/src/components/TabStepper/index.ts +0 -3
- package/src/components/TabStepper/types.ts +0 -48
- package/src/components/TabStepper/utils/TabStepperStoryComponents.tsx +0 -8
- package/src/components/Table/Table.style.ts +0 -30
- package/src/components/Table/Table.tsx +0 -167
- package/src/components/Table/components/OptimizedTableRow.tsx +0 -121
- package/src/components/Table/components/TBody/TBody.style.ts +0 -22
- package/src/components/Table/components/TBody/TBody.tsx +0 -25
- package/src/components/Table/components/TBody/index.ts +0 -1
- package/src/components/Table/components/TD/TD.style.ts +0 -64
- package/src/components/Table/components/TD/TD.tsx +0 -64
- package/src/components/Table/components/TD/index.ts +0 -1
- package/src/components/Table/components/TH/TH.style.ts +0 -88
- package/src/components/Table/components/TH/TH.tsx +0 -120
- package/src/components/Table/components/TH/components/SortingButton/SortingButton.style.ts +0 -14
- package/src/components/Table/components/TH/components/SortingButton/SortingButton.tsx +0 -48
- package/src/components/Table/components/TH/components/SortingButton/index.ts +0 -1
- package/src/components/Table/components/TH/components/THOptions/THOptions.style.ts +0 -8
- package/src/components/Table/components/TH/components/THOptions/THOptions.tsx +0 -106
- package/src/components/Table/components/TH/components/THOptions/components/SortingOption.tsx +0 -40
- package/src/components/Table/components/TH/components/THOptions/components/index.ts +0 -1
- package/src/components/Table/components/TH/components/THOptions/index.ts +0 -1
- package/src/components/Table/components/TH/components/index.ts +0 -1
- package/src/components/Table/components/TH/index.ts +0 -1
- package/src/components/Table/components/THead/THead.style.ts +0 -34
- package/src/components/Table/components/THead/THead.tsx +0 -18
- package/src/components/Table/components/THead/index.ts +0 -1
- package/src/components/Table/components/TPagination/TPagination.style.ts +0 -59
- package/src/components/Table/components/TPagination/TPagination.tsx +0 -106
- package/src/components/Table/components/TPagination/index.ts +0 -1
- package/src/components/Table/components/TR/TR.style.ts +0 -33
- package/src/components/Table/components/TR/TR.tsx +0 -39
- package/src/components/Table/components/TR/index.ts +0 -1
- package/src/components/Table/components/TTitle/TTitle.style.ts +0 -33
- package/src/components/Table/components/TTitle/TTitle.tsx +0 -86
- package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.style.ts +0 -8
- package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.tsx +0 -152
- package/src/components/Table/components/TTitle/components/ColumnChooser/index.ts +0 -1
- package/src/components/Table/components/TTitle/components/utils.ts +0 -9
- package/src/components/Table/components/TTitle/index.ts +0 -1
- package/src/components/Table/components/index.ts +0 -7
- package/src/components/Table/constants.tsx +0 -8
- package/src/components/Table/hooks/index.ts +0 -1
- package/src/components/Table/hooks/useTable.tsx +0 -243
- package/src/components/Table/index.ts +0 -7
- package/src/components/Table/types.ts +0 -152
- package/src/components/Table/utils/TableStoryComponents.tsx +0 -21
- package/src/components/TableV4/TableRowContext.ts +0 -37
- package/src/components/TableV4/TableV4.style.ts +0 -40
- package/src/components/TableV4/TableV4.test.tsx +0 -232
- package/src/components/TableV4/TableV4.tsx +0 -294
- package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.style.tsx +0 -15
- package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.tsx +0 -99
- package/src/components/TableV4/components/ExtendedColumnItem/index.ts +0 -2
- package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.style.ts +0 -41
- package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.tsx +0 -178
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.style.ts +0 -11
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.tsx +0 -71
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/index.ts +0 -1
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/ExpandedButtonCell.tsx +0 -67
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/index.ts +0 -1
- package/src/components/TableV4/components/RenderRowOrNestedRow/index.ts +0 -1
- package/src/components/TableV4/components/TableCell/TableCell.style.tsx +0 -23
- package/src/components/TableV4/components/TableCell/TableCell.tsx +0 -89
- package/src/components/TableV4/components/TableCell/index.ts +0 -2
- package/src/components/TableV4/components/TableCell/utils.tsx +0 -27
- package/src/components/TableV4/components/TableRow/TableRow.tsx +0 -47
- package/src/components/TableV4/components/TableRow/index.ts +0 -2
- package/src/components/TableV4/components/TableRowWrapper/TableRowWrapper.tsx +0 -75
- package/src/components/TableV4/components/TableRowWrapper/index.ts +0 -2
- package/src/components/TableV4/index.ts +0 -3
- package/src/components/TableV4/types.ts +0 -94
- package/src/components/TableV4/utils/TableStoryComponents.tsx +0 -12
- package/src/components/TableV4/utils/index.ts +0 -1
- package/src/components/TableV4/utils/utils.ts +0 -10
- package/src/components/Tabs/Tabs.style.ts +0 -19
- package/src/components/Tabs/Tabs.test.tsx +0 -81
- package/src/components/Tabs/Tabs.tsx +0 -54
- package/src/components/Tabs/components/Tab/Tab.style.ts +0 -12
- package/src/components/Tabs/components/Tab/Tab.tsx +0 -19
- package/src/components/Tabs/components/Tab/index.ts +0 -1
- package/src/components/Tabs/components/TabList/TabList.style.ts +0 -85
- package/src/components/Tabs/components/TabList/TabList.tsx +0 -19
- package/src/components/Tabs/components/TabList/index.ts +0 -1
- package/src/components/Tabs/components/TabPanel/TabPanel.tsx +0 -18
- package/src/components/Tabs/components/TabPanel/index.ts +0 -1
- package/src/components/Tabs/components/TabsContainer/TabsContainer.style.ts +0 -12
- package/src/components/Tabs/components/TabsContainer/TabsContainer.tsx +0 -25
- package/src/components/Tabs/components/TabsContainer/index.ts +0 -1
- package/src/components/Tabs/components/index.ts +0 -4
- package/src/components/Tabs/index.ts +0 -3
- package/src/components/Tabs/types.ts +0 -74
- package/src/components/Tabs/utils/TabsStoryComponents.tsx +0 -8
- package/src/components/Tag/Tag.style.ts +0 -106
- package/src/components/Tag/Tag.test.tsx +0 -94
- package/src/components/Tag/Tag.tsx +0 -53
- package/src/components/Tag/Tag.types.ts +0 -30
- package/src/components/Tag/constants.ts +0 -36
- package/src/components/Tag/hooks/useGetTagUtils.tsx +0 -79
- package/src/components/Tag/index.ts +0 -2
- package/src/components/TextArea/TextArea.style.ts +0 -54
- package/src/components/TextArea/TextArea.tsx +0 -115
- package/src/components/TextArea/index.ts +0 -2
- package/src/components/TextField/TextField.style.ts +0 -34
- package/src/components/TextField/TextField.test.tsx +0 -145
- package/src/components/TextField/TextField.tsx +0 -152
- package/src/components/TextField/components/commons.tsx +0 -13
- package/src/components/TextField/index.ts +0 -2
- package/src/components/TextInputBase/TextInputBase.style.ts +0 -219
- package/src/components/TextInputBase/TextInputBase.tsx +0 -96
- package/src/components/TextInputBase/index.ts +0 -2
- package/src/components/ThemeProvider/Test.tsx +0 -14
- package/src/components/ThemeProvider/ThemeProvider.style.ts +0 -31
- package/src/components/ThemeProvider/ThemeProvider.test.tsx +0 -46
- package/src/components/ThemeProvider/ThemeProvider.tsx +0 -48
- package/src/components/ThemeProvider/index.ts +0 -2
- package/src/components/Toast/Toast.style.ts +0 -127
- package/src/components/Toast/Toast.test.tsx +0 -114
- package/src/components/Toast/Toast.tsx +0 -168
- package/src/components/Toast/Toast.types.ts +0 -51
- package/src/components/Toast/index.ts +0 -2
- package/src/components/ToastV4/ToastV4.style.ts +0 -96
- package/src/components/ToastV4/ToastV4.test.tsx +0 -68
- package/src/components/ToastV4/ToastV4.tsx +0 -112
- package/src/components/ToastV4/index.tsx +0 -2
- package/src/components/Tooltip/Tooltip.style.ts +0 -43
- package/src/components/Tooltip/Tooltip.tsx +0 -49
- package/src/components/Tooltip/Tooltip.types.ts +0 -36
- package/src/components/Tooltip/index.ts +0 -3
- package/src/components/TopAppBar/TopAppBar.style.ts +0 -47
- package/src/components/TopAppBar/TopAppBar.test.tsx +0 -59
- package/src/components/TopAppBar/TopAppBar.tsx +0 -48
- package/src/components/TopAppBar/TopAppBar.types.ts +0 -25
- package/src/components/TopAppBar/__snapshots__/TopAppBar.test.tsx.snap +0 -769
- package/src/components/TopAppBar/components/Logo/Logo.style.ts +0 -27
- package/src/components/TopAppBar/components/Logo/Logo.wrapper.tsx +0 -20
- package/src/components/TopAppBar/components/Logo/index.ts +0 -2
- package/src/components/TopAppBar/components/Search/Search.style.ts +0 -71
- package/src/components/TopAppBar/components/Search/Search.tsx +0 -49
- package/src/components/TopAppBar/components/Search/index.ts +0 -2
- package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.style.ts +0 -13
- package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.tsx +0 -21
- package/src/components/TopAppBar/components/SidebarMenuIcon/index.ts +0 -2
- package/src/components/TopAppBar/components/UserMenu/UserMenu.style.ts +0 -12
- package/src/components/TopAppBar/components/UserMenu/UserMenu.tsx +0 -59
- package/src/components/TopAppBar/components/UserMenu/index.ts +0 -2
- package/src/components/TopAppBar/components/index.ts +0 -6
- package/src/components/TopAppBar/index.ts +0 -3
- package/src/components/TruncatedContent/TruncatedContent.style.tsx +0 -7
- package/src/components/TruncatedContent/TruncatedContent.test.tsx +0 -58
- package/src/components/TruncatedContent/TruncatedContent.tsx +0 -75
- package/src/components/TruncatedContent/index.ts +0 -2
- package/src/components/Typography/Typography.config.styles.ts +0 -87
- package/src/components/Typography/Typography.style.ts +0 -75
- package/src/components/Typography/Typography.tsx +0 -108
- package/src/components/Typography/index.ts +0 -4
- package/src/components/Typography/utils.ts +0 -13
- package/src/components/utils/ClickAwayListener/ClickAwayListener.tsx +0 -45
- package/src/components/utils/ClickAwayListener/index.tsx +0 -1
- package/src/components/utils/DropdownOptions/index.tsx +0 -31
- package/src/components/utils/Overlay/Overlay.tsx +0 -196
- package/src/components/utils/Overlay/index.ts +0 -1
- package/src/components/utils/PositionInScreen/PositionInScreen.tsx +0 -58
- package/src/components/utils/PositionInScreen/hooks.ts +0 -158
- package/src/components/utils/PositionInScreen/index.tsx +0 -1
- package/src/components/utils/Slots.tsx +0 -109
- package/src/components/utils/handleSearch.ts +0 -36
- package/src/components/utils/tests/Slots.test.tsx +0 -94
- package/src/components/utils/useDOMRef.ts +0 -49
- package/src/data-table/DataTable.test.tsx +0 -425
- package/src/data-table/DataTable.tsx +0 -52
- package/src/data-table/DataTableBody.css.ts +0 -127
- package/src/data-table/DataTableBody.tsx +0 -326
- package/src/data-table/DataTableBulkActions.tsx +0 -17
- package/src/data-table/DataTableCheckbox.tsx +0 -68
- package/src/data-table/DataTableContext.tsx +0 -27
- package/src/data-table/DataTableCounter.tsx +0 -46
- package/src/data-table/DataTableEditColumns.tsx +0 -90
- package/src/data-table/DataTableHeader.tsx +0 -32
- package/src/data-table/DataTableHeaderCell.css.ts +0 -90
- package/src/data-table/DataTableHeaderCell.tsx +0 -220
- package/src/data-table/DataTableRow.tsx +0 -215
- package/src/data-table/DataTableRowContext.tsx +0 -67
- package/src/data-table/index.ts +0 -7
- package/src/hooks/useBreakpoints.test.ts +0 -40
- package/src/hooks/useBreakpoints.tsx +0 -47
- package/src/hooks/useCheck.ts +0 -25
- package/src/hooks/useCombinedRefs.ts +0 -23
- package/src/hooks/useElementSize.ts +0 -47
- package/src/hooks/useEscape.ts +0 -18
- package/src/hooks/useEventListener.ts +0 -43
- package/src/hooks/useFieldUtils.tsx +0 -55
- package/src/hooks/useIsoMorphicLayoutEffect.ts +0 -5
- package/src/hooks/useKeyboardEvents.ts +0 -78
- package/src/hooks/useLoading.ts +0 -29
- package/src/hooks/useOverlayStack.ts +0 -92
- package/src/hooks/usePagination.ts +0 -62
- package/src/hooks/useTheme.ts +0 -7
- package/src/hooks/useThemeSwitch.tsx +0 -32
- package/src/hooks/useToggle.ts +0 -16
- package/src/hooks/useTypeColorToColorMatch.tsx +0 -101
- package/src/icon/Icon.tsx +0 -312
- package/src/icon/index.ts +0 -1
- package/src/icons/AccountIcon.tsx +0 -14
- package/src/icons/AlbumIcon.tsx +0 -16
- package/src/icons/AnalyticsIcon.tsx +0 -14
- package/src/icons/AppsIcon.tsx +0 -14
- package/src/icons/ArrowDownIcon.tsx +0 -14
- package/src/icons/ArrowLeftIcon.tsx +0 -14
- package/src/icons/ArrowRightIcon.tsx +0 -14
- package/src/icons/ArrowUpIcon.tsx +0 -14
- package/src/icons/ArtistIcon.tsx +0 -14
- package/src/icons/AssetIcon.tsx +0 -14
- package/src/icons/AudioIcon.tsx +0 -14
- package/src/icons/AudioOffIcon.tsx +0 -26
- package/src/icons/BookmarkIcon.tsx +0 -16
- package/src/icons/BookmarkOffIcon.tsx +0 -16
- package/src/icons/BroadcastIcon.tsx +0 -14
- package/src/icons/CalendarIcon.tsx +0 -14
- package/src/icons/CatalogIcon.tsx +0 -14
- package/src/icons/ChannelIcon.tsx +0 -24
- package/src/icons/ChatIcon.tsx +0 -14
- package/src/icons/CheckIcon.tsx +0 -14
- package/src/icons/ChevronDownIcon.tsx +0 -14
- package/src/icons/ChevronLeftIcon.tsx +0 -14
- package/src/icons/ChevronRightIcon.tsx +0 -14
- package/src/icons/ChevronUpIcon.tsx +0 -14
- package/src/icons/CinemaIcon.tsx +0 -14
- package/src/icons/ClaimIcon.tsx +0 -14
- package/src/icons/CloseIcon.tsx +0 -14
- package/src/icons/ColumnChooserIcon.tsx +0 -14
- package/src/icons/CompositionIcon.tsx +0 -14
- package/src/icons/ConcertIcon.tsx +0 -14
- package/src/icons/ConflictIcon.tsx +0 -14
- package/src/icons/ConvertIcon.tsx +0 -14
- package/src/icons/CopyIcon.tsx +0 -14
- package/src/icons/CueSheetIcon.tsx +0 -14
- package/src/icons/DashboardIcon.tsx +0 -14
- package/src/icons/DatasetIcon.tsx +0 -14
- package/src/icons/DeleteIcon.tsx +0 -14
- package/src/icons/DeliveryIcon.tsx +0 -14
- package/src/icons/DetailsIcon.tsx +0 -14
- package/src/icons/DigitalIcon.tsx +0 -16
- package/src/icons/DistributionIcon.tsx +0 -14
- package/src/icons/DownloadIcon.tsx +0 -14
- package/src/icons/EarningsIcon.tsx +0 -14
- package/src/icons/EditIcon.tsx +0 -14
- package/src/icons/EntitiesIcon.tsx +0 -14
- package/src/icons/ErrorIcon.tsx +0 -14
- package/src/icons/ExternalLinkIcon.tsx +0 -14
- package/src/icons/EyeIcon.tsx +0 -14
- package/src/icons/EyeOffIcon.tsx +0 -14
- package/src/icons/FavoriteIcon.tsx +0 -14
- package/src/icons/FavoriteOffIcon.tsx +0 -14
- package/src/icons/FileIcon.tsx +0 -14
- package/src/icons/FilterIcon.tsx +0 -14
- package/src/icons/FlagIcon.tsx +0 -14
- package/src/icons/FlagOffIcon.tsx +0 -14
- package/src/icons/ForwardIcon.tsx +0 -14
- package/src/icons/FreezeIcon.tsx +0 -16
- package/src/icons/HelpIcon.tsx +0 -14
- package/src/icons/ImageIcon.tsx +0 -14
- package/src/icons/ImageOffIcon.tsx +0 -20
- package/src/icons/IncomeIcon.tsx +0 -14
- package/src/icons/InformationalIcon.tsx +0 -16
- package/src/icons/InsightIcon.tsx +0 -14
- package/src/icons/InvoiceIcon.tsx +0 -16
- package/src/icons/IssueIcon.tsx +0 -14
- package/src/icons/KeywordIcon.tsx +0 -16
- package/src/icons/LanguageIcon.tsx +0 -14
- package/src/icons/LegalIcon.tsx +0 -14
- package/src/icons/LicenseIcon.tsx +0 -16
- package/src/icons/LinkIcon.tsx +0 -14
- package/src/icons/LocationIcon.tsx +0 -14
- package/src/icons/LockIcon.tsx +0 -14
- package/src/icons/LoginIcon.tsx +0 -14
- package/src/icons/LogoutIcon.tsx +0 -14
- package/src/icons/MailIcon.tsx +0 -14
- package/src/icons/ManualIcon.tsx +0 -14
- package/src/icons/MediaFileIcon.tsx +0 -14
- package/src/icons/MenuIcon.tsx +0 -14
- package/src/icons/MinusIcon.tsx +0 -14
- package/src/icons/MoreOptionsIcon.tsx +0 -22
- package/src/icons/NextIcon.tsx +0 -14
- package/src/icons/NotificationIcon.tsx +0 -14
- package/src/icons/OrganizationIcon.tsx +0 -14
- package/src/icons/PageFirstIcon.tsx +0 -14
- package/src/icons/PageLastIcon.tsx +0 -14
- package/src/icons/PairIcon.tsx +0 -14
- package/src/icons/PauseIcon.tsx +0 -14
- package/src/icons/PendingIcon.tsx +0 -14
- package/src/icons/PlayIcon.tsx +0 -14
- package/src/icons/PlaycountIcon.tsx +0 -14
- package/src/icons/PlusIcon.tsx +0 -14
- package/src/icons/PolicyIcon.tsx +0 -14
- package/src/icons/PreviousIcon.tsx +0 -14
- package/src/icons/PublicPerformanceIcon.tsx +0 -14
- package/src/icons/PublisherIcon.tsx +0 -20
- package/src/icons/RadioIcon.tsx +0 -14
- package/src/icons/RecordLabelIcon.tsx +0 -16
- package/src/icons/RecordingIcon.tsx +0 -14
- package/src/icons/RedoIcon.tsx +0 -14
- package/src/icons/RefreshIcon.tsx +0 -14
- package/src/icons/ReportIcon.tsx +0 -14
- package/src/icons/RestoreIcon.tsx +0 -18
- package/src/icons/ResumeIcon.tsx +0 -18
- package/src/icons/ReviewIcon.tsx +0 -14
- package/src/icons/RewindIcon.tsx +0 -14
- package/src/icons/RoleIcon.tsx +0 -14
- package/src/icons/SearchFilledIcon.tsx +0 -16
- package/src/icons/SearchIcon.tsx +0 -14
- package/src/icons/SettingsIcon.tsx +0 -14
- package/src/icons/ShareIcon.tsx +0 -14
- package/src/icons/SortAscendingIcon.tsx +0 -24
- package/src/icons/SortDescendingIcon.tsx +0 -24
- package/src/icons/SortIcon.tsx +0 -22
- package/src/icons/StatusIndicatorIcon.tsx +0 -11
- package/src/icons/StopIcon.tsx +0 -14
- package/src/icons/SuccessIcon.tsx +0 -14
- package/src/icons/TagIcon.tsx +0 -14
- package/src/icons/TelevisionIcon.tsx +0 -14
- package/src/icons/ThumbsDownIcon.tsx +0 -14
- package/src/icons/ThumbsUpIcon.tsx +0 -14
- package/src/icons/TrendingDownIcon.tsx +0 -14
- package/src/icons/TrendingUpIcon.tsx +0 -14
- package/src/icons/TriangleDownIcon.tsx +0 -16
- package/src/icons/TriangleLeftIcon.tsx +0 -16
- package/src/icons/TriangleRightIcon.tsx +0 -16
- package/src/icons/TriangleUpIcon.tsx +0 -16
- package/src/icons/UndoIcon.tsx +0 -14
- package/src/icons/UnfreezeIcon.tsx +0 -20
- package/src/icons/UnlinkIcon.tsx +0 -14
- package/src/icons/UnlockIcon.tsx +0 -14
- package/src/icons/UnpairIcon.tsx +0 -14
- package/src/icons/UnverifiedIcon.tsx +0 -20
- package/src/icons/UpdateIcon.tsx +0 -18
- package/src/icons/UploadIcon.tsx +0 -14
- package/src/icons/UsageIcon.tsx +0 -16
- package/src/icons/UserIcon.tsx +0 -14
- package/src/icons/UsersIcon.tsx +0 -26
- package/src/icons/VerifiedIcon.tsx +0 -14
- package/src/icons/VideoIcon.tsx +0 -14
- package/src/icons/VideoOffIcon.tsx +0 -18
- package/src/icons/WarningIcon.tsx +0 -16
- package/src/icons/WorkIcon.tsx +0 -16
- package/src/icons/WriterIcon.tsx +0 -22
- package/src/icons/YouTubeIcon.tsx +0 -16
- package/src/icons/index.ts +0 -144
- package/src/index.ts +0 -290
- package/src/layers/index.ts +0 -1
- package/src/layers/layers.css.ts +0 -10
- package/src/skeleton/Skeleton.css.ts +0 -19
- package/src/skeleton/Skeleton.tsx +0 -34
- package/src/skeleton/index.ts +0 -1
- package/src/sprinkles/createSprinklesMerge.ts +0 -61
- package/src/sprinkles/index.ts +0 -1
- package/src/sprinkles/properties.css.ts +0 -504
- package/src/sprinkles/sprinkles.ts +0 -18
- package/src/sprinkles/sprinklesMerge.ts +0 -4
- package/src/test/index.ts +0 -1
- package/src/test/setup.ts +0 -61
- package/src/test/utils.tsx +0 -25
- package/src/theme/emotion.d.ts +0 -7
- package/src/theme/functions.ts +0 -77
- package/src/theme/index.ts +0 -44
- package/src/theme/overrides.ts +0 -5
- package/src/theme/types.ts +0 -93
- package/src/types.d.ts +0 -21
- package/src/utils/ExtendProps.ts +0 -5
- package/src/utils/cn.ts +0 -5
- package/src/utils/common.ts +0 -36
- package/src/utils/date.ts +0 -19
- package/src/utils/errors.ts +0 -13
- package/src/utils/helpers.ts +0 -51
- package/src/utils/storyshots.ts +0 -37
- package/src/utils/tests/helpers.test.ts +0 -21
- package/src/utils/types.ts +0 -12
- package/src/vanilla/Box/Box.tsx +0 -37
- package/src/vanilla/Box/extractBoxProps.ts +0 -19
- package/src/vanilla/Box/index.ts +0 -2
- package/src/vanilla/Dialog/Dialog.tsx +0 -130
- package/src/vanilla/Dialog/index.ts +0 -1
- package/src/vanilla/Dropdown/Dropdown.css.ts +0 -11
- package/src/vanilla/Dropdown/Dropdown.tsx +0 -78
- package/src/vanilla/Dropdown/index.ts +0 -1
- package/src/vanilla/Menu/Menu.css.ts +0 -42
- package/src/vanilla/Menu/Menu.tsx +0 -136
- package/src/vanilla/Menu/index.ts +0 -1
- package/src/vanilla/Popover/Popover.css.ts +0 -24
- package/src/vanilla/Popover/Popover.tsx +0 -89
- package/src/vanilla/Popover/index.ts +0 -1
- package/src/vanilla/Table/Table.css.ts +0 -61
- package/src/vanilla/Table/Table.tsx +0 -21
- package/src/vanilla/Table/TableBody.css.ts +0 -5
- package/src/vanilla/Table/TableBody.tsx +0 -17
- package/src/vanilla/Table/TableCell.css.ts +0 -81
- package/src/vanilla/Table/TableCell.tsx +0 -53
- package/src/vanilla/Table/TableFooter.css.ts +0 -20
- package/src/vanilla/Table/TableFooter.tsx +0 -17
- package/src/vanilla/Table/TableHeader.css.ts +0 -21
- package/src/vanilla/Table/TableHeader.tsx +0 -22
- package/src/vanilla/Table/TableHeaderCell.css.ts +0 -85
- package/src/vanilla/Table/TableHeaderCell.tsx +0 -53
- package/src/vanilla/Table/TableRow.css.ts +0 -34
- package/src/vanilla/Table/TableRow.tsx +0 -17
- package/src/vanilla/Table/index.ts +0 -7
- package/src/vanilla/Text/Text.css.ts +0 -38
- package/src/vanilla/Text/Text.tsx +0 -33
- package/src/vanilla/Text/index.ts +0 -1
- package/src/vanilla/ThemeProvider/ThemeProvider.tsx +0 -91
- package/src/vanilla/ThemeProvider/index.ts +0 -1
- package/src/vanilla/Tooltip/Tooltip.css.ts +0 -93
- package/src/vanilla/Tooltip/Tooltip.tsx +0 -147
- package/src/vanilla/Tooltip/index.ts +0 -1
- package/src/vanilla/index.ts +0 -13
- package/src/vanilla-extract/global.css.ts +0 -184
- package/src/vanilla-extract/index.ts +0 -12
- package/src/vanilla-extract/style.ts +0 -13
- package/src/version/index.ts +0 -1
- package/src/version/version.ts +0 -1
- package/src/vite-env.d.ts +0 -5
- package/tsconfig.codemods.json +0 -4
- package/tsconfig.json +0 -37
- package/tsconfig.node.json +0 -15
- package/tsconfig.vanilla.json +0 -9
- package/vite.codemods.config.ts +0 -40
- package/vite.config.ts +0 -101
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M10 18C8.89355 18 7.85315 17.7915 6.8788 17.3745C5.90444 16.9575 5.05621 16.388 4.33411 15.6659C3.61202 14.9438 3.04248 14.0956 2.6255 13.1212C2.2085 12.1469 2 11.1065 2 10C2 8.89873 2.2085 7.85962 2.6255 6.88268C3.04248 5.90573 3.61202 5.05621 4.33411 4.33411C5.05621 3.61202 5.90444 3.04248 6.8788 2.6255C7.85315 2.2085 8.89355 2 10 2C11.1013 2 12.1404 2.2085 13.1173 2.6255C14.0943 3.04248 14.9438 3.61202 15.6659 4.33411C16.388 5.05621 16.9575 5.90573 17.3745 6.88268C17.7915 7.85962 18 8.89873 18 10C18 11.1065 17.7915 12.1469 17.3745 13.1212C16.9575 14.0956 16.388 14.9438 15.6659 15.6659C14.9438 16.388 14.0943 16.9575 13.1173 17.3745C12.1404 17.7915 11.1013 18 10 18ZM10 16.3668C10.2642 16.0891 10.517 15.6182 10.7584 14.9542C10.9998 14.2901 11.1888 13.5742 11.3256 12.8065H8.67442C8.82153 13.5949 9.0132 14.3212 9.24941 14.9852C9.48561 15.6493 9.73581 16.1098 10 16.3668ZM8.49575 16.2253C8.25333 15.8617 8.03577 15.38 7.84306 14.7801C7.65036 14.1803 7.4991 13.5224 7.38929 12.8065H4.22374C4.62365 13.6996 5.21288 14.4483 5.99144 15.0529C6.77002 15.6574 7.60479 16.0482 8.49575 16.2253ZM11.5042 16.2253C12.3952 16.0482 13.23 15.6574 14.0086 15.0529C14.7871 14.4483 15.3763 13.6996 15.7763 12.8065H12.6107C12.475 13.5276 12.3108 14.188 12.1181 14.7879C11.9254 15.3877 11.7208 15.8669 11.5042 16.2253ZM3.77621 11.554H7.24476C7.22093 11.294 7.20436 11.0264 7.19504 10.7514C7.18572 10.4763 7.18106 10.2124 7.18106 9.9596C7.18106 9.70681 7.18572 9.44962 7.19504 9.18802C7.20436 8.92643 7.22093 8.67908 7.24476 8.44598H3.77621C3.69851 8.68012 3.64567 8.93187 3.6177 9.20123C3.58973 9.47059 3.57574 9.73685 3.57574 10C3.57574 10.2632 3.58973 10.5294 3.6177 10.7988C3.64567 11.0681 3.69851 11.3199 3.77621 11.554ZM8.53767 11.554H11.4623C11.4996 11.2805 11.5229 11.0156 11.5323 10.7591C11.5416 10.5027 11.5462 10.2497 11.5462 10C11.5462 9.75032 11.5416 9.4939 11.5323 9.23077C11.5229 8.96761 11.4996 8.70602 11.4623 8.44598H8.53767C8.50038 8.70602 8.47707 8.96761 8.46773 9.23077C8.45841 9.4939 8.45375 9.75032 8.45375 10C8.45375 10.2497 8.45841 10.5061 8.46773 10.7692C8.47707 11.0324 8.50038 11.294 8.53767 11.554ZM12.7552 11.554H16.2238C16.3015 11.3199 16.3543 11.0681 16.3823 10.7988C16.4103 10.5294 16.4243 10.2632 16.4243 10C16.4243 9.73685 16.4103 9.46722 16.3823 9.19113C16.3543 8.91503 16.3015 8.66665 16.2238 8.44598H12.7552C12.7791 8.70602 12.7956 8.97357 12.805 9.24862C12.8143 9.5237 12.8189 9.78762 12.8189 10.0404C12.8189 10.2932 12.8143 10.5504 12.805 10.812C12.7956 11.0736 12.7791 11.3209 12.7552 11.554ZM12.6107 7.19349H15.7763C15.3712 6.29008 14.7858 5.54129 14.0202 4.94714C13.2546 4.353 12.4159 3.95957 11.5042 3.76687C11.7467 4.15641 11.9616 4.64722 12.1492 5.2393C12.3367 5.83138 12.4905 6.48278 12.6107 7.19349ZM8.67442 7.19349H11.3256C11.1785 6.41027 10.9829 5.6835 10.7389 5.0132C10.495 4.34291 10.2486 3.84925 10 3.53223C9.75135 3.84925 9.50504 4.34291 9.26107 5.0132C9.01708 5.6835 8.82153 6.41027 8.67442 7.19349ZM4.22374 7.19349H7.38929C7.50946 6.48278 7.66331 5.83138 7.85084 5.2393C8.03836 4.64722 8.25333 4.15641 8.49575 3.76687C7.57889 3.95957 6.73894 4.3543 5.97591 4.95104C5.21289 5.54778 4.62883 6.29526 4.22374 7.19349Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M10 11.3831L11.649 12.6247C11.7381 12.6876 11.8292 12.6876 11.9223 12.6247C12.0155 12.5619 12.0419 12.4812 12.0015 12.3827L11.3478 10.3395L13.0481 9.00826C13.1558 8.95063 13.1881 8.86785 13.1452 8.75992C13.1022 8.652 13.0186 8.59804 12.8944 8.59804H10.8804L10.2189 6.57998C10.1786 6.48148 10.1056 6.43223 10 6.43223C9.89441 6.43223 9.82143 6.48148 9.78106 6.57998L9.11957 8.59804H7.10561C6.98139 8.59804 6.90245 8.652 6.86881 8.75992C6.83516 8.86785 6.87217 8.95063 6.97983 9.00826L8.65217 10.3395L7.99846 12.3701C7.95809 12.4686 7.98448 12.5527 8.07765 12.6224C8.17082 12.6921 8.26192 12.6955 8.35095 12.6326L10 11.3831ZM10 18C9.91615 18 9.82039 17.9932 9.71273 17.9796C9.60507 17.9659 9.50672 17.9455 9.4177 17.9183C7.6206 17.3189 6.18505 16.2014 5.11104 14.5658C4.03701 12.9302 3.5 11.1678 3.5 9.27858V5.6998C3.5 5.30897 3.60533 4.95508 3.816 4.63812C4.02666 4.32114 4.3116 4.09298 4.67081 3.95363L9.34784 2.13516C9.56109 2.04505 9.77847 2 10 2C10.2215 2 10.4389 2.04505 10.6522 2.13516L15.3292 3.95363C15.6884 4.09298 15.9733 4.32114 16.184 4.63812C16.3947 4.95508 16.5 5.30897 16.5 5.6998V9.27858C16.5 11.1678 15.963 12.9302 14.889 14.5658C13.815 16.2014 12.3794 17.3189 10.5823 17.9183C10.4933 17.9455 10.3949 17.9659 10.2873 17.9796C10.1796 17.9932 10.0839 18 10 18Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M9.94011 10.3704C10.49 10.3704 10.9599 10.1796 11.3497 9.79809C11.7396 9.41656 11.9345 8.95789 11.9345 8.4221C11.9345 7.88632 11.7387 7.4285 11.3471 7.04864C10.9555 6.66878 10.4848 6.47886 9.93489 6.47886C9.38501 6.47886 8.91514 6.66963 8.52529 7.05118C8.13543 7.43272 7.9405 7.89139 7.9405 8.42718C7.9405 8.96296 8.1363 9.42078 8.52789 9.80064C8.91947 10.1805 9.39021 10.3704 9.94011 10.3704ZM9.9375 18.6042C7.58315 16.6242 5.82789 14.816 4.67173 13.1794C3.51558 11.5427 2.9375 10.0138 2.9375 8.59259C2.9375 6.44684 3.6374 4.74565 5.03721 3.48905C6.43701 2.23245 8.06964 1.60416 9.9351 1.60416C11.8006 1.60416 13.434 2.23245 14.8354 3.48905C16.2368 4.74565 16.9375 6.44684 16.9375 8.59259C16.9375 10.0138 16.3594 11.5427 15.2033 13.1794C14.0471 14.816 12.2919 16.6242 9.9375 18.6042Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M4.28961 16C3.79164 16 3.36888 15.8264 3.02134 15.4793C2.67378 15.1322 2.5 14.7099 2.5 14.2126V5.78742C2.5 5.29005 2.67377 4.86781 3.02132 4.52069C3.36886 4.17356 3.79162 4 4.28959 4H15.7104C16.2084 4 16.6311 4.17356 16.9787 4.52069C17.3262 4.86781 17.5 5.29005 17.5 5.78742V14.2126C17.5 14.7099 17.3262 15.1322 16.9787 15.4793C16.6311 15.8264 16.2084 16 15.7104 16H4.28961ZM10 10.6671C10.085 10.6671 10.1657 10.655 10.2421 10.6307C10.3185 10.6065 10.3923 10.5725 10.4635 10.5287L15.6004 7.25161C15.6822 7.20133 15.7525 7.11721 15.8113 6.99926C15.8701 6.88131 15.8925 6.76264 15.8785 6.64326C15.8692 6.41112 15.7567 6.23818 15.541 6.12444C15.3254 6.0107 15.1083 6.02002 14.8899 6.15242L10.8069 8.75784C10.3148 9.07185 9.68523 9.07185 9.19313 8.75784L5.11015 6.15242C4.89171 6.02002 4.67583 6.00627 4.46253 6.11117C4.24922 6.21605 4.13556 6.39344 4.12155 6.64332C4.10755 6.76546 4.12995 6.88364 4.18876 6.99786C4.24757 7.11208 4.31852 7.19716 4.4016 7.2531L9.53653 10.5287C9.60771 10.5725 9.68151 10.6065 9.75794 10.6307C9.83438 10.655 9.91507 10.6671 10 10.6671Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M10.6585 15.1849C11.3179 14.8715 11.9855 14.6277 12.6615 14.4535C13.3374 14.2793 14.0356 14.1921 14.7561 14.1921C15.2439 14.1921 15.7116 14.2222 16.1592 14.2823C16.6068 14.3423 17.0289 14.4696 17.4256 14.664C17.4899 14.6913 17.5489 14.6872 17.6025 14.6517C17.6561 14.6162 17.6829 14.5602 17.6829 14.4837V5.1067C17.6829 5.05756 17.6695 5.01388 17.6427 4.97564C17.6159 4.93741 17.5704 4.90464 17.506 4.87734C17.0182 4.69495 16.5286 4.55653 16.037 4.46205C15.5454 4.3676 15.0349 4.32037 14.5052 4.32037C13.8266 4.32037 13.1662 4.41074 12.524 4.59149C11.8818 4.77225 11.26 5.02917 10.6585 5.36226V15.1849ZM9.99281 17C9.88343 17 9.78858 16.9653 9.70828 16.896C9.62798 16.8266 9.53949 16.7641 9.44279 16.7084C8.81132 16.3338 8.14824 16.0408 7.45355 15.8295C6.75886 15.6182 6.04768 15.5125 5.32003 15.5125C4.89833 15.5125 4.47628 15.5311 4.05388 15.5682C3.63147 15.6053 3.22675 15.7074 2.83973 15.8745C2.39256 16.0569 1.97415 16.0668 1.58449 15.904C1.19483 15.7413 1 15.4628 1 15.0685V4.7758C1 4.54973 1.06379 4.3455 1.19137 4.16311C1.31896 3.98073 1.4771 3.83985 1.66579 3.74046C2.21255 3.41173 2.79416 3.20614 3.41063 3.12369C4.02707 3.04123 4.6521 3 5.2857 3C6.12731 3 6.92227 3.09556 7.67059 3.28669C8.41892 3.47781 9.1919 3.78743 9.98955 4.21555C10.7872 3.78743 11.5602 3.47781 12.3085 3.28669C13.0568 3.09556 13.8518 3 14.6934 3C15.2712 3 15.844 3.03768 16.4117 3.11304C16.9794 3.18839 17.5157 3.34784 18.0206 3.59138C18.279 3.70497 18.5068 3.86005 18.7041 4.05663C18.9014 4.25321 19 4.49293 19 4.7758V15.0685C19 15.4202 18.8277 15.6782 18.4831 15.8426C18.1384 16.007 17.765 16.0263 17.3629 15.9008C16.9115 15.7391 16.4508 15.634 15.9807 15.5854C15.5106 15.5368 15.0352 15.5125 14.5545 15.5125C13.8408 15.5125 13.1471 15.6146 12.4733 15.8188C11.7995 16.0231 11.1608 16.3196 10.5572 16.7084C10.4618 16.7783 10.3713 16.8444 10.2855 16.9066C10.1998 16.9689 10.1022 17 9.99281 17Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M11.5 5.5C11.5 6.32843 10.8284 7 10 7C9.17157 7 8.5 6.32843 8.5 5.5C8.5 4.67157 9.17157 4 10 4C10.8284 4 11.5 4.67157 11.5 5.5Z" fill="#6265AD"/>
|
|
3
|
-
<path d="M11.5 10C11.5 10.8284 10.8284 11.5 10 11.5C9.17157 11.5 8.5 10.8284 8.5 10C8.5 9.17157 9.17157 8.5 10 8.5C10.8284 8.5 11.5 9.17157 11.5 10Z" fill="#6265AD"/>
|
|
4
|
-
<path d="M11.5 14.5C11.5 15.3284 10.8284 16 10 16C9.17157 16 8.5 15.3284 8.5 14.5C8.5 13.6716 9.17157 13 10 13C10.8284 13 11.5 13.6716 11.5 14.5Z" fill="#6265AD"/>
|
|
5
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M4.78657 14.3161C4.56987 14.3161 4.3846 14.2364 4.23076 14.0771C4.07692 13.9178 4 13.726 4 13.5016C4 13.2772 4.07692 13.0854 4.23076 12.9261C4.3846 12.7668 4.56987 12.6871 4.78657 12.6871H5.48171V7.66751C5.48171 6.62037 5.78964 5.67157 6.40549 4.82114C7.02135 3.9707 7.82928 3.41483 8.82928 3.15353C9.25 3.0436 10.0911 2.87144 11.1707 3.15353C12.1707 3.41483 12.9786 3.97385 13.5945 4.83061C14.2104 5.68736 14.5183 6.63299 14.5183 7.66751V12.6871H15.2134C15.4301 12.6871 15.6154 12.7668 15.7692 12.9261C15.9231 13.0854 16 13.2772 16 13.5016C16 13.726 15.9231 13.9178 15.7692 14.0771C15.6154 14.2364 15.4301 14.3161 15.2134 14.3161H4.78657ZM10 17C9.5788 17 9.21647 16.8453 8.91299 16.5359C8.60953 16.2265 8.45779 15.8489 8.45779 15.4031H11.5422C11.5422 15.8489 11.3928 16.2265 11.094 16.5359C10.7953 16.8453 10.4306 17 10 17Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M10.501 18C10.4042 18 10.2951 17.9915 10.1739 17.9744C10.0528 17.9573 9.93432 17.9316 9.81861 17.8974C7.89143 17.2274 6.43987 16.0851 5.46392 14.4706C4.48797 12.856 4 11.1207 4 9.26466V5.65249C4 5.26217 4.11158 4.91089 4.33475 4.59865C4.5579 4.28639 4.85348 4.06021 5.22148 3.92013L9.75169 2.13568C9.99665 2.04523 10.2461 2 10.5 2C10.7539 2 11.0033 2.04523 11.2483 2.13568L15.7785 3.92013C16.1465 4.06021 16.4421 4.28639 16.6652 4.59865C16.8884 4.91089 17 5.26217 17 5.65249V9.26555C17 10.0677 16.904 10.8579 16.7119 11.6361C16.5198 12.4143 16.2288 13.1629 15.8389 13.8821L13.3523 11.5438C13.4866 11.3115 13.5973 11.0612 13.6846 10.7928C13.7718 10.5245 13.8154 10.2547 13.8154 9.98343C13.8154 9.11788 13.493 8.38189 12.8481 7.77545C12.2031 7.16901 11.4205 6.86579 10.5 6.86579C9.57954 6.86579 8.79686 7.16901 8.15194 7.77545C7.50703 8.38189 7.18457 9.11788 7.18457 9.98343C7.18457 10.849 7.50703 11.585 8.15194 12.1914C8.79686 12.7978 9.57954 13.1011 10.5 13.1011C10.8102 13.1011 11.1027 13.069 11.3774 13.0048C11.6522 12.9406 11.9153 12.8307 12.1666 12.675L14.8255 15.2452C14.3132 15.8174 13.7684 16.3323 13.1913 16.7898C12.6141 17.2474 11.9398 17.6152 11.1685 17.8933C11.0593 17.9302 10.9449 17.9572 10.8255 17.9743C10.7061 17.9914 10.5979 18 10.501 18ZM10.4927 11.5012C10.0468 11.5012 9.6675 11.3519 9.35486 11.0534C9.04222 10.7548 8.8859 10.3958 8.8859 9.97654C8.8859 9.55724 9.04466 9.2006 9.36219 8.90661C9.67973 8.61262 10.0614 8.46562 10.5073 8.46562C10.9532 8.46562 11.3325 8.61491 11.6451 8.9135C11.9578 9.2121 12.1141 9.57104 12.1141 9.99032C12.1141 10.4096 11.9553 10.7663 11.6378 11.0602C11.3203 11.3542 10.9386 11.5012 10.4927 11.5012Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M4.81655 17C4.31625 17 3.88841 16.8223 3.53305 16.467C3.17768 16.1116 3 15.6838 3 15.1835V4.81655C3 4.30284 3.17768 3.87165 3.53305 3.52299C3.88841 3.17433 4.31625 3 4.81655 3H15.1835C15.6972 3 16.1283 3.17433 16.477 3.52299C16.8257 3.87165 17 4.30284 17 4.81655V15.1835C17 15.6838 16.8257 16.1116 16.477 16.467C16.1283 16.8223 15.6972 17 15.1835 17H4.81655ZM15.431 5.49271L9.98763 11.1063L8.14787 9.2867C7.9622 9.10103 7.75228 9.00819 7.51813 9.00819C7.28396 9.00819 7.07404 9.10103 6.88837 9.2867L4.56895 11.6061V13.7893L7.51813 10.8402L9.35479 12.6768C9.55388 12.8759 9.77127 12.97 10.007 12.9592C10.2427 12.9484 10.4559 12.8501 10.6468 12.6644L15.431 7.72544V5.49271Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.3195 14.9061C17.3728 13.5514 18 11.8489 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18C11.849 18 13.5515 17.3727 14.9063 16.3194L11.8452 13.2583C10.3123 14.1637 8.30481 13.9579 6.98773 12.6409C5.42674 11.0799 5.42674 8.54902 6.98773 6.98804C8.54872 5.42705 11.0796 5.42705 12.6406 6.98804C13.9575 8.30495 14.1634 10.3122 13.2583 11.8449L16.3195 14.9061ZM11.2274 11.2274C12.0079 10.4469 12.0079 9.18152 11.2274 8.40103C10.4469 7.62053 9.18145 7.62053 8.40095 8.40103C7.62046 9.18152 7.62046 10.4469 8.40095 11.2274C9.18145 12.0079 10.4469 12.0079 11.2274 11.2274Z" fill="#52567A"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M11.361 17.5H8.64569C8.41546 17.5 8.21712 17.4302 8.05068 17.2905C7.88424 17.1508 7.78232 16.9692 7.74491 16.7457L7.59372 15.6424C7.55275 15.3435 7.35632 15.0895 7.08874 14.9499C6.81177 14.8054 6.48306 14.7465 6.19376 14.8644L5.13896 15.2943C4.92887 15.3911 4.71375 15.4002 4.49359 15.3215C4.27343 15.2428 4.10579 15.1075 3.99067 14.9157L2.62226 12.541C2.50714 12.3491 2.47332 12.1475 2.52079 11.9361C2.56828 11.7247 2.6846 11.551 2.86974 11.4151L3.92561 10.6279C4.05249 10.5333 4.12423 10.3812 4.11084 10.2235C4.10364 10.1388 4.10004 10.0545 4.10004 9.97067C4.10004 9.90361 4.10364 9.82887 4.11084 9.74645C4.12491 9.58523 4.04924 9.43028 3.9177 9.33601L2.86974 8.58491C2.67213 8.46106 2.55582 8.28738 2.52081 8.06387C2.48579 7.84037 2.52584 7.6327 2.64095 7.44086L3.99067 5.13459C4.11059 4.9474 4.27511 4.81027 4.48424 4.7232C4.69336 4.63613 4.90296 4.64102 5.11305 4.73787L6.06631 5.1249C6.38747 5.25529 6.74992 5.20511 7.05707 5.04449C7.35484 4.88876 7.56586 4.60233 7.6101 4.26922L7.74491 3.25434C7.76985 3.03083 7.86866 2.84923 8.04133 2.70955C8.214 2.56985 8.41546 2.5 8.64569 2.5H11.361C11.5912 2.5 11.7938 2.56985 11.9689 2.70955C12.144 2.84923 12.244 3.03083 12.2689 3.25434L12.4005 4.29713C12.4423 4.6288 12.6493 4.9155 12.946 5.06962C13.243 5.22391 13.5913 5.27653 13.9017 5.15137L14.8821 4.75603C15.0922 4.65918 15.3061 4.64893 15.5238 4.72529C15.7416 4.80166 15.9081 4.93576 16.0232 5.1276L17.3729 7.44086C17.488 7.6327 17.5249 7.84037 17.4837 8.06387C17.4424 8.28738 17.3292 8.46106 17.1441 8.58491L16.0203 9.39868C15.8971 9.48791 15.8397 9.63978 15.844 9.79185C15.8464 9.87567 15.8476 9.9511 15.8476 10.0182C15.8476 10.0806 15.8452 10.1537 15.8404 10.2375C15.8308 10.4048 15.9077 10.5652 16.0431 10.6638L17.0995 11.4332C17.2894 11.5646 17.4069 11.7371 17.452 11.9508C17.4971 12.1645 17.4621 12.3673 17.347 12.5591L15.9786 14.9227C15.8634 15.1145 15.697 15.2475 15.4792 15.3215C15.2615 15.3955 15.0476 15.3841 14.8375 15.2873L13.7589 14.8485C13.4786 14.7345 13.1624 14.7754 12.9014 14.9283C12.6535 15.0735 12.4626 15.3103 12.4242 15.595L12.2689 16.7457C12.2315 16.9692 12.1284 17.1508 11.9595 17.2905C11.7907 17.4302 11.5912 17.5 11.361 17.5ZM9.95942 12.6695C10.7317 12.6695 11.3861 12.409 11.9229 11.8879C12.4596 11.3669 12.728 10.7315 12.728 9.98184C12.728 9.23218 12.4596 8.59682 11.9229 8.07576C11.3861 7.55472 10.7317 7.2942 9.95942 7.2942C9.192 7.2942 8.53872 7.55472 7.99959 8.07576C7.46048 8.59682 7.19092 9.23218 7.19092 9.98184C7.19092 10.7315 7.46048 11.3669 7.99959 11.8879C8.53872 12.409 9.192 12.6695 9.95942 12.6695Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.4992 14.3122L6.8396 17.249C6.7705 17.4776 6.65178 17.6599 6.48343 17.7959C6.31508 17.932 6.12851 18 5.92372 18C5.6134 18 5.36496 17.8748 5.17841 17.6245C4.99184 17.3742 4.93813 17.0776 5.01728 16.7347L5.58265 14.3122H2.96123C2.66724 14.3122 2.41723 14.1843 2.21119 13.9286C2.00515 13.6728 1.94987 13.3735 2.04535 13.0306C2.12073 12.8265 2.23694 12.6442 2.39398 12.4837C2.55102 12.3231 2.7401 12.2429 2.96123 12.2429H6.07263L6.94894 8.39386H4.03354C3.73955 8.39386 3.48953 8.26597 3.28349 8.01019C3.07746 7.75442 3.02218 7.45511 3.11766 7.11226C3.19304 6.90817 3.30924 6.72586 3.46628 6.56533C3.62332 6.40478 3.81241 6.32451 4.03354 6.32451H7.43893L8.24551 2.75101C8.3146 2.52243 8.43332 2.34012 8.60168 2.20407C8.77003 2.06803 8.95659 2 9.16139 2C9.4717 2 9.72014 2.12516 9.90671 2.37549C10.0933 2.62583 10.147 2.92243 10.0678 3.26528L9.35547 6.32451H12.3538L13.1604 2.75101C13.2295 2.52243 13.3482 2.34012 13.5166 2.20407C13.6849 2.06803 13.8715 2 14.0763 2C14.3866 2 14.635 2.12516 14.8216 2.37549C15.0082 2.62583 15.0619 2.92243 14.9827 3.26528L14.2704 6.32451H17.0388C17.3328 6.32451 17.5828 6.4524 17.7888 6.70817C17.9949 6.96395 18.0501 7.26327 17.9546 7.60613C17.8793 7.81021 17.7631 7.99252 17.606 8.15306C17.449 8.31359 17.2599 8.39386 17.0388 8.39386H13.7804L12.9041 12.2429H15.9665C16.2605 12.2429 16.5105 12.3708 16.7165 12.6265C16.9225 12.8823 16.9778 13.1816 16.8823 13.5245C16.807 13.7286 16.6908 13.9109 16.5337 14.0714C16.3767 14.232 16.1876 14.3122 15.9665 14.3122H12.4141L11.7545 17.249C11.6854 17.4776 11.5667 17.6599 11.3983 17.7959C11.23 17.932 11.0434 18 10.8386 18C10.5283 18 10.2799 17.8748 10.0933 17.6245C9.90672 17.3742 9.85301 17.0776 9.93216 16.7347L10.4975 14.3122H7.4992ZM7.98918 12.2429H10.9875L11.8638 8.39386H8.86549L7.98918 12.2429Z" fill="#52567A"/>
|
|
3
|
-
</svg>
|
|
@@ -1,312 +0,0 @@
|
|
|
1
|
-
/** Audio Controls */
|
|
2
|
-
import Forward from './audioControls/forward.svg?react';
|
|
3
|
-
import Next from './audioControls/next.svg?react';
|
|
4
|
-
import Pause from './audioControls/pause.svg?react';
|
|
5
|
-
import Play from './audioControls/play.svg?react';
|
|
6
|
-
import Previous from './audioControls/previous.svg?react';
|
|
7
|
-
import Resume from './audioControls/resume.svg?react';
|
|
8
|
-
import Rewind from './audioControls/rewind.svg?react';
|
|
9
|
-
import Stop from './audioControls/stop.svg?react';
|
|
10
|
-
/** Basic Actions */
|
|
11
|
-
import Check from './basicActions/check.svg?react';
|
|
12
|
-
import Close from './basicActions/close.svg?react';
|
|
13
|
-
import ColumnChooser from './basicActions/columnChooser.svg?react';
|
|
14
|
-
import Convert from './basicActions/convert.svg?react';
|
|
15
|
-
import Copy from './basicActions/copy.svg?react';
|
|
16
|
-
import Delete from './basicActions/delete.svg?react';
|
|
17
|
-
import Download from './basicActions/download.svg?react';
|
|
18
|
-
import Edit from './basicActions/edit.svg?react';
|
|
19
|
-
import Login from './basicActions/login.svg?react';
|
|
20
|
-
import Logout from './basicActions/logout.svg?react';
|
|
21
|
-
import MediaFile from './basicActions/mediaFile.svg?react';
|
|
22
|
-
import Minus from './basicActions/minus.svg?react';
|
|
23
|
-
import Plus from './basicActions/plus.svg?react';
|
|
24
|
-
import Redo from './basicActions/redo.svg?react';
|
|
25
|
-
import Refresh from './basicActions/refresh.svg?react';
|
|
26
|
-
import Restore from './basicActions/restore.svg?react';
|
|
27
|
-
import Review from './basicActions/review.svg?react';
|
|
28
|
-
import Search from './basicActions/search.svg?react';
|
|
29
|
-
import Share from './basicActions/share.svg?react';
|
|
30
|
-
import Sort from './basicActions/sort.svg?react';
|
|
31
|
-
import SortAscending from './basicActions/sortAscending.svg?react';
|
|
32
|
-
import SortDescending from './basicActions/sortDescending.svg?react';
|
|
33
|
-
import ThumbsDown from './basicActions/thumbsDown.svg?react';
|
|
34
|
-
import ThumbsUp from './basicActions/thumbsUp.svg?react';
|
|
35
|
-
import Undo from './basicActions/undo.svg?react';
|
|
36
|
-
import Update from './basicActions/update.svg?react';
|
|
37
|
-
import Upload from './basicActions/upload.svg?react';
|
|
38
|
-
/** Data and Finance */
|
|
39
|
-
import Analytics from './dataAndFinance/analytics.svg?react';
|
|
40
|
-
import Dashboard from './dataAndFinance/dashboard.svg?react';
|
|
41
|
-
import Dataset from './dataAndFinance/dataset.svg?react';
|
|
42
|
-
import Earnings from './dataAndFinance/earnings.svg?react';
|
|
43
|
-
import Income from './dataAndFinance/income.svg?react';
|
|
44
|
-
import Insight from './dataAndFinance/insight.svg?react';
|
|
45
|
-
import Invoice from './dataAndFinance/invoice.svg?react';
|
|
46
|
-
import TrendingDown from './dataAndFinance/trendingDown.svg?react';
|
|
47
|
-
import TrendingUp from './dataAndFinance/trendingUp.svg?react';
|
|
48
|
-
/** Generic */
|
|
49
|
-
import Calendar from './generic/calendar.svg?react';
|
|
50
|
-
import Chat from './generic/chat.svg?react';
|
|
51
|
-
import Delivery from './generic/delivery.svg?react';
|
|
52
|
-
import Details from './generic/details.svg?react';
|
|
53
|
-
import ExternalLink from './generic/externalLink.svg?react';
|
|
54
|
-
import File from './generic/file.svg?react';
|
|
55
|
-
import Filter from './generic/filter.svg?react';
|
|
56
|
-
import Issue from './generic/issue.svg?react';
|
|
57
|
-
import Keyword from './generic/keyword.svg?react';
|
|
58
|
-
import Language from './generic/language.svg?react';
|
|
59
|
-
import Legal from './generic/legal.svg?react';
|
|
60
|
-
import Location from './generic/location.svg?react';
|
|
61
|
-
import Mail from './generic/mail.svg?react';
|
|
62
|
-
import Manual from './generic/manual.svg?react';
|
|
63
|
-
import MoreOptions from './generic/moreOptions.svg?react';
|
|
64
|
-
import Notification from './generic/notification.svg?react';
|
|
65
|
-
import Policy from './generic/policy.svg?react';
|
|
66
|
-
import Report from './generic/report.svg?react';
|
|
67
|
-
import SearchFilled from './generic/search filled.svg?react';
|
|
68
|
-
import Settings from './generic/settings.svg?react';
|
|
69
|
-
import Tag from './generic/tag.svg?react';
|
|
70
|
-
/** Music Business */
|
|
71
|
-
import Album from './musicBusiness/album.svg?react';
|
|
72
|
-
import Artist from './musicBusiness/artist.svg?react';
|
|
73
|
-
import Asset from './musicBusiness/asset.svg?react';
|
|
74
|
-
import Broadcast from './musicBusiness/broadcast.svg?react';
|
|
75
|
-
import Catalog from './musicBusiness/catalog.svg?react';
|
|
76
|
-
import Channel from './musicBusiness/channel.svg?react';
|
|
77
|
-
import Cinema from './musicBusiness/cinema.svg?react';
|
|
78
|
-
import Claim from './musicBusiness/claim.svg?react';
|
|
79
|
-
import Composition from './musicBusiness/composition.svg?react';
|
|
80
|
-
import Concert from './musicBusiness/concert.svg?react';
|
|
81
|
-
import Conflict from './musicBusiness/conflict.svg?react';
|
|
82
|
-
import CueSheet from './musicBusiness/cueSheet.svg?react';
|
|
83
|
-
import Digital from './musicBusiness/digital.svg?react';
|
|
84
|
-
import Distribution from './musicBusiness/distribution.svg?react';
|
|
85
|
-
import License from './musicBusiness/license.svg?react';
|
|
86
|
-
import Playcount from './musicBusiness/playcount.svg?react';
|
|
87
|
-
import PublicPerformance from './musicBusiness/publicPerformance.svg?react';
|
|
88
|
-
import Publisher from './musicBusiness/publisher.svg?react';
|
|
89
|
-
import Radio from './musicBusiness/radio.svg?react';
|
|
90
|
-
import Recording from './musicBusiness/recording.svg?react';
|
|
91
|
-
import RecordLabel from './musicBusiness/recordLabel.svg?react';
|
|
92
|
-
import Television from './musicBusiness/television.svg?react';
|
|
93
|
-
import Usage from './musicBusiness/usage.svg?react';
|
|
94
|
-
import Work from './musicBusiness/work.svg?react';
|
|
95
|
-
import Writer from './musicBusiness/writer.svg?react';
|
|
96
|
-
import YouTube from './musicBusiness/youTube.svg?react';
|
|
97
|
-
/** Navigation */
|
|
98
|
-
import Apps from './navigation/apps.svg?react';
|
|
99
|
-
import ArrowDown from './navigation/arrowDown.svg?react';
|
|
100
|
-
import ArrowLeft from './navigation/arrowLeft.svg?react';
|
|
101
|
-
import ArrowRight from './navigation/arrowRight.svg?react';
|
|
102
|
-
import ArrowUp from './navigation/arrowUp.svg?react';
|
|
103
|
-
import ChevronDown from './navigation/chevronDown.svg?react';
|
|
104
|
-
import ChevronLeft from './navigation/chevronLeft.svg?react';
|
|
105
|
-
import ChevronRight from './navigation/chevronRight.svg?react';
|
|
106
|
-
import ChevronUp from './navigation/chevronUp.svg?react';
|
|
107
|
-
import Menu from './navigation/menu.svg?react';
|
|
108
|
-
import PageFirst from './navigation/pageFirst.svg?react';
|
|
109
|
-
import PageLast from './navigation/pageLast.svg?react';
|
|
110
|
-
import TriangleDown from './navigation/triangleDown.svg?react';
|
|
111
|
-
import TriangleLeft from './navigation/triangleLeft.svg?react';
|
|
112
|
-
import TriangleRight from './navigation/triangleRight.svg?react';
|
|
113
|
-
import TriangleUp from './navigation/triangleUp.svg?react';
|
|
114
|
-
/** Toggled Actions */
|
|
115
|
-
import Audio from './toggledActions/audio.svg?react';
|
|
116
|
-
import AudioOff from './toggledActions/audioOff.svg?react';
|
|
117
|
-
import Bookmark from './toggledActions/bookmark.svg?react';
|
|
118
|
-
import BookmarkOff from './toggledActions/bookmarkOff.svg?react';
|
|
119
|
-
import Eye from './toggledActions/eye.svg?react';
|
|
120
|
-
import EyeOff from './toggledActions/eyeOff.svg?react';
|
|
121
|
-
import Favorite from './toggledActions/favorite.svg?react';
|
|
122
|
-
import FavoriteOff from './toggledActions/favoriteOff.svg?react';
|
|
123
|
-
import Flag from './toggledActions/flag.svg?react';
|
|
124
|
-
import FlagOff from './toggledActions/flagOff.svg?react';
|
|
125
|
-
import Freeze from './toggledActions/freeze.svg?react';
|
|
126
|
-
import Image from './toggledActions/image.svg?react';
|
|
127
|
-
import ImageOff from './toggledActions/imageOff.svg?react';
|
|
128
|
-
import Link from './toggledActions/link.svg?react';
|
|
129
|
-
import Lock from './toggledActions/lock.svg?react';
|
|
130
|
-
import Pair from './toggledActions/pair.svg?react';
|
|
131
|
-
import Unfreeze from './toggledActions/unfreeze.svg?react';
|
|
132
|
-
import Unlink from './toggledActions/unlink.svg?react';
|
|
133
|
-
import Unlock from './toggledActions/unlock.svg?react';
|
|
134
|
-
import Unpair from './toggledActions/unpair.svg?react';
|
|
135
|
-
import Video from './toggledActions/video.svg?react';
|
|
136
|
-
import VideoOff from './toggledActions/videoOff.svg?react';
|
|
137
|
-
/** Users and Status */
|
|
138
|
-
import Account from './usersAndStatus/account.svg?react';
|
|
139
|
-
import Entities from './usersAndStatus/entities.svg?react';
|
|
140
|
-
import Error from './usersAndStatus/error.svg?react';
|
|
141
|
-
import Help from './usersAndStatus/help.svg?react';
|
|
142
|
-
import Informational from './usersAndStatus/informational.svg?react';
|
|
143
|
-
import Organization from './usersAndStatus/organization.svg?react';
|
|
144
|
-
import Pending from './usersAndStatus/pending.svg?react';
|
|
145
|
-
import Role from './usersAndStatus/role.svg?react';
|
|
146
|
-
import StatusIndicator from './usersAndStatus/statusIndicator.svg?react';
|
|
147
|
-
import Success from './usersAndStatus/success.svg?react';
|
|
148
|
-
import Unverified from './usersAndStatus/unverified.svg?react';
|
|
149
|
-
import User from './usersAndStatus/user.svg?react';
|
|
150
|
-
import Users from './usersAndStatus/users.svg?react';
|
|
151
|
-
import Verified from './usersAndStatus/verified.svg?react';
|
|
152
|
-
import Warning from './usersAndStatus/warning.svg?react';
|
|
153
|
-
/** Types */
|
|
154
|
-
import type React from 'react';
|
|
155
|
-
import type { AcceptedIconNames } from '../Icon.types';
|
|
156
|
-
|
|
157
|
-
const iconSelector: { [key in AcceptedIconNames]: React.FunctionComponent } = {
|
|
158
|
-
/** Audio Controls */
|
|
159
|
-
forward: Forward,
|
|
160
|
-
next: Next,
|
|
161
|
-
pause: Pause,
|
|
162
|
-
play: Play,
|
|
163
|
-
previous: Previous,
|
|
164
|
-
resume: Resume,
|
|
165
|
-
rewind: Rewind,
|
|
166
|
-
stop: Stop,
|
|
167
|
-
/** Basic Actions */
|
|
168
|
-
check: Check,
|
|
169
|
-
close: Close,
|
|
170
|
-
columnChooser: ColumnChooser,
|
|
171
|
-
convert: Convert,
|
|
172
|
-
copy: Copy,
|
|
173
|
-
delete: Delete,
|
|
174
|
-
download: Download,
|
|
175
|
-
edit: Edit,
|
|
176
|
-
login: Login,
|
|
177
|
-
logout: Logout,
|
|
178
|
-
mediaFile: MediaFile,
|
|
179
|
-
minus: Minus,
|
|
180
|
-
plus: Plus,
|
|
181
|
-
redo: Redo,
|
|
182
|
-
refresh: Refresh,
|
|
183
|
-
restore: Restore,
|
|
184
|
-
review: Review,
|
|
185
|
-
search: Search,
|
|
186
|
-
share: Share,
|
|
187
|
-
sort: Sort,
|
|
188
|
-
sortAscending: SortAscending,
|
|
189
|
-
sortDescending: SortDescending,
|
|
190
|
-
thumbsDown: ThumbsDown,
|
|
191
|
-
thumbsUp: ThumbsUp,
|
|
192
|
-
undo: Undo,
|
|
193
|
-
update: Update,
|
|
194
|
-
upload: Upload,
|
|
195
|
-
/** Data and Finance */
|
|
196
|
-
analytics: Analytics,
|
|
197
|
-
dashboard: Dashboard,
|
|
198
|
-
dataset: Dataset,
|
|
199
|
-
earnings: Earnings,
|
|
200
|
-
income: Income,
|
|
201
|
-
insight: Insight,
|
|
202
|
-
invoice: Invoice,
|
|
203
|
-
trendingDown: TrendingDown,
|
|
204
|
-
trendingUp: TrendingUp,
|
|
205
|
-
/** Generic */
|
|
206
|
-
calendar: Calendar,
|
|
207
|
-
chat: Chat,
|
|
208
|
-
delivery: Delivery,
|
|
209
|
-
details: Details,
|
|
210
|
-
externalLink: ExternalLink,
|
|
211
|
-
file: File,
|
|
212
|
-
filter: Filter,
|
|
213
|
-
issue: Issue,
|
|
214
|
-
keyword: Keyword,
|
|
215
|
-
language: Language,
|
|
216
|
-
legal: Legal,
|
|
217
|
-
location: Location,
|
|
218
|
-
mail: Mail,
|
|
219
|
-
manual: Manual,
|
|
220
|
-
moreOptions: MoreOptions,
|
|
221
|
-
notification: Notification,
|
|
222
|
-
policy: Policy,
|
|
223
|
-
report: Report,
|
|
224
|
-
searchFilled: SearchFilled,
|
|
225
|
-
settings: Settings,
|
|
226
|
-
tag: Tag,
|
|
227
|
-
/** Music Business */
|
|
228
|
-
album: Album,
|
|
229
|
-
artist: Artist,
|
|
230
|
-
asset: Asset,
|
|
231
|
-
broadcast: Broadcast,
|
|
232
|
-
catalog: Catalog,
|
|
233
|
-
channel: Channel,
|
|
234
|
-
cinema: Cinema,
|
|
235
|
-
claim: Claim,
|
|
236
|
-
composition: Composition,
|
|
237
|
-
concert: Concert,
|
|
238
|
-
conflict: Conflict,
|
|
239
|
-
cueSheet: CueSheet,
|
|
240
|
-
digital: Digital,
|
|
241
|
-
distribution: Distribution,
|
|
242
|
-
license: License,
|
|
243
|
-
playcount: Playcount,
|
|
244
|
-
publicPerformance: PublicPerformance,
|
|
245
|
-
publisher: Publisher,
|
|
246
|
-
radio: Radio,
|
|
247
|
-
recording: Recording,
|
|
248
|
-
recordLabel: RecordLabel,
|
|
249
|
-
television: Television,
|
|
250
|
-
usage: Usage,
|
|
251
|
-
work: Work,
|
|
252
|
-
writer: Writer,
|
|
253
|
-
youTube: YouTube,
|
|
254
|
-
/** Navigation */
|
|
255
|
-
apps: Apps,
|
|
256
|
-
arrowDown: ArrowDown,
|
|
257
|
-
arrowLeft: ArrowLeft,
|
|
258
|
-
arrowRight: ArrowRight,
|
|
259
|
-
arrowUp: ArrowUp,
|
|
260
|
-
chevronDown: ChevronDown,
|
|
261
|
-
chevronLeft: ChevronLeft,
|
|
262
|
-
chevronRight: ChevronRight,
|
|
263
|
-
chevronUp: ChevronUp,
|
|
264
|
-
menu: Menu,
|
|
265
|
-
pageFirst: PageFirst,
|
|
266
|
-
pageLast: PageLast,
|
|
267
|
-
triangleDown: TriangleDown,
|
|
268
|
-
triangleLeft: TriangleLeft,
|
|
269
|
-
triangleRight: TriangleRight,
|
|
270
|
-
triangleUp: TriangleUp,
|
|
271
|
-
/** Toggled Actions */
|
|
272
|
-
audio: Audio,
|
|
273
|
-
audioOff: AudioOff,
|
|
274
|
-
bookmark: Bookmark,
|
|
275
|
-
bookmarkOff: BookmarkOff,
|
|
276
|
-
eye: Eye,
|
|
277
|
-
eyeOff: EyeOff,
|
|
278
|
-
favorite: Favorite,
|
|
279
|
-
favoriteOff: FavoriteOff,
|
|
280
|
-
flag: Flag,
|
|
281
|
-
flagOff: FlagOff,
|
|
282
|
-
freeze: Freeze,
|
|
283
|
-
image: Image,
|
|
284
|
-
imageOff: ImageOff,
|
|
285
|
-
link: Link,
|
|
286
|
-
lock: Lock,
|
|
287
|
-
pair: Pair,
|
|
288
|
-
unfreeze: Unfreeze,
|
|
289
|
-
unlink: Unlink,
|
|
290
|
-
unlock: Unlock,
|
|
291
|
-
unpair: Unpair,
|
|
292
|
-
video: Video,
|
|
293
|
-
videoOff: VideoOff,
|
|
294
|
-
/** Users and Status */
|
|
295
|
-
account: Account,
|
|
296
|
-
entities: Entities,
|
|
297
|
-
error: Error,
|
|
298
|
-
help: Help,
|
|
299
|
-
informational: Informational,
|
|
300
|
-
organization: Organization,
|
|
301
|
-
pending: Pending,
|
|
302
|
-
role: Role,
|
|
303
|
-
statusIndicator: StatusIndicator,
|
|
304
|
-
success: Success,
|
|
305
|
-
unverified: Unverified,
|
|
306
|
-
user: User,
|
|
307
|
-
users: Users,
|
|
308
|
-
verified: Verified,
|
|
309
|
-
warning: Warning,
|
|
310
|
-
};
|
|
311
|
-
|
|
312
|
-
export default iconSelector;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.99986 7.6001C8.6799 7.6001 7.59994 8.68006 7.59994 10C7.59994 11.32 8.6799 12.3999 9.99986 12.3999C11.3198 12.3999 12.3998 11.32 12.3998 10C12.3998 8.68006 11.3198 7.6001 9.99986 7.6001ZM10 2C5.5924 2 2 5.5924 2 10C2 14.4076 5.59163 18 10 18C14.4076 18 18 14.4084 18 10C18 5.5924 14.4076 2 10 2ZM9.99994 13.9996C7.79201 13.9996 6.00033 12.2079 6.00033 10C6.00033 7.79208 7.79201 6.00039 9.99994 6.00039C12.2079 6.00039 13.9996 7.79208 13.9996 10C13.9996 12.2079 12.2079 13.9996 9.99994 13.9996Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M5.30485 17.3949C5.12204 17.5329 4.93849 17.535 4.7542 17.4012C4.56991 17.2674 4.50494 17.0869 4.55929 16.8597L6.01039 11.8792L2.21442 9.00692C2.01877 8.86378 1.95701 8.67862 2.02914 8.45146C2.10128 8.22428 2.25444 8.11069 2.48864 8.11069H7.18876L8.69766 2.86877C8.7362 2.75777 8.79672 2.66856 8.87923 2.60114C8.96175 2.53371 9.05191 2.5 9.14973 2.5C9.24756 2.5 9.33772 2.53371 9.42023 2.60114C9.50274 2.66856 9.56327 2.75777 9.60181 2.86877L11.1107 8.11069H15.8108C16.045 8.11069 16.1982 8.22428 16.2703 8.45146C16.3425 8.67862 16.2807 8.86378 16.0851 9.00692L12.2891 11.8792L13.7402 16.8597C13.7945 17.0869 13.7296 17.2674 13.5453 17.4012C13.361 17.535 13.1774 17.5329 12.9946 17.3949L9.14973 14.3282L5.30485 17.3949ZM16.4171 17.1118L15.1083 16.0537L14.0307 12.3568L16.2615 10.6811H17.5791C17.6355 10.6811 17.7404 10.7973 17.8941 11.0296C18.0478 11.262 18.0342 11.4445 17.8534 11.5773L16.0836 12.9014L17.1552 16.5641C17.2046 16.7757 17.1051 16.9271 16.8565 17.0184C16.608 17.1097 16.4615 17.1408 16.4171 17.1118ZM12.2402 6.4925L11.6532 4.45113L12.1127 2.87653C12.1512 2.76555 12.2118 2.67764 12.2943 2.61281C12.3768 2.54797 12.467 2.51556 12.5648 2.51556C12.6626 2.51556 12.7528 2.54668 12.8353 2.60892C12.9178 2.67116 12.9783 2.76036 13.0169 2.87653L14.0485 6.4925H12.2402Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M9.03299 15.7834C9.62917 15.7834 10.1326 15.5815 10.5432 15.1775C10.9538 14.7736 11.1591 14.2776 11.1591 13.6893V8.61173H12.7788C13.0108 8.61173 13.2079 8.53295 13.3702 8.3754C13.5325 8.21785 13.6136 8.02217 13.6136 7.78839C13.6136 7.5596 13.5325 7.36529 13.3702 7.20547C13.2079 7.04565 13.0108 6.96574 12.7788 6.96574H11.2924C11.0224 6.96574 10.7968 7.05504 10.6157 7.23363C10.4345 7.41222 10.3439 7.63459 10.3439 7.90076V12.0359C10.1571 11.8915 9.95126 11.7819 9.72651 11.7073C9.50176 11.6326 9.27273 11.5952 9.0394 11.5952C8.44142 11.5952 7.93712 11.797 7.52651 12.2006C7.1159 12.6041 6.9106 13.0998 6.9106 13.6875C6.9106 14.2752 7.11529 14.7715 7.52467 15.1763C7.93404 15.581 8.43682 15.7834 9.03299 15.7834ZM5.43638 18C4.89756 18 4.44013 17.8146 4.06408 17.4439C3.68803 17.0732 3.5 16.6223 3.5 16.0911V3.9089C3.5 3.37772 3.68803 2.92679 4.06408 2.55608C4.44013 2.18536 4.89756 2 5.43638 2H10.8682C11.094 2 11.3117 2.04239 11.5213 2.12717C11.7308 2.21193 11.9146 2.33285 12.0727 2.48992L16.003 6.40327C16.1624 6.55913 16.285 6.74034 16.371 6.9469C16.457 7.15348 16.5 7.36808 16.5 7.59071V16.0911C16.5 16.6223 16.312 17.0732 15.9359 17.4439C15.5599 17.8146 15.1024 18 14.5636 18H5.43638Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M4.93045 16.2878C4.75387 16.4552 4.54343 16.5224 4.29913 16.4894C4.05482 16.4564 3.85704 16.3505 3.70579 16.1717C3.15406 15.479 2.73184 14.7272 2.43911 13.9163C2.14637 13.1054 2 12.2408 2 11.3227C2 10.2372 2.20905 9.22267 2.62716 8.27898C3.04526 7.33531 3.61987 6.50683 4.35101 5.79354C5.08213 5.08027 5.9349 4.5197 6.90932 4.11183C7.88374 3.70394 8.91396 3.5 10 3.5C11.11 3.5 12.1476 3.70394 13.1127 4.11183C14.0778 4.5197 14.925 5.08027 15.6545 5.79354C16.3839 6.50683 16.9572 7.33531 17.3743 8.27898C17.7914 9.22267 18 10.2372 18 11.3227C18 12.2355 17.8536 13.1057 17.5609 13.933C17.2682 14.7605 16.8389 15.5136 16.273 16.1925C16.1217 16.3713 15.9226 16.4724 15.6756 16.4958C15.4285 16.5192 15.218 16.4457 15.0439 16.2755C14.8502 16.0861 14.7574 15.8844 14.7656 15.6706C14.7737 15.4567 14.8534 15.2534 15.0047 15.0608C15.422 14.5592 15.7497 13.9906 15.9878 13.3551C16.2258 12.7195 16.3448 12.0421 16.3448 11.3227C16.3448 9.60735 15.7259 8.14449 14.4881 6.93408C13.2502 5.72367 11.7542 5.11847 10 5.11847C8.2458 5.11847 6.74977 5.72367 5.51192 6.93408C4.27408 8.14449 3.65516 9.60735 3.65516 11.3227C3.65516 12.0378 3.76773 12.7142 3.99288 13.3521C4.21804 13.99 4.53531 14.5692 4.94471 15.0896C5.08182 15.2822 5.15663 15.4882 5.16913 15.7077C5.18165 15.9271 5.10209 16.1205 4.93045 16.2878ZM7.09491 14.1634C6.91833 14.336 6.71986 14.4093 6.49949 14.3833C6.27914 14.3572 6.09769 14.2644 5.95513 14.1047C5.6526 13.7163 5.42706 13.2873 5.27852 12.8177C5.12998 12.348 5.05571 11.8497 5.05571 11.3227C5.05571 9.97341 5.5348 8.83031 6.49298 7.89339C7.45114 6.95645 8.62015 6.48798 10 6.48798C11.3799 6.48798 12.5489 6.95645 13.507 7.89339C14.4652 8.83031 14.9443 9.97341 14.9443 11.3227C14.9443 11.8494 14.8665 12.3498 14.7109 12.8238C14.5553 13.2979 14.3191 13.7387 14.0024 14.1462C13.874 14.3112 13.7032 14.4005 13.4899 14.4144C13.2766 14.4282 13.0817 14.3488 12.9051 14.1762C12.728 14.003 12.6422 13.8169 12.6476 13.6179C12.6531 13.4189 12.7031 13.212 12.7978 12.997C12.9632 12.7651 13.0864 12.5087 13.1675 12.228C13.2486 11.9472 13.2891 11.6455 13.2891 11.3227C13.2891 10.4285 12.9695 9.66895 12.3304 9.04395C11.6912 8.41895 10.9144 8.10645 10 8.10645C9.08558 8.10645 8.30878 8.41895 7.66962 9.04395C7.03045 9.66895 6.71087 10.4285 6.71087 11.3227C6.71087 11.6372 6.7514 11.9369 6.83248 12.2218C6.91355 12.5066 7.03679 12.7651 7.2022 12.997C7.29687 13.212 7.34693 13.4168 7.35237 13.6115C7.35782 13.8063 7.272 13.9902 7.09491 14.1634ZM10 12.6714C9.61945 12.6714 9.29443 12.5396 9.02495 12.2761C8.75546 12.0126 8.62071 11.6948 8.62071 11.3227C8.62071 10.9506 8.75546 10.6327 9.02495 10.3692C9.29443 10.1057 9.61945 9.97395 10 9.97395C10.3805 9.97395 10.7056 10.1057 10.975 10.3692C11.2445 10.6327 11.3793 10.9506 11.3793 11.3227C11.3793 11.6948 11.2445 12.0126 10.975 12.2761C10.7056 12.5396 10.3805 12.6714 10 12.6714Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M3.68799 17C3.21662 17 2.81745 16.8344 2.49047 16.5032C2.16349 16.1719 2 15.7675 2 15.2901V8.50126C2 8.29867 2.07114 8.12495 2.21342 7.9801C2.3557 7.83525 2.52632 7.76282 2.72527 7.76282C2.92423 7.76282 3.09607 7.83525 3.24079 7.9801C3.38554 8.12495 3.45791 8.29867 3.45791 8.50126V15.2901C3.45791 15.358 3.47948 15.4139 3.52262 15.4576C3.56576 15.5013 3.62088 15.5231 3.68799 15.5231H15.3271C15.5271 15.5231 15.6986 15.5952 15.8416 15.7393C15.9846 15.8835 16.0561 16.0563 16.0561 16.2578C16.0561 16.4594 15.9846 16.6334 15.8416 16.7801C15.6986 16.9267 15.5271 17 15.3271 17H3.68799ZM6.4917 14.1598C6.02033 14.1598 5.62116 13.9942 5.29418 13.663C4.9672 13.3317 4.80371 12.9274 4.80371 12.4499V4.70996C4.80371 4.22363 4.9672 3.81705 5.29418 3.49024C5.62116 3.16341 6.02033 3 6.4917 3H9.18905C9.41155 3 9.62652 3.04176 9.83399 3.12527C10.0415 3.20877 10.2315 3.33792 10.404 3.5127L11.6923 4.81773H16.312C16.7921 4.81773 17.1934 4.98115 17.5161 5.30797C17.8387 5.63479 18 6.04136 18 6.52769V12.4499C18 12.9274 17.8387 13.3317 17.5161 13.663C17.1934 13.9942 16.7921 14.1598 16.312 14.1598H6.4917Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 13.5556V6.44444C18 5.46667 17.28 4.66667 16.4 4.66667H3.6C2.72 4.66667 2 5.46667 2 6.44444V13.5556C2 14.5333 2.72 15.3333 3.6 15.3333H16.4C17.28 15.3333 18 14.5333 18 13.5556ZM9.15812 12.5752L12.3802 10.5145C12.5712 10.3907 12.6667 10.2189 12.6667 9.99892C12.6667 9.77896 12.5712 9.60782 12.3802 9.48552L9.15812 7.42484C8.94766 7.30253 8.73906 7.30283 8.53232 7.42573C8.32559 7.54865 8.22222 7.72582 8.22222 7.95725V12.0428C8.22222 12.2742 8.32559 12.4514 8.53232 12.5743C8.73906 12.6972 8.94766 12.6975 9.15812 12.5752Z" fill="#6265AD"/>
|
|
3
|
-
<path d="M4.66667 3.77778H15.3333C15.8243 3.77778 16.2222 3.37981 16.2222 2.88889C16.2222 2.39797 15.8243 2 15.3333 2H4.66667C4.17575 2 3.77778 2.39797 3.77778 2.88889C3.77778 3.37981 4.17575 3.77778 4.66667 3.77778Z" fill="#6265AD"/>
|
|
4
|
-
<path d="M4.66667 18H15.3333C15.8243 18 16.2222 17.602 16.2222 17.1111C16.2222 16.6202 15.8243 16.2222 15.3333 16.2222H4.66667C4.17575 16.2222 3.77778 16.6202 3.77778 17.1111C3.77778 17.602 4.17575 18 4.66667 18Z" fill="#6265AD"/>
|
|
5
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M3.47174 4.03302C3.55765 4.01126 3.64589 4.05379 3.68725 4.13218L5.17287 6.94787C5.20748 7.01348 5.27557 7.05454 5.34976 7.05454H7.28398C7.43501 7.05454 7.53154 6.89355 7.4604 6.76033L6.14355 4.29421C6.07241 4.16098 6.16894 4 6.31997 4H7.45808C7.53226 4 7.60035 4.04106 7.63497 4.10667L9.13404 6.94787C9.16866 7.01348 9.23675 7.05454 9.31093 7.05454H11.2452C11.3962 7.05454 11.4927 6.89355 11.4216 6.76033L10.1047 4.29421C10.0336 4.16098 10.1301 4 10.2811 4H11.4193C11.4934 4 11.5615 4.04106 11.5961 4.10667L13.0952 6.94787C13.1298 7.01348 13.1979 7.05454 13.2721 7.05454H15.2063C15.3574 7.05454 15.4539 6.89355 15.3828 6.76033L14.0659 4.29421C13.9948 4.16098 14.0913 4 14.2423 4H16.091C16.6257 4 17.0775 4.17273 17.4465 4.51818C17.8154 4.86364 17.9999 5.28672 17.9999 5.78742V14.2126C17.9999 14.7133 17.8154 15.1364 17.4465 15.4818C17.0775 15.8273 16.6257 16 16.091 16H3.90878C3.37404 16 2.92221 15.8273 2.55328 15.4818C2.18434 15.1364 1.99988 14.7133 1.99988 14.2126V5.78742C1.99988 5.28672 2.14875 4.88788 2.44648 4.59091C2.71366 4.32442 3.05541 4.13846 3.47174 4.03302Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M6.07708 14.071C6.32302 14.071 6.53457 13.984 6.71173 13.8101C6.88887 13.6361 6.97745 13.4267 6.97745 13.1819C6.97745 12.937 6.89011 12.7264 6.71543 12.55C6.54075 12.3736 6.33044 12.2854 6.08452 12.2854C5.83857 12.2854 5.62703 12.3723 5.44987 12.5463C5.27272 12.7202 5.18415 12.9296 5.18415 13.1745C5.18415 13.4193 5.27149 13.63 5.44617 13.8064C5.62085 13.9828 5.83115 14.071 6.07708 14.071ZM6.02417 6.01725C5.80914 6.01725 5.62341 6.09419 5.46698 6.24807C5.31055 6.40194 5.23233 6.58648 5.23233 6.80172V10.7319C5.23233 10.9471 5.30922 11.1317 5.463 11.2856C5.61678 11.4394 5.80118 11.5164 6.01621 11.5164C6.23124 11.5164 6.41697 11.4394 6.5734 11.2856C6.72984 11.1317 6.80805 10.9471 6.80805 10.7319V6.80172C6.80805 6.58648 6.73116 6.40194 6.57738 6.24807C6.42361 6.09419 6.2392 6.01725 6.02417 6.01725ZM14.1818 13.9827C14.398 13.9827 14.5833 13.9062 14.7379 13.7531C14.8924 13.6 14.9697 13.4164 14.9697 13.2022C14.9697 12.9881 14.8924 12.8032 14.7379 12.6475C14.5833 12.4917 14.398 12.4138 14.1818 12.4138H10.2222C10.0061 12.4138 9.82071 12.4904 9.66618 12.6435C9.51163 12.7966 9.43436 12.9802 9.43436 13.1943C9.43436 13.4084 9.51163 13.5934 9.66618 13.7491C9.82071 13.9049 10.0061 13.9827 10.2222 13.9827H14.1818ZM14.1818 10.7643C14.398 10.7643 14.5833 10.6878 14.7379 10.5347C14.8924 10.3816 14.9697 10.198 14.9697 9.98385C14.9697 9.76974 14.8924 9.58481 14.7379 9.42906C14.5833 9.2733 14.398 9.19542 14.1818 9.19542H10.2222C10.0061 9.19542 9.82071 9.27198 9.66618 9.42509C9.51163 9.57821 9.43436 9.76182 9.43436 9.97592C9.43436 10.19 9.51163 10.375 9.66618 10.5307C9.82071 10.6865 10.0061 10.7643 10.2222 10.7643H14.1818ZM14.1818 7.58618C14.398 7.58618 14.5833 7.50962 14.7379 7.35651C14.8924 7.20339 14.9697 7.01978 14.9697 6.80568C14.9697 6.59157 14.8924 6.40664 14.7379 6.25089C14.5833 6.09513 14.398 6.01725 14.1818 6.01725H10.2222C10.0061 6.01725 9.82071 6.09381 9.66618 6.24692C9.51163 6.40004 9.43436 6.58365 9.43436 6.79775C9.43436 7.01186 9.51163 7.19679 9.66618 7.35254C9.82071 7.5083 10.0061 7.58618 10.2222 7.58618H14.1818ZM3.82441 17C3.31252 17 2.88047 16.8247 2.52828 16.474C2.17609 16.1233 2 15.6931 2 15.1835V4.81655C2 4.30686 2.17609 3.87668 2.52828 3.52601C2.88047 3.17534 3.31252 3 3.82441 3H16.1756C16.6875 3 17.1195 3.17534 17.4717 3.52601C17.8239 3.87668 18 4.30686 18 4.81655V15.1835C18 15.6931 17.8239 16.1233 17.4717 16.474C17.1195 16.8247 16.6875 17 16.1756 17H3.82441Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.7747 16C12.0669 16 11.461 15.756 10.957 15.2681C10.4529 14.7802 10.2009 14.1933 10.2009 13.5074C10.2009 12.8215 10.4527 12.2278 10.9563 11.7263C11.46 11.2248 12.0658 10.974 12.7738 10.974C12.9273 10.974 13.076 10.9963 13.2198 11.0407C13.3636 11.0852 13.5098 11.1519 13.6582 11.2408V4.81816C13.6582 4.58764 13.7394 4.39365 13.9019 4.23618C14.0644 4.07873 14.2645 4 14.5024 4H17.0273C17.2912 4 17.5193 4.09203 17.7115 4.2761C17.9038 4.46016 17.9999 4.68231 17.9999 4.94255C17.9999 5.19829 17.9038 5.41932 17.7115 5.60563C17.5193 5.79194 17.2912 5.8851 17.0273 5.8851H15.3868V13.5065C15.3868 14.1926 15.1284 14.7798 14.6115 15.2679C14.0947 15.756 13.4824 16 12.7747 16ZM2.86418 5.67529C2.62633 5.67529 2.42281 5.59329 2.25365 5.42929C2.08447 5.26528 1.99988 5.06798 1.99988 4.83739C1.99988 4.60679 2.08447 4.40958 2.25365 4.24575C2.42281 4.08192 2.62633 4 2.86418 4H10.7436C10.9815 4 11.185 4.082 11.3542 4.246C11.5233 4.41001 11.6079 4.60731 11.6079 4.8379C11.6079 5.0685 11.5233 5.26571 11.3542 5.42954C11.185 5.59338 10.9815 5.67529 10.7436 5.67529H2.86418ZM2.86418 9.1818C2.62633 9.1818 2.42281 9.09979 2.25365 8.93579C2.08447 8.77178 1.99988 8.57448 1.99988 8.3439C1.99988 8.1133 2.08447 7.91608 2.25365 7.75225C2.42281 7.58842 2.62633 7.5065 2.86418 7.5065H10.7436C10.9815 7.5065 11.185 7.58851 11.3542 7.75251C11.5233 7.91652 11.6079 8.11382 11.6079 8.3444C11.6079 8.575 11.5233 8.77222 11.3542 8.93605C11.185 9.09988 10.9815 9.1818 10.7436 9.1818H2.86418ZM2.86418 12.6493C2.62633 12.6493 2.42281 12.5673 2.25365 12.4033C2.08447 12.2393 1.99988 12.042 1.99988 11.8114C1.99988 11.5808 2.08447 11.3836 2.25365 11.2198C2.42281 11.056 2.62633 10.974 2.86418 10.974H7.52751C7.76537 10.974 7.96888 11.056 8.13804 11.22C8.30722 11.3841 8.39181 11.5814 8.39181 11.8119C8.39181 12.0425 8.30722 12.2398 8.13804 12.4036C7.96888 12.5674 7.76537 12.6493 7.52751 12.6493H2.86418Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.9489 12.4265C7.88865 12.6095 8.09636 12.7635 8.2539 12.6527L9.94196 11.4658C9.97672 11.4414 10.0231 11.4416 10.0577 11.4663L11.702 12.6435C11.8593 12.7561 12.0689 12.602 12.0084 12.4183L11.3827 10.5188C11.3691 10.4778 11.3835 10.4327 11.4183 10.407L13.1099 9.16103C13.2653 9.04652 13.1843 8.8 12.9913 8.8H10.9513C10.9086 8.8 10.8707 8.77294 10.8567 8.73262L10.1891 6.79784C10.1271 6.61817 9.87295 6.61817 9.81094 6.79784L9.14325 8.73262C9.12934 8.77294 9.09138 8.8 9.04872 8.8H7C6.8078 8.8 6.72624 9.04468 6.88 9.16L8.54255 10.4069C8.57688 10.4327 8.59096 10.4774 8.57753 10.5182L7.9489 12.4265ZM3.6 16C3.16 16 2.78333 15.8531 2.47 15.5594C2.15667 15.2656 2 14.9125 2 14.5V11.5C2.44 11.5 2.81667 11.3531 3.13 11.0594C3.44333 10.7656 3.6 10.4125 3.6 10C3.6 9.5875 3.44333 9.23438 3.13 8.94063C2.81667 8.64687 2.44 8.5 2 8.5V5.5C2 5.0875 2.15667 4.73438 2.47 4.44063C2.78333 4.14688 3.16 4 3.6 4H16.4C16.84 4 17.2167 4.14688 17.53 4.44063C17.8433 4.73438 18 5.0875 18 5.5V8.5C17.56 8.5 17.1833 8.64687 16.87 8.94063C16.5567 9.23438 16.4 9.5875 16.4 10C16.4 10.4125 16.5567 10.7656 16.87 11.0594C17.1833 11.3531 17.56 11.5 18 11.5V14.5C18 14.9125 17.8433 15.2656 17.53 15.5594C17.2167 15.8531 16.84 16 16.4 16H3.6Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M10.0467 14.8963L12.371 9.42478C12.4483 9.26701 12.4454 9.12678 12.3625 9.00408C12.2795 8.88137 12.1572 8.82002 11.9955 8.82002H10.4272V5.107C10.4272 4.97905 10.3682 4.90521 10.2502 4.88548C10.1322 4.86574 10.0526 4.90423 10.0116 5.00094L7.68722 10.4672C7.60997 10.6253 7.61284 10.7657 7.6958 10.8884C7.77875 11.0111 7.90108 11.0724 8.06277 11.0724H9.63109V14.7905C9.63109 14.9181 9.69008 14.9917 9.80808 15.0114C9.92607 15.0312 10.0056 14.9928 10.0467 14.8963ZM10.0013 18C8.89481 18 7.85478 17.79 6.88122 17.3701C5.90763 16.9502 5.06076 16.3803 4.34059 15.6604C3.62041 14.9405 3.05026 14.094 2.63016 13.1208C2.21005 12.1476 2 11.1078 2 10.0013C2 8.8915 2.21035 7.84835 2.63105 6.87186C3.05175 5.89538 3.62269 5.04596 4.34387 4.32362C5.06506 3.60129 5.91159 3.03343 6.88345 2.62006C7.8553 2.20669 8.89371 2 9.9987 2C11.1084 2 12.1514 2.2066 13.1278 2.61981C14.1042 3.03301 14.9536 3.60072 15.6761 4.32292C16.3986 5.04513 16.9666 5.8944 17.3799 6.87073C17.7933 7.84706 18 8.89025 18 10.0003C18 11.1104 17.7934 12.15 17.3802 13.1192C16.967 14.0884 16.3994 14.9337 15.6773 15.6552C14.9553 16.3766 14.1062 16.9478 13.1301 17.3687C12.1541 17.7896 11.1111 18 10.0013 18Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M6.85048 14.1707C7.09966 14.1707 7.31398 14.0822 7.49346 13.9052C7.67295 13.7283 7.76269 13.5152 7.76269 13.266C7.76269 13.0168 7.6742 12.8025 7.49723 12.623C7.32025 12.4436 7.10717 12.3538 6.85799 12.3538C6.60883 12.3538 6.3945 12.4423 6.21501 12.6193C6.03554 12.7963 5.9458 13.0093 5.9458 13.2585C5.9458 13.5077 6.03429 13.722 6.21127 13.9015C6.38825 14.081 6.60132 14.1707 6.85048 14.1707ZM6.85048 10.9084C7.09966 10.9084 7.31398 10.82 7.49346 10.643C7.67295 10.466 7.76269 10.2529 7.76269 10.0038C7.76269 9.75459 7.6742 9.54026 7.49723 9.36077C7.32025 9.18129 7.10717 9.09155 6.85799 9.09155C6.60883 9.09155 6.3945 9.18004 6.21501 9.35702C6.03554 9.534 5.9458 9.74707 5.9458 9.99623C5.9458 10.2454 6.03429 10.4597 6.21127 10.6392C6.38825 10.8187 6.60132 10.9084 6.85048 10.9084ZM6.85048 7.60526C7.09966 7.60526 7.31398 7.51677 7.49346 7.33979C7.67295 7.16281 7.76269 6.94973 7.76269 6.70056C7.76269 6.45139 7.6742 6.23707 7.49723 6.05758C7.32025 5.87809 7.10717 5.78834 6.85799 5.78834C6.60883 5.78834 6.3945 5.87684 6.21501 6.05383C6.03554 6.23081 5.9458 6.44388 5.9458 6.69304C5.9458 6.94222 6.03429 7.15655 6.21127 7.33602C6.38825 7.51551 6.60132 7.60526 6.85048 7.60526ZM9.7717 14.081H13.245C13.464 14.081 13.6517 14.0031 13.8083 13.8472C13.9649 13.6914 14.0432 13.5046 14.0432 13.2868C14.0432 13.0689 13.9649 12.8807 13.8083 12.7222C13.6517 12.5637 13.464 12.4845 13.245 12.4845H9.7717C9.55269 12.4845 9.3649 12.5624 9.20832 12.7182C9.05174 12.874 8.97345 13.0608 8.97345 13.2787C8.97345 13.4966 9.05174 13.6847 9.20832 13.8432C9.3649 14.0017 9.55269 14.081 9.7717 14.081ZM9.7717 10.7778H13.245C13.464 10.7778 13.6517 10.6999 13.8083 10.5441C13.9649 10.3883 14.0432 10.2014 14.0432 9.98356C14.0432 9.7657 13.9649 9.57753 13.8083 9.41904C13.6517 9.26055 13.464 9.1813 13.245 9.1813H9.7717C9.55269 9.1813 9.3649 9.25921 9.20832 9.41501C9.05174 9.57081 8.97345 9.75764 8.97345 9.9755C8.97345 10.1934 9.05174 10.3815 9.20832 10.54C9.3649 10.6985 9.55269 10.7778 9.7717 10.7778ZM9.7717 7.5155H13.245C13.464 7.5155 13.6517 7.4376 13.8083 7.2818C13.9649 7.126 14.0432 6.93917 14.0432 6.72131C14.0432 6.50345 13.9649 6.31527 13.8083 6.15678C13.6517 5.99828 13.464 5.91903 13.245 5.91903H9.7717C9.55269 5.91903 9.3649 5.99694 9.20832 6.15275C9.05174 6.30855 8.97345 6.49538 8.97345 6.71325C8.97345 6.93111 9.05174 7.11928 9.20832 7.27777C9.3649 7.43626 9.55269 7.5155 9.7717 7.5155ZM4.84841 17C4.32979 17 3.89206 16.8216 3.53524 16.4648C3.17841 16.1079 3 15.6702 3 15.1516V4.84842C3 4.32979 3.17841 3.89206 3.53524 3.53524C3.89206 3.17841 4.32979 3 4.84841 3H15.1516C15.6702 3 16.1079 3.17841 16.4648 3.53524C16.8216 3.89206 17 4.32979 17 4.84842V15.1516C17 15.6702 16.8216 16.1079 16.4648 16.4648C16.1079 16.8216 15.6702 17 15.1516 17H4.84841Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.20432 16.2688C2.34052 16.4229 2.50453 16.5 2.69636 16.5H17.3036C17.4955 16.5 17.6595 16.4229 17.7957 16.2688C17.9319 16.1147 18 15.9291 18 15.712C18 15.4949 17.9319 15.3093 17.7957 15.1552C17.6595 15.0011 17.4955 14.924 17.3036 14.924H15.08V14.1289C15.523 14.1289 15.8991 13.954 16.2083 13.6041C16.5175 13.2543 16.672 12.8287 16.672 12.3274V5.30156C16.672 4.80026 16.5175 4.37467 16.2083 4.0248C15.8991 3.67493 15.523 3.5 15.08 3.5H4.91997C4.47697 3.5 4.10088 3.67493 3.79171 4.0248C3.48253 4.37467 3.32794 4.80026 3.32794 5.30156V12.3274C3.32794 12.8287 3.48253 13.2543 3.79171 13.6041C4.10088 13.954 4.47697 14.1289 4.91997 14.1289V14.924H2.69636C2.50453 14.924 2.34051 15.0011 2.20431 15.1552C2.0681 15.3093 2 15.4949 2 15.712C2 15.9291 2.06811 16.1147 2.20432 16.2688ZM8.52865 11.3187C8.69437 11.4091 8.85678 11.4014 9.01589 11.2956L12.0574 9.34992C12.2059 9.25742 12.2801 9.12201 12.2801 8.94369C12.2801 8.76536 12.2059 8.62995 12.0574 8.53745L9.01589 6.59182C8.85678 6.48596 8.69437 6.47825 8.52865 6.56869C8.36294 6.65914 8.28008 6.80021 8.28008 6.99189V10.8955C8.28008 11.0872 8.36294 11.2282 8.52865 11.3187Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M6.04478 18C5.47306 18 4.98588 17.7913 4.58324 17.3739C4.1806 16.9564 3.97928 16.4496 3.97928 15.8533C3.97928 15.257 4.17975 14.7488 4.5807 14.3289C4.98165 13.9089 5.46852 13.6989 6.0413 13.6989C6.16219 13.6989 6.28204 13.7115 6.40087 13.7366C6.51969 13.7618 6.63958 13.7995 6.76054 13.8498L7.9203 12.3583C7.70121 12.0698 7.55339 11.7758 7.47683 11.4762C7.40029 11.1767 7.36539 10.8434 7.37216 10.4764L5.71883 9.90602C5.53104 10.1725 5.29105 10.3838 4.99886 10.5399C4.70667 10.6961 4.39429 10.7742 4.06174 10.7742C3.489 10.7742 3.00218 10.5655 2.60126 10.1481C2.20034 9.73063 1.99988 9.22377 1.99988 8.62746C1.99988 8.03115 2.20026 7.52302 2.60103 7.10306C3.0018 6.6831 3.48845 6.47312 4.06098 6.47312C4.61976 6.47312 5.10047 6.67718 5.50311 7.0853C5.90575 7.49343 6.11257 7.989 6.12358 8.57203C6.12358 8.58968 6.12252 8.60071 6.12041 8.60512C6.1183 8.60953 6.11724 8.61395 6.11724 8.61836L7.78072 9.23639C7.95158 8.95407 8.17109 8.70726 8.43924 8.49597C8.70738 8.28467 9.01401 8.12608 9.35913 8.0202V6.18326C8.93449 6.04475 8.59149 5.78991 8.33011 5.41874C8.06873 5.04757 7.93805 4.62392 7.93805 4.14779C7.93805 3.55298 8.13814 3.04631 8.53834 2.62779C8.93855 2.20926 9.42451 2 9.99622 2C10.5679 2 11.0551 2.20908 11.4578 2.62724C11.8604 3.04539 12.0617 3.55315 12.0617 4.15052C12.0617 4.62483 11.9321 5.04757 11.6728 5.41874C11.4136 5.78991 11.0695 6.04475 10.6406 6.18326V8.0202C10.9968 8.12608 11.3051 8.27893 11.5656 8.47877C11.8261 8.67859 12.044 8.93113 12.2191 9.23639L13.8825 8.61836C13.8783 8.59806 13.8762 8.58872 13.8762 8.59034V8.57203C13.8982 7.989 14.107 7.49343 14.5027 7.0853C14.8984 6.67718 15.3788 6.47312 15.9441 6.47312C16.5093 6.47312 16.9933 6.68183 17.3959 7.09924C17.7986 7.51666 17.9999 8.02353 17.9999 8.61983C17.9999 9.21614 17.7994 9.72427 17.3985 10.1442C16.9976 10.5642 16.5108 10.7742 15.938 10.7742C15.6069 10.7742 15.2959 10.6961 15.0051 10.5399C14.7143 10.3838 14.473 10.1725 14.2809 9.90602L12.6111 10.4764C12.6179 10.8434 12.5857 11.1778 12.5147 11.4795C12.4436 11.7813 12.2986 12.072 12.0795 12.3517L13.2392 13.8326C13.3602 13.7867 13.4801 13.753 13.5989 13.7314C13.7177 13.7097 13.8376 13.6989 13.9585 13.6989C14.5313 13.6989 15.0181 13.9076 15.4191 14.3251C15.82 14.7425 16.0205 15.2493 16.0205 15.8456C16.0205 16.442 15.8204 16.9501 15.4202 17.37C15.02 17.79 14.534 18 13.9623 18C13.3906 18 12.9034 17.7909 12.5008 17.3727C12.0981 16.9546 11.8968 16.4468 11.8968 15.8495C11.8968 15.6325 11.9222 15.4293 11.9729 15.24C12.0237 15.0508 12.1104 14.8666 12.233 14.6875L11.1063 13.1828C10.7753 13.3469 10.4086 13.4289 10.006 13.4289C9.60353 13.4289 9.23479 13.3469 8.89983 13.1828L7.76673 14.6875C7.88515 14.8666 7.9708 15.0508 8.02367 15.24C8.07653 15.4293 8.10296 15.6325 8.10296 15.8495C8.10296 16.4468 7.90286 16.9546 7.50266 17.3727C7.10245 17.7909 6.61649 18 6.04478 18Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 8C17 10.3846 15.8076 12.4908 13.9865 13.7547L14.8478 17.993C14.8478 18.3127 14.7227 18.5743 14.4724 18.7777C14.2221 18.9811 13.947 19.0449 13.6471 18.9691L9.93478 18.1501L6.20068 18.9691C5.90079 19.0449 5.62571 18.9811 5.37544 18.7777C5.12514 18.5743 5 18.3127 5 17.993L5.89872 13.6733C4.14246 12.4015 3 10.3342 3 8C3 4.13401 6.13401 1 10 1C13.866 1 17 4.13401 17 8ZM10 11C11.6569 11 13 9.65685 13 8C13 6.34315 11.6569 5 10 5C8.34315 5 7 6.34315 7 8C7 9.65685 8.34315 11 10 11Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M13.6683 8.97759C13.8722 8.8434 13.9742 8.65806 13.9742 8.42156C13.9742 8.18506 13.8722 7.99884 13.6683 7.86287L10.2864 5.66693C10.0629 5.51886 9.83516 5.51281 9.60328 5.64877C9.37139 5.78473 9.25544 5.98263 9.25544 6.24246V10.598C9.25544 10.8578 9.37139 11.0557 9.60328 11.1917C9.83516 11.3277 10.0629 11.3216 10.2864 11.1735L13.6683 8.97759ZM7.29977 14.4856C6.803 14.4856 6.38127 14.3123 6.03457 13.9656C5.68787 13.6189 5.51452 13.1971 5.51452 12.7004V4.28538C5.51452 3.78861 5.68787 3.36688 6.03457 3.02019C6.38127 2.67348 6.803 2.50012 7.29977 2.50012H15.7148C16.2115 2.50012 16.6332 2.67348 16.9799 3.02019C17.3266 3.36688 17.5 3.78861 17.5 4.28538V12.7004C17.5 13.1971 17.3266 13.6189 16.9799 13.9656C16.6332 14.3123 16.2115 14.4856 15.7148 14.4856H7.29977ZM4.28524 17.5001C3.78849 17.5001 3.36675 17.3268 3.02004 16.9801C2.67335 16.6334 2.5 16.2116 2.5 15.7149V6.51903C2.5 6.30391 2.57636 6.11999 2.72909 5.96726C2.88181 5.81454 3.06574 5.73818 3.28086 5.73818C3.49598 5.73818 3.67991 5.81454 3.83265 5.96726C3.98537 6.11999 4.06173 6.30391 4.06173 6.51903V15.7149C4.06173 15.7708 4.08501 15.822 4.13158 15.8685C4.17815 15.9151 4.22937 15.9384 4.28524 15.9384H13.4811C13.6962 15.9384 13.8801 16.0148 14.0329 16.1675C14.1856 16.3202 14.262 16.5041 14.262 16.7193C14.262 16.9344 14.1856 17.1183 14.0329 17.271C13.8801 17.4238 13.6962 17.5001 13.4811 17.5001H4.28524Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M3.48233 7.08197L2.12612 6.45008C2.04204 6.40949 2 6.33991 2 6.24134C2 6.14277 2.04204 6.07319 2.12612 6.0326L3.48233 5.40071L4.10009 4.01341C4.13976 3.92741 4.20777 3.8844 4.30413 3.8844C4.4005 3.8844 4.46852 3.92741 4.50819 4.01341L5.12594 5.40071L6.48216 6.0326C6.56624 6.07319 6.60827 6.14277 6.60827 6.24134C6.60827 6.33991 6.56624 6.40949 6.48216 6.45008L5.12594 7.08197L4.50819 8.46927C4.46852 8.55528 4.4005 8.59828 4.30413 8.59828C4.20777 8.59828 4.13976 8.55528 4.10009 8.46927L3.48233 7.08197ZM13.977 4.20473L13.131 3.81915C13.0469 3.77437 13.0049 3.70238 13.0049 3.60318C13.0049 3.50397 13.0469 3.43198 13.131 3.3872L13.977 3.00162L14.3539 2.12901C14.3977 2.043 14.4681 2 14.5651 2C14.662 2 14.7324 2.043 14.7762 2.12901L15.1602 3.00162L16.0062 3.3872C16.0903 3.43198 16.1323 3.50397 16.1323 3.60318C16.1323 3.70238 16.0903 3.77437 16.0062 3.81915L15.1602 4.20473L14.7762 5.07734C14.7324 5.16335 14.662 5.20635 14.5651 5.20635C14.4681 5.20635 14.3977 5.16335 14.3539 5.07734L13.977 4.20473ZM15.8517 8.35042L14.9987 7.96483C14.9146 7.92006 14.8725 7.84807 14.8725 7.74886C14.8725 7.64966 14.9146 7.57766 14.9987 7.53289L15.8517 7.14731L16.2287 6.27469C16.2724 6.18869 16.3428 6.14569 16.4398 6.14569C16.5368 6.14569 16.6072 6.18869 16.651 6.27469L17.0279 7.14731L17.8739 7.53289C17.958 7.57766 18 7.64966 18 7.74886C18 7.84807 17.958 7.92006 17.8739 7.96483L17.0279 8.35042L16.651 9.22303C16.6072 9.30904 16.5368 9.35204 16.4398 9.35204C16.3428 9.35204 16.2724 9.30904 16.2287 9.22303L15.8517 8.35042ZM9.99863 12.2714C9.3718 12.2714 8.84015 12.0487 8.40369 11.6033C7.96724 11.1579 7.74901 10.6143 7.74901 9.97246V5.4122C7.74901 4.77039 7.96652 4.22677 8.40153 3.78136C8.83653 3.33595 9.36745 3.11325 9.99428 3.11325C10.6211 3.11325 11.1528 3.33595 11.5892 3.78136C12.0257 4.22677 12.2439 4.77039 12.2439 5.4122V9.97246C12.2439 10.6143 12.0264 11.1579 11.5914 11.6033C11.1564 12.0487 10.6255 12.2714 9.99863 12.2714ZM9.97803 18C9.75981 18 9.57323 17.9208 9.4183 17.7623C9.26338 17.6038 9.18591 17.413 9.18591 17.1897V15.5937C8.05982 15.4498 7.03647 14.9446 6.11584 14.0783C5.19523 13.2119 4.67021 12.1878 4.54079 11.006C4.49355 10.7074 4.53393 10.4605 4.66194 10.2653C4.78994 10.0701 5.01738 9.97246 5.34424 9.97246C5.51665 9.97246 5.67075 10.0353 5.80656 10.1609C5.94235 10.2865 6.03623 10.4532 6.08819 10.661C6.2469 11.6167 6.69127 12.413 7.42129 13.0498C8.15131 13.6867 9.0097 14.0051 9.99645 14.0051C10.9832 14.0051 11.8416 13.6867 12.5716 13.0498C13.3016 12.413 13.746 11.6167 13.9047 10.661C13.9567 10.4532 14.0497 10.2865 14.1839 10.1609C14.318 10.0353 14.4767 9.97246 14.66 9.97246C14.9547 9.97246 15.1753 10.0763 15.3218 10.2841C15.4682 10.4919 15.5116 10.7388 15.4521 11.0248C15.249 12.2192 14.7179 13.2402 13.8586 14.0877C12.9994 14.9352 11.9699 15.4372 10.7702 15.5937V17.1897C10.7702 17.413 10.6927 17.6038 10.5378 17.7623C10.3828 17.9208 10.1963 18 9.97803 18Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M13.1817 12.0915C12.5205 12.0915 11.9551 11.859 11.4855 11.3939C11.0159 10.9287 10.7811 10.3687 10.7811 9.71373C10.7811 9.05878 11.0159 8.49873 11.4855 8.0336C11.9551 7.56848 12.5205 7.33592 13.1817 7.33592C13.843 7.33592 14.4084 7.56848 14.878 8.0336C15.3475 8.49873 15.5823 9.05878 15.5823 9.71373C15.5823 10.3687 15.3475 10.9287 14.878 11.3939C14.4084 11.859 13.843 12.0915 13.1817 12.0915ZM9.27317 18C9.02245 18 8.80815 17.9119 8.63027 17.7357C8.45238 17.5595 8.36344 17.3472 8.36344 17.0989V15.4825C8.36344 15.1982 8.43247 14.9376 8.57053 14.7007C8.70861 14.4639 8.89787 14.2716 9.13832 14.124C9.57742 13.8866 9.93155 13.7172 10.2007 13.6159C10.4698 13.5146 10.8488 13.4193 11.3375 13.33C11.5264 13.3046 11.7098 13.3102 11.8879 13.3466C12.0659 13.383 12.2187 13.4728 12.3464 13.6159L13.1817 14.692L14.0171 13.6159C14.1411 13.4931 14.2927 13.4084 14.4719 13.3618C14.6512 13.3153 14.8365 13.3046 15.0278 13.33C15.5204 13.4193 15.9029 13.511 16.1753 13.6051C16.4476 13.6992 16.8068 13.8722 17.253 14.124C17.4937 14.258 17.6771 14.443 17.8032 14.6789C17.9292 14.9148 17.9948 15.1668 18 15.4349V17.0989C18 17.3472 17.9111 17.5595 17.7332 17.7357C17.5553 17.9119 17.341 18 17.0903 18H9.27317Z" fill="#6265AD"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 4C2 2.89543 2.89543 2 4 2H14C15.1046 2 16 2.89543 16 4V6.85418C15.2671 6.02375 14.1947 5.5 13 5.5C10.7909 5.5 9 7.29086 9 9.5C9 10.2997 9.23468 11.0446 9.63894 11.6696C7.78777 12.4938 6.6001 13.7689 6.6001 15.2C6.6001 15.473 6.64332 15.7404 6.72614 16H4C2.89543 16 2 15.1046 2 14V4ZM4.4767 9.97336C4.79449 10.2578 5.17352 10.4001 5.61379 10.4001C6.05406 10.4001 6.43309 10.2578 6.75089 9.97336C7.06868 9.68889 7.22757 9.3496 7.22757 8.95549V5.45118H7.98941C8.21977 5.45118 8.41245 5.38162 8.56747 5.2425C8.72249 5.10338 8.8 4.93082 8.8 4.72483C8.8 4.51884 8.72249 4.34653 8.56747 4.20792C8.41245 4.06931 8.21977 4 7.98941 4H7.34581C7.07795 4 6.8536 4.08094 6.67275 4.24283C6.4919 4.40471 6.40148 4.60554 6.40148 4.84531V7.6776C6.28079 7.61631 6.15616 7.57321 6.02759 7.54829C5.89901 7.52337 5.76108 7.51092 5.61379 7.51092C5.17352 7.51092 4.79449 7.65316 4.4767 7.93763C4.1589 8.2221 4 8.56139 4 8.95549C4 9.3496 4.1589 9.68889 4.4767 9.97336Z" fill="#6265AD"/>
|
|
4
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M3.90892 18C3.36622 18 2.9124 17.8245 2.54746 17.4736C2.18249 17.1227 2 16.6863 2 16.1645V7.47523C2 7.09989 2.1063 6.74681 2.31891 6.416C2.53151 6.08518 2.82003 5.84652 3.18449 5.70001L12.4989 2.06633C12.6871 1.98112 12.8745 1.97801 13.0612 2.057C13.2479 2.13599 13.3791 2.26597 13.4548 2.44693C13.5305 2.6279 13.5272 2.80815 13.4451 2.98768C13.3629 3.1672 13.2342 3.29334 13.059 3.36611L7.2546 5.6397H16.0911C16.6338 5.6397 17.0876 5.81517 17.4526 6.1661C17.8175 6.51702 18 6.9534 18 7.47523V16.1645C18 16.6863 17.8175 17.1227 17.4526 17.4736C17.0876 17.8245 16.6338 18 16.0911 18H3.90892ZM3.66991 9.30033C3.66991 9.41079 3.75945 9.50033 3.86991 9.50033H13.1068V8.7549C13.1068 8.53373 13.1885 8.34463 13.3518 8.18759C13.5151 8.03057 13.7118 7.95206 13.9418 7.95206C14.1718 7.95206 14.3685 8.03057 14.5318 8.18759C14.6951 8.34463 14.7767 8.53373 14.7767 8.7549V9.50033H16.1301C16.2406 9.50033 16.3301 9.41079 16.3301 9.30033V7.47523C16.3301 7.4082 16.3077 7.35314 16.2629 7.31005C16.2181 7.26695 16.1608 7.24541 16.0911 7.24541H3.90892C3.83921 7.24541 3.78195 7.26695 3.73713 7.31005C3.69231 7.35314 3.66991 7.4082 3.66991 7.47523V9.30033ZM6.83347 15.455C7.33234 15.455 7.75579 15.2876 8.10382 14.953C8.45183 14.6184 8.62584 14.2112 8.62584 13.7315C8.62584 13.2518 8.45183 12.8446 8.10382 12.51C7.75579 12.1753 7.33234 12.008 6.83347 12.008C6.33459 12.008 5.91114 12.1753 5.56312 12.51C5.2151 12.8446 5.04109 13.2518 5.04109 13.7315C5.04109 14.2112 5.2151 14.6184 5.56312 14.953C5.91114 15.2876 6.33459 15.455 6.83347 15.455Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 2.5C3.39543 2.5 2.5 3.39543 2.5 4.5V15.5C2.5 16.6046 3.39543 17.5 4.5 17.5H15.5C16.6046 17.5 17.5 16.6046 17.5 15.5V4.5C17.5 3.39543 16.6046 2.5 15.5 2.5H4.5ZM7.54236 13.896C7.4585 13.8344 7.3964 13.7506 7.35606 13.6445C7.31572 13.5384 7.31059 13.4248 7.34069 13.3037L7.80289 11.2178C7.82046 11.1386 7.79465 11.0556 7.7358 11.0023L6.1911 9.60214C6.09378 9.52651 6.03424 9.43298 6.01247 9.32155C5.99071 9.21011 5.99743 9.10519 6.03264 9.00681C6.06785 8.90842 6.1274 8.82325 6.21127 8.75131C6.29515 8.67936 6.39343 8.63636 6.50611 8.62231L8.53077 8.43995C8.60864 8.43294 8.67637 8.38146 8.7067 8.30625L9.49868 6.34234C9.54734 6.21785 9.61665 6.12967 9.7066 6.0778C9.79656 6.02593 9.89436 6 10 6C10.1056 6 10.2034 6.02593 10.2934 6.0778C10.3834 6.12967 10.4527 6.21785 10.5013 6.34234L11.2933 8.30625C11.3236 8.38146 11.3914 8.43294 11.4692 8.43995L13.4939 8.62231C13.6066 8.63636 13.7049 8.67936 13.7887 8.75131C13.8726 8.82325 13.9321 8.90842 13.9674 9.00681C14.0026 9.10519 14.0093 9.21011 13.9875 9.32155C13.9658 9.43298 13.9062 9.52651 13.8089 9.60214L12.2642 11.0023C12.2054 11.0556 12.1795 11.1386 12.1971 11.2178L12.6593 13.3037C12.6894 13.4248 12.6843 13.5384 12.6439 13.6445C12.6036 13.7506 12.5415 13.8344 12.4576 13.896C12.3738 13.9576 12.2788 13.9919 12.1729 13.9989C12.0669 14.0059 11.9611 13.9787 11.8555 13.9171L10.109 12.8134C10.042 12.771 9.958 12.771 9.89099 12.8134L8.14452 13.9171C8.03888 13.9787 7.93308 14.0059 7.82712 13.9989C7.72116 13.9919 7.62624 13.9576 7.54236 13.896Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.36206 17C7.44484 17 6.65519 16.6889 5.99312 16.0666C5.33104 15.4443 5 14.7021 5 13.84C5 12.9779 5.33104 12.2358 5.99312 11.6135C6.65519 10.9912 7.44484 10.6801 8.36206 10.6801C8.66892 10.6801 8.95628 10.7073 9.22414 10.7618C9.492 10.8163 9.75165 10.9106 10.0031 11.0447V4.84911C10.0031 4.32461 10.1915 3.8853 10.5682 3.53118C10.945 3.17706 11.4124 3 11.9704 3H13.3113C13.7912 3 14.1926 3.1516 14.5156 3.45481C14.8385 3.75804 15 4.13495 15 4.58555C15 5.03615 14.8385 5.41361 14.5156 5.71794C14.1926 6.02226 13.7912 6.17443 13.3113 6.17443H11.7241V13.84C11.7241 14.7021 11.3931 15.4443 10.731 16.0666C10.0689 16.6889 9.27929 17 8.36206 17Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M3.75642 15.0833C3.23235 15.0833 2.78776 14.9007 2.42267 14.5354C2.05756 14.1701 1.875 13.7253 1.875 13.201V4.6255C1.875 4.10121 2.05756 3.65756 2.42267 3.29454C2.78776 2.93151 3.23235 2.75 3.75642 2.75H16.2435C16.7676 2.75 17.2122 2.93264 17.5773 3.29792C17.9424 3.66318 18.125 4.10796 18.125 4.63225V13.2078C18.125 13.7321 17.9424 14.1757 17.5773 14.5387C17.2122 14.9018 16.7676 15.0833 16.2435 15.0833H13.1666V16.3092C13.1666 16.5698 13.0751 16.7917 12.8919 16.975C12.7088 17.1583 12.4871 17.25 12.2268 17.25H7.77994C7.5196 17.25 7.29676 17.1583 7.1114 16.975C6.92602 16.7917 6.83333 16.5698 6.83333 16.3092V15.0833H3.75642ZM3.75642 13.4583H16.2435C16.3077 13.4583 16.3664 13.4316 16.4199 13.3782C16.4733 13.3248 16.5 13.266 16.5 13.2019V4.63142C16.5 4.56731 16.4733 4.50854 16.4199 4.4551C16.3664 4.40169 16.3077 4.37498 16.2435 4.37498H3.75642C3.69231 4.37498 3.63353 4.40169 3.5801 4.4551C3.52669 4.50854 3.49998 4.56731 3.49998 4.63142V13.2019C3.49998 13.266 3.52669 13.3248 3.5801 13.3782C3.63353 13.4316 3.69231 13.4583 3.75642 13.4583Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.88122 17.3701C7.85478 17.79 8.89481 18 10.0013 18C11.1111 18 12.1541 17.7896 13.1301 17.3687C14.1062 16.9478 14.9553 16.3767 15.6773 15.6552C16.3994 14.9337 16.967 14.0884 17.3802 13.1192C17.7934 12.15 18 11.1104 18 10.0003C18 8.89025 17.7933 7.84706 17.3799 6.87073C16.9666 5.8944 16.3986 5.04513 15.6761 4.32292C14.9536 3.60072 14.1042 3.03301 13.1278 2.61981C12.1514 2.2066 11.1084 2 9.9987 2C8.89371 2 7.8553 2.20669 6.88345 2.62006C5.91159 3.03343 5.06506 3.60129 4.34387 4.32362C3.62269 5.04596 3.05175 5.89537 2.63105 6.87186C2.21035 7.84835 2 8.8915 2 10.0013C2 11.1078 2.21005 12.1476 2.63016 13.1208C3.05026 14.094 3.62041 14.9405 4.34059 15.6604C5.06076 16.3803 5.90763 16.9502 6.88122 17.3701ZM7.19518 14.3333C7.65864 14.7778 8.21139 15 8.85345 15C9.4955 15 10.0483 14.7778 10.5117 14.3333C10.9752 13.8888 11.2069 13.3587 11.2069 12.7429V7.26745H12.3179C12.6538 7.26745 12.9348 7.15876 13.1609 6.94138C13.387 6.72401 13.5 6.45439 13.5 6.13253C13.5 5.81068 13.387 5.54145 13.1609 5.32487C12.9348 5.10829 12.6538 5 12.3179 5H11.3793C10.9887 5 10.6615 5.12647 10.3978 5.37941C10.134 5.63236 10.0022 5.94615 10.0022 6.32079V10.7462C9.82615 10.6504 9.6444 10.5831 9.4569 10.5441C9.2694 10.5052 9.06824 10.4858 8.85345 10.4858C8.21139 10.4858 7.65864 10.708 7.19518 11.1525C6.73173 11.597 6.5 12.1271 6.5 12.7429C6.5 13.3587 6.73173 13.8888 7.19518 14.3333Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.51351 14.595C6.29279 14.381 6.1783 14.1146 6.1783 13.8122V6.15023C6.1783 5.84776 6.29295 5.58134 6.51388 5.36731C6.73482 5.1533 7.00981 5.04226 7.32195 5.04226C7.6341 5.04226 7.90906 5.15329 8.12987 5.36741C8.3506 5.58147 8.46509 5.84786 8.46509 6.15023V13.8122C8.46509 14.1147 8.35044 14.3811 8.12952 14.5951C7.90858 14.8091 7.63358 14.9202 7.32144 14.9202C7.00929 14.9202 6.73432 14.8091 6.51351 14.595ZM9.69182 17.6748C9.47109 17.4608 9.35661 17.1944 9.35661 16.892V3.10796C9.35661 2.8055 9.47125 2.53908 9.69218 2.32505C9.91312 2.11104 10.1881 2 10.5003 2C10.8124 2 11.0874 2.11103 11.3082 2.32515C11.5289 2.53921 11.6434 2.8056 11.6434 3.10796V16.892C11.6434 17.1945 11.5287 17.4609 11.3078 17.6749C11.0869 17.889 10.8119 18 10.4997 18C10.1876 18 9.91262 17.889 9.69182 17.6748ZM3.33521 11.5528C3.11449 11.3387 3 11.0723 3 10.77V9.23004C3 8.92758 3.11465 8.66116 3.33558 8.44713C3.55651 8.23312 3.83151 8.12208 4.14365 8.12208C4.4558 8.12208 4.73076 8.23311 4.95157 8.44723C5.17229 8.66129 5.28679 8.92768 5.28679 9.23004V10.77C5.28679 11.0724 5.17214 11.3388 4.95121 11.5529C4.73028 11.7669 4.45528 11.8779 4.14314 11.8779C3.83099 11.8779 3.55602 11.7669 3.33521 11.5528ZM12.8701 14.595C12.6494 14.381 12.5349 14.1146 12.5349 13.8122V6.15023C12.5349 5.84776 12.6496 5.58134 12.8705 5.36731C13.0914 5.1533 13.3664 5.04226 13.6786 5.04226C13.9907 5.04226 14.2657 5.15329 14.4865 5.36741C14.7072 5.58147 14.8217 5.84786 14.8217 6.15023V13.8122C14.8217 14.1147 14.707 14.3811 14.4861 14.5951C14.2652 14.8091 13.9902 14.9202 13.6781 14.9202C13.3659 14.9202 13.0909 14.8091 12.8701 14.595ZM16.0484 11.5528C15.8277 11.3387 15.7132 11.0723 15.7132 10.77V9.23004C15.7132 8.92758 15.8279 8.66116 16.0488 8.44713C16.2697 8.23312 16.5447 8.12208 16.8569 8.12208C17.169 8.12208 17.444 8.23311 17.6648 8.44723C17.8855 8.66129 18 8.92768 18 9.23004V10.77C18 11.0724 17.8854 11.3388 17.6644 11.5529C17.4435 11.7669 17.1685 11.8779 16.8564 11.8779C16.5442 11.8779 16.2692 11.7669 16.0484 11.5528Z" fill="#6265AD"/>
|
|
3
|
-
</svg>
|