@orfium/ictinus 5.43.7 → 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/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/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 -169
- 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 -330
- 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 -226
- 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
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgKeyword = function SvgKeyword(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#52567A",
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M12.778 2.5c2.607 0 4.722 2.137 4.722 4.776 0 2.637-2.115 4.775-4.722 4.775a4.7 4.7 0 0 1-1.11-.139 2.28 2.28 0 0 1-1.62.677H8.57v1.455a1 1 0 0 1-1 1H6.143V16.5a1 1 0 0 1-1 1H3.5a1 1 0 0 1-1-1v-1.862a2 2 0 0 1 .578-1.406l5.055-5.114a5 5 0 0 1-.077-.842c0-2.64 2.114-4.776 4.722-4.776m1.235 2.082c-.71 0-1.287.583-1.287 1.303 0 .719.576 1.302 1.287 1.302.712 0 1.288-.583 1.288-1.302s-.576-1.303-1.288-1.303",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
})));
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { SvgKeyword as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgLanguage = function SvgLanguage(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M10 18a7.85 7.85 0 0 1-3.121-.625 8 8 0 0 1-2.545-1.71 8 8 0 0 1-1.708-2.544A7.85 7.85 0 0 1 2 10q0-1.651.626-3.117a8 8 0 0 1 1.708-2.549A8 8 0 0 1 6.88 2.626 7.85 7.85 0 0 1 10 2q1.651 0 3.117.626a8 8 0 0 1 2.549 1.708 8 8 0 0 1 1.709 2.549Q18 8.348 18 10a7.85 7.85 0 0 1-.625 3.121 8 8 0 0 1-1.71 2.545 8 8 0 0 1-2.548 1.709A7.9 7.9 0 0 1 10 18m0-1.633q.396-.417.758-1.413t.568-2.148H8.674q.222 1.183.575 2.18.355.995.751 1.38m-1.504-.142q-.364-.545-.653-1.445t-.454-1.973H4.224q.6 1.339 1.767 2.246 1.168.906 2.505 1.172m3.008 0q1.337-.266 2.505-1.172a5.8 5.8 0 0 0 1.767-2.247h-3.165q-.204 1.082-.493 1.982t-.614 1.437m-7.728-4.671h3.469q-.035-.39-.05-.803a23 23 0 0 1 0-1.563q.014-.393.05-.742H3.776a3.6 3.6 0 0 0-.158.755 7.7 7.7 0 0 0 0 1.598q.042.404.158.755m4.762 0h2.924q.056-.41.07-.795a21 21 0 0 0 0-1.528 7 7 0 0 0-.07-.785H8.538q-.056.39-.07.785a22 22 0 0 0 0 1.538q.014.395.07.785m4.217 0h3.469q.116-.351.158-.755a7.7 7.7 0 0 0 0-1.608 3.2 3.2 0 0 0-.158-.745h-3.469q.035.39.05.803a24 24 0 0 1 0 1.563q-.014.393-.05.742m-.144-4.36h3.165a5.8 5.8 0 0 0-1.756-2.247 6.1 6.1 0 0 0-2.516-1.18q.364.584.645 1.472t.462 1.954m-3.937 0h2.652a14 14 0 0 0-.587-2.18Q10.373 4.007 10 3.531q-.373.475-.739 1.481a14 14 0 0 0-.587 2.18m-4.45 0h3.165q.18-1.067.462-1.955.28-.888.645-1.472a6.1 6.1 0 0 0-2.52 1.184 5.86 5.86 0 0 0-1.752 2.242"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgLanguage as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgLegal = function SvgLegal(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "m10 11.383 1.649 1.242q.134.095.273 0 .14-.095.08-.242l-.654-2.043 1.7-1.332q.162-.086.097-.248-.064-.162-.25-.162H10.88L10.22 6.58A.22.22 0 0 0 10 6.432a.22.22 0 0 0-.219.148L9.12 8.598H7.106q-.187 0-.237.162t.11.248l1.673 1.332-.654 2.03q-.06.149.08.252.14.105.273.01zM10 18a2.3 2.3 0 0 1-.582-.082q-2.696-.9-4.307-3.352Q3.5 12.112 3.5 9.279v-3.58q0-.585.316-1.06a1.77 1.77 0 0 1 .855-.685l4.677-1.819Q9.668 2 10 2q.333 0 .652.135l4.677 1.819q.54.208.855.684.316.475.316 1.062v3.579q0 2.833-1.611 5.287t-4.307 3.352A2.32 2.32 0 0 1 10 18"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgLegal as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgLocation = function SvgLocation(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M9.94 10.37q.825 0 1.41-.572t.585-1.376-.588-1.373a1.96 1.96 0 0 0-1.412-.57q-.825 0-1.41.572T7.94 8.427t.588 1.374 1.412.57m-.002 8.234q-3.532-2.97-5.266-5.425T2.938 8.593q0-3.219 2.1-5.104t4.897-1.885 4.9 1.885 2.102 5.104q0 2.131-1.734 4.586t-5.265 5.425"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgLocation as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgMail = function SvgMail(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M4.29 16q-.747 0-1.269-.52a1.72 1.72 0 0 1-.521-1.267V5.787q0-.746.521-1.266T4.29 4h11.42q.747 0 1.269.52.52.522.521 1.267v8.426q0 .746-.521 1.266T15.71 16zM10 10.667a.8.8 0 0 0 .242-.036 1 1 0 0 0 .221-.102L15.6 7.252a.6.6 0 0 0 .211-.253.62.62 0 0 0 .068-.356.58.58 0 0 0-.338-.519.62.62 0 0 0-.651.028l-4.083 2.606a1.5 1.5 0 0 1-1.614 0L5.11 6.152q-.327-.198-.647-.04a.59.59 0 0 0-.341.531.6.6 0 0 0 .067.355q.088.172.213.255l5.135 3.276a1 1 0 0 0 .22.102.8.8 0 0 0 .243.036"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgMail as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgManual = function SvgManual(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M10.659 15.185q.988-.47 2.002-.732a8.4 8.4 0 0 1 2.095-.26q.732 0 1.403.09.672.09 1.267.381a.18.18 0 0 0 .177-.012q.08-.054.08-.168V5.107a.22.22 0 0 0-.04-.131.3.3 0 0 0-.137-.099 9 9 0 0 0-1.469-.415 8 8 0 0 0-1.532-.142q-1.018 0-1.981.271a8.7 8.7 0 0 0-1.865.771zM9.993 17a.42.42 0 0 1-.285-.104 1.7 1.7 0 0 0-.265-.188 9 9 0 0 0-1.99-.878 7.3 7.3 0 0 0-2.133-.318q-.633.001-1.266.056-.634.056-1.214.306-.67.275-1.256.03Q1 15.66 1 15.069V4.776q0-.339.191-.613a1.3 1.3 0 0 1 .475-.423 4.5 4.5 0 0 1 1.745-.616A14 14 0 0 1 5.286 3q1.261 0 2.385.287 1.121.285 2.319.929 1.196-.643 2.319-.93A9.6 9.6 0 0 1 14.693 3q.867 0 1.719.113a5.3 5.3 0 0 1 1.609.478q.387.17.683.466a.98.98 0 0 1 .296.719v10.293q0 .527-.517.774-.517.246-1.12.058a6 6 0 0 0-1.382-.316 14 14 0 0 0-1.426-.073q-1.071 0-2.082.307-1.01.306-1.916.89l-.271.198a.5.5 0 0 1-.293.093"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgManual as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgMoreOptions = function SvgMoreOptions(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M11.5 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M11.5 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M11.5 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgMoreOptions as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgNotification = function SvgNotification(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M4.787 14.316a.75.75 0 0 1-.556-.239.8.8 0 0 1-.231-.575q0-.338.23-.576a.75.75 0 0 1 .557-.239h.695v-5.02q0-1.57.923-2.846A4.24 4.24 0 0 1 8.83 3.154a4.53 4.53 0 0 1 2.342 0q1.5.39 2.424 1.677.923 1.284.923 2.837v5.02h.695q.325 0 .556.238.231.24.231.576a.8.8 0 0 1-.23.575.75.75 0 0 1-.557.24zM10 17a1.47 1.47 0 0 1-1.087-.464 1.56 1.56 0 0 1-.455-1.133h3.084q0 .67-.448 1.133Q10.646 17 10 17"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgNotification as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgPolicy = function SvgPolicy(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M10.501 18q-.146 0-.327-.026a2.5 2.5 0 0 1-.355-.077q-2.892-1.005-4.355-3.426T4 9.265V5.652q0-.585.335-1.053a1.9 1.9 0 0 1 .886-.679l4.53-1.784a2.15 2.15 0 0 1 1.497 0l4.53 1.784q.552.21.887.679.335.468.335 1.053v3.614q0 1.203-.288 2.37a9.5 9.5 0 0 1-.873 2.246l-2.487-2.338q.202-.348.333-.751.13-.402.13-.81 0-1.298-.967-2.208-.968-.91-2.348-.91t-2.348.91-.967 2.208.967 2.208q.968.91 2.348.91.465 0 .877-.096t.79-.33l2.659 2.57a13 13 0 0 1-1.635 1.545 7.1 7.1 0 0 1-2.023 1.103A2.309 2.309 0 0 1 10.5 18m-.008-6.499q-.669 0-1.138-.448a1.44 1.44 0 0 1-.47-1.076q0-.63.477-1.07t1.145-.441q.669 0 1.138.448.47.447.47 1.076 0 .63-.477 1.07t-1.145.441"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgPolicy as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgReport = function SvgReport(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M4.817 17q-.75 0-1.284-.533A1.75 1.75 0 0 1 3 15.184V4.817q0-.77.533-1.294A1.77 1.77 0 0 1 4.817 3h10.366q.77 0 1.294.523.523.523.523 1.294v10.366q0 .75-.523 1.284a1.74 1.74 0 0 1-1.293.533zM15.43 5.493l-5.443 5.613-1.84-1.82a.87.87 0 0 0-.63-.278.87.87 0 0 0-.63.279l-2.319 2.32v2.182l2.95-2.949 1.836 1.837q.298.299.652.282a.96.96 0 0 0 .64-.295l4.784-4.939z"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgReport as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgSearchFilled = function SvgSearchFilled(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#52567A",
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M16.32 14.906a8 8 0 1 0-1.413 1.413l-3.062-3.06a4 4 0 0 1-4.857-6.271 3.997 3.997 0 0 1 6.27 4.857zm-5.093-3.679a1.999 1.999 0 1 0-2.826-2.826 1.999 1.999 0 0 0 2.826 2.826",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
})));
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { SvgSearchFilled as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgSettings = function SvgSettings(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M11.361 17.5H8.646a.9.9 0 0 1-.595-.21.88.88 0 0 1-.306-.544l-.151-1.104a.94.94 0 0 0-.505-.692c-.277-.145-.606-.203-.895-.086l-1.055.43a.82.82 0 0 1-.645.027.93.93 0 0 1-.503-.405L2.622 12.54a.8.8 0 0 1-.101-.605.87.87 0 0 1 .349-.52l1.056-.788a.46.46 0 0 0 .185-.405 3 3 0 0 1 0-.477.46.46 0 0 0-.193-.41L2.87 8.585a.72.72 0 0 1-.35-.521.9.9 0 0 1 .121-.623l1.35-2.306q.18-.282.493-.412a.75.75 0 0 1 .63.015l.952.387c.321.13.684.08.991-.08.298-.156.509-.443.553-.776l.135-1.015a.79.79 0 0 1 .296-.544.93.93 0 0 1 .605-.21h2.715q.345 0 .608.21.263.209.3.544l.131 1.043c.042.332.25.619.546.773s.645.207.956.081l.98-.395a.83.83 0 0 1 .642-.03q.326.114.5.402l1.349 2.313q.173.288.11.623a.77.77 0 0 1-.339.52L16.02 9.4a.46.46 0 0 0-.176.393q.003.127.004.226 0 .094-.008.22a.5.5 0 0 0 .203.426l1.056.77q.285.196.353.517a.82.82 0 0 1-.105.608l-1.368 2.364a.9.9 0 0 1-.5.399.84.84 0 0 1-.641-.035l-1.08-.439a.97.97 0 0 0-.857.08c-.248.145-.438.382-.477.667l-.155 1.15a.87.87 0 0 1-.31.546.9.9 0 0 1-.598.209m-1.402-4.83q1.159 0 1.964-.782a2.56 2.56 0 0 0 .805-1.906q0-1.125-.805-1.906-.805-.782-1.964-.782-1.15 0-1.96.782a2.55 2.55 0 0 0-.808 1.906q0 1.125.809 1.906.808.781 1.96.781"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgSettings as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgTag = function SvgTag(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#52567A",
|
|
12
|
+
d: "m7.5 14.312-.66 2.937q-.104.343-.357.547a.87.87 0 0 1-.56.204.88.88 0 0 1-.745-.375q-.28-.375-.16-.89l.565-2.423H2.96q-.441 0-.75-.383-.309-.385-.166-.898.114-.307.349-.547a.77.77 0 0 1 .567-.241h3.112l.876-3.85H4.034q-.441 0-.75-.383-.31-.384-.166-.898.112-.306.348-.547a.77.77 0 0 1 .568-.24h3.405l.807-3.574q.103-.343.356-.547A.87.87 0 0 1 9.162 2q.465 0 .745.375t.16.89l-.712 3.06h2.999l.806-3.574q.104-.343.357-.547a.87.87 0 0 1 .56-.204q.465 0 .745.375t.16.89l-.712 3.06h2.769q.441 0 .75.383.309.384.166.898a1.5 1.5 0 0 1-.349.547.77.77 0 0 1-.567.24H13.78l-.876 3.85h3.063q.44 0 .75.383.308.384.165.899a1.5 1.5 0 0 1-.348.546.77.77 0 0 1-.567.241h-3.553l-.66 2.937q-.103.343-.356.547a.87.87 0 0 1-.56.204.88.88 0 0 1-.745-.375q-.28-.375-.16-.89l.565-2.423zm.49-2.07h2.998l.876-3.848H8.865z"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgTag as default };
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
import SvgForward from './audioControls/forward.svg.js';
|
|
2
|
+
import SvgNext from './audioControls/next.svg.js';
|
|
3
|
+
import SvgPause from './audioControls/pause.svg.js';
|
|
4
|
+
import SvgPlay from './audioControls/play.svg.js';
|
|
5
|
+
import SvgPrevious from './audioControls/previous.svg.js';
|
|
6
|
+
import SvgResume from './audioControls/resume.svg.js';
|
|
7
|
+
import SvgRewind from './audioControls/rewind.svg.js';
|
|
8
|
+
import SvgStop from './audioControls/stop.svg.js';
|
|
9
|
+
import SvgCheck from './basicActions/check.svg.js';
|
|
10
|
+
import SvgClose from './basicActions/close.svg.js';
|
|
11
|
+
import SvgColumnChooser from './basicActions/columnChooser.svg.js';
|
|
12
|
+
import SvgConvert from './basicActions/convert.svg.js';
|
|
13
|
+
import SvgCopy from './basicActions/copy.svg.js';
|
|
14
|
+
import SvgDelete from './basicActions/delete.svg.js';
|
|
15
|
+
import SvgDownload from './basicActions/download.svg.js';
|
|
16
|
+
import SvgEdit from './basicActions/edit.svg.js';
|
|
17
|
+
import SvgLogin from './basicActions/login.svg.js';
|
|
18
|
+
import SvgLogout from './basicActions/logout.svg.js';
|
|
19
|
+
import SvgMediaFile from './basicActions/mediaFile.svg.js';
|
|
20
|
+
import SvgMinus from './basicActions/minus.svg.js';
|
|
21
|
+
import SvgPlus from './basicActions/plus.svg.js';
|
|
22
|
+
import SvgRedo from './basicActions/redo.svg.js';
|
|
23
|
+
import SvgRefresh from './basicActions/refresh.svg.js';
|
|
24
|
+
import SvgRestore from './basicActions/restore.svg.js';
|
|
25
|
+
import SvgReview from './basicActions/review.svg.js';
|
|
26
|
+
import SvgSearch from './basicActions/search.svg.js';
|
|
27
|
+
import SvgShare from './basicActions/share.svg.js';
|
|
28
|
+
import SvgSort from './basicActions/sort.svg.js';
|
|
29
|
+
import SvgSortAscending from './basicActions/sortAscending.svg.js';
|
|
30
|
+
import SvgSortDescending from './basicActions/sortDescending.svg.js';
|
|
31
|
+
import SvgThumbsDown from './basicActions/thumbsDown.svg.js';
|
|
32
|
+
import SvgThumbsUp from './basicActions/thumbsUp.svg.js';
|
|
33
|
+
import SvgUndo from './basicActions/undo.svg.js';
|
|
34
|
+
import SvgUpdate from './basicActions/update.svg.js';
|
|
35
|
+
import SvgUpload from './basicActions/upload.svg.js';
|
|
36
|
+
import SvgAnalytics from './dataAndFinance/analytics.svg.js';
|
|
37
|
+
import SvgDashboard from './dataAndFinance/dashboard.svg.js';
|
|
38
|
+
import SvgDataset from './dataAndFinance/dataset.svg.js';
|
|
39
|
+
import SvgEarnings from './dataAndFinance/earnings.svg.js';
|
|
40
|
+
import SvgIncome from './dataAndFinance/income.svg.js';
|
|
41
|
+
import SvgInsight from './dataAndFinance/insight.svg.js';
|
|
42
|
+
import SvgInvoice from './dataAndFinance/invoice.svg.js';
|
|
43
|
+
import SvgTrendingDown from './dataAndFinance/trendingDown.svg.js';
|
|
44
|
+
import SvgTrendingUp from './dataAndFinance/trendingUp.svg.js';
|
|
45
|
+
import SvgCalendar from './generic/calendar.svg.js';
|
|
46
|
+
import SvgChat from './generic/chat.svg.js';
|
|
47
|
+
import SvgDelivery from './generic/delivery.svg.js';
|
|
48
|
+
import SvgDetails from './generic/details.svg.js';
|
|
49
|
+
import SvgExternalLink from './generic/externalLink.svg.js';
|
|
50
|
+
import SvgFile from './generic/file.svg.js';
|
|
51
|
+
import SvgFilter from './generic/filter.svg.js';
|
|
52
|
+
import SvgIssue from './generic/issue.svg.js';
|
|
53
|
+
import SvgKeyword from './generic/keyword.svg.js';
|
|
54
|
+
import SvgLanguage from './generic/language.svg.js';
|
|
55
|
+
import SvgLegal from './generic/legal.svg.js';
|
|
56
|
+
import SvgLocation from './generic/location.svg.js';
|
|
57
|
+
import SvgMail from './generic/mail.svg.js';
|
|
58
|
+
import SvgManual from './generic/manual.svg.js';
|
|
59
|
+
import SvgMoreOptions from './generic/moreOptions.svg.js';
|
|
60
|
+
import SvgNotification from './generic/notification.svg.js';
|
|
61
|
+
import SvgPolicy from './generic/policy.svg.js';
|
|
62
|
+
import SvgReport from './generic/report.svg.js';
|
|
63
|
+
import SvgSearchFilled from './generic/search filled.svg.js';
|
|
64
|
+
import SvgSettings from './generic/settings.svg.js';
|
|
65
|
+
import SvgTag from './generic/tag.svg.js';
|
|
66
|
+
import SvgAlbum from './musicBusiness/album.svg.js';
|
|
67
|
+
import SvgArtist from './musicBusiness/artist.svg.js';
|
|
68
|
+
import SvgAsset from './musicBusiness/asset.svg.js';
|
|
69
|
+
import SvgBroadcast from './musicBusiness/broadcast.svg.js';
|
|
70
|
+
import SvgCatalog from './musicBusiness/catalog.svg.js';
|
|
71
|
+
import SvgChannel from './musicBusiness/channel.svg.js';
|
|
72
|
+
import SvgCinema from './musicBusiness/cinema.svg.js';
|
|
73
|
+
import SvgClaim from './musicBusiness/claim.svg.js';
|
|
74
|
+
import SvgComposition from './musicBusiness/composition.svg.js';
|
|
75
|
+
import SvgConcert from './musicBusiness/concert.svg.js';
|
|
76
|
+
import SvgConflict from './musicBusiness/conflict.svg.js';
|
|
77
|
+
import SvgCueSheet from './musicBusiness/cueSheet.svg.js';
|
|
78
|
+
import SvgDigital from './musicBusiness/digital.svg.js';
|
|
79
|
+
import SvgDistribution from './musicBusiness/distribution.svg.js';
|
|
80
|
+
import SvgLicense from './musicBusiness/license.svg.js';
|
|
81
|
+
import SvgPlaycount from './musicBusiness/playcount.svg.js';
|
|
82
|
+
import SvgPublicPerformance from './musicBusiness/publicPerformance.svg.js';
|
|
83
|
+
import SvgPublisher from './musicBusiness/publisher.svg.js';
|
|
84
|
+
import SvgRadio from './musicBusiness/radio.svg.js';
|
|
85
|
+
import SvgRecording from './musicBusiness/recording.svg.js';
|
|
86
|
+
import SvgRecordLabel from './musicBusiness/recordLabel.svg.js';
|
|
87
|
+
import SvgTelevision from './musicBusiness/television.svg.js';
|
|
88
|
+
import SvgUsage from './musicBusiness/usage.svg.js';
|
|
89
|
+
import SvgWork from './musicBusiness/work.svg.js';
|
|
90
|
+
import SvgWriter from './musicBusiness/writer.svg.js';
|
|
91
|
+
import SvgYouTube from './musicBusiness/youTube.svg.js';
|
|
92
|
+
import SvgApps from './navigation/apps.svg.js';
|
|
93
|
+
import SvgArrowDown from './navigation/arrowDown.svg.js';
|
|
94
|
+
import SvgArrowLeft from './navigation/arrowLeft.svg.js';
|
|
95
|
+
import SvgArrowRight from './navigation/arrowRight.svg.js';
|
|
96
|
+
import SvgArrowUp from './navigation/arrowUp.svg.js';
|
|
97
|
+
import SvgChevronDown from './navigation/chevronDown.svg.js';
|
|
98
|
+
import SvgChevronLeft from './navigation/chevronLeft.svg.js';
|
|
99
|
+
import SvgChevronRight from './navigation/chevronRight.svg.js';
|
|
100
|
+
import SvgChevronUp from './navigation/chevronUp.svg.js';
|
|
101
|
+
import SvgMenu from './navigation/menu.svg.js';
|
|
102
|
+
import SvgPageFirst from './navigation/pageFirst.svg.js';
|
|
103
|
+
import SvgPageLast from './navigation/pageLast.svg.js';
|
|
104
|
+
import SvgTriangleDown from './navigation/triangleDown.svg.js';
|
|
105
|
+
import SvgTriangleLeft from './navigation/triangleLeft.svg.js';
|
|
106
|
+
import SvgTriangleRight from './navigation/triangleRight.svg.js';
|
|
107
|
+
import SvgTriangleUp from './navigation/triangleUp.svg.js';
|
|
108
|
+
import SvgAudio from './toggledActions/audio.svg.js';
|
|
109
|
+
import SvgAudioOff from './toggledActions/audioOff.svg.js';
|
|
110
|
+
import SvgBookmark from './toggledActions/bookmark.svg.js';
|
|
111
|
+
import SvgBookmarkOff from './toggledActions/bookmarkOff.svg.js';
|
|
112
|
+
import SvgEye from './toggledActions/eye.svg.js';
|
|
113
|
+
import SvgEyeOff from './toggledActions/eyeOff.svg.js';
|
|
114
|
+
import SvgFavorite from './toggledActions/favorite.svg.js';
|
|
115
|
+
import SvgFavoriteOff from './toggledActions/favoriteOff.svg.js';
|
|
116
|
+
import SvgFlag from './toggledActions/flag.svg.js';
|
|
117
|
+
import SvgFlagOff from './toggledActions/flagOff.svg.js';
|
|
118
|
+
import SvgFreeze from './toggledActions/freeze.svg.js';
|
|
119
|
+
import SvgImage from './toggledActions/image.svg.js';
|
|
120
|
+
import SvgImageOff from './toggledActions/imageOff.svg.js';
|
|
121
|
+
import SvgLink from './toggledActions/link.svg.js';
|
|
122
|
+
import SvgLock from './toggledActions/lock.svg.js';
|
|
123
|
+
import SvgPair from './toggledActions/pair.svg.js';
|
|
124
|
+
import SvgUnfreeze from './toggledActions/unfreeze.svg.js';
|
|
125
|
+
import SvgUnlink from './toggledActions/unlink.svg.js';
|
|
126
|
+
import SvgUnlock from './toggledActions/unlock.svg.js';
|
|
127
|
+
import SvgUnpair from './toggledActions/unpair.svg.js';
|
|
128
|
+
import SvgVideo from './toggledActions/video.svg.js';
|
|
129
|
+
import SvgVideoOff from './toggledActions/videoOff.svg.js';
|
|
130
|
+
import SvgAccount from './usersAndStatus/account.svg.js';
|
|
131
|
+
import SvgEntities from './usersAndStatus/entities.svg.js';
|
|
132
|
+
import SvgError from './usersAndStatus/error.svg.js';
|
|
133
|
+
import SvgHelp from './usersAndStatus/help.svg.js';
|
|
134
|
+
import SvgInformational from './usersAndStatus/informational.svg.js';
|
|
135
|
+
import SvgOrganization from './usersAndStatus/organization.svg.js';
|
|
136
|
+
import SvgPending from './usersAndStatus/pending.svg.js';
|
|
137
|
+
import SvgRole from './usersAndStatus/role.svg.js';
|
|
138
|
+
import SvgStatusIndicator from './usersAndStatus/statusIndicator.svg.js';
|
|
139
|
+
import SvgSuccess from './usersAndStatus/success.svg.js';
|
|
140
|
+
import SvgUnverified from './usersAndStatus/unverified.svg.js';
|
|
141
|
+
import SvgUser from './usersAndStatus/user.svg.js';
|
|
142
|
+
import SvgUsers from './usersAndStatus/users.svg.js';
|
|
143
|
+
import SvgVerified from './usersAndStatus/verified.svg.js';
|
|
144
|
+
import SvgWarning from './usersAndStatus/warning.svg.js';
|
|
145
|
+
|
|
146
|
+
const iconSelector = {
|
|
147
|
+
/** Audio Controls */
|
|
148
|
+
forward: SvgForward,
|
|
149
|
+
next: SvgNext,
|
|
150
|
+
pause: SvgPause,
|
|
151
|
+
play: SvgPlay,
|
|
152
|
+
previous: SvgPrevious,
|
|
153
|
+
resume: SvgResume,
|
|
154
|
+
rewind: SvgRewind,
|
|
155
|
+
stop: SvgStop,
|
|
156
|
+
/** Basic Actions */
|
|
157
|
+
check: SvgCheck,
|
|
158
|
+
close: SvgClose,
|
|
159
|
+
columnChooser: SvgColumnChooser,
|
|
160
|
+
convert: SvgConvert,
|
|
161
|
+
copy: SvgCopy,
|
|
162
|
+
delete: SvgDelete,
|
|
163
|
+
download: SvgDownload,
|
|
164
|
+
edit: SvgEdit,
|
|
165
|
+
login: SvgLogin,
|
|
166
|
+
logout: SvgLogout,
|
|
167
|
+
mediaFile: SvgMediaFile,
|
|
168
|
+
minus: SvgMinus,
|
|
169
|
+
plus: SvgPlus,
|
|
170
|
+
redo: SvgRedo,
|
|
171
|
+
refresh: SvgRefresh,
|
|
172
|
+
restore: SvgRestore,
|
|
173
|
+
review: SvgReview,
|
|
174
|
+
search: SvgSearch,
|
|
175
|
+
share: SvgShare,
|
|
176
|
+
sort: SvgSort,
|
|
177
|
+
sortAscending: SvgSortAscending,
|
|
178
|
+
sortDescending: SvgSortDescending,
|
|
179
|
+
thumbsDown: SvgThumbsDown,
|
|
180
|
+
thumbsUp: SvgThumbsUp,
|
|
181
|
+
undo: SvgUndo,
|
|
182
|
+
update: SvgUpdate,
|
|
183
|
+
upload: SvgUpload,
|
|
184
|
+
/** Data and Finance */
|
|
185
|
+
analytics: SvgAnalytics,
|
|
186
|
+
dashboard: SvgDashboard,
|
|
187
|
+
dataset: SvgDataset,
|
|
188
|
+
earnings: SvgEarnings,
|
|
189
|
+
income: SvgIncome,
|
|
190
|
+
insight: SvgInsight,
|
|
191
|
+
invoice: SvgInvoice,
|
|
192
|
+
trendingDown: SvgTrendingDown,
|
|
193
|
+
trendingUp: SvgTrendingUp,
|
|
194
|
+
/** Generic */
|
|
195
|
+
calendar: SvgCalendar,
|
|
196
|
+
chat: SvgChat,
|
|
197
|
+
delivery: SvgDelivery,
|
|
198
|
+
details: SvgDetails,
|
|
199
|
+
externalLink: SvgExternalLink,
|
|
200
|
+
file: SvgFile,
|
|
201
|
+
filter: SvgFilter,
|
|
202
|
+
issue: SvgIssue,
|
|
203
|
+
keyword: SvgKeyword,
|
|
204
|
+
language: SvgLanguage,
|
|
205
|
+
legal: SvgLegal,
|
|
206
|
+
location: SvgLocation,
|
|
207
|
+
mail: SvgMail,
|
|
208
|
+
manual: SvgManual,
|
|
209
|
+
moreOptions: SvgMoreOptions,
|
|
210
|
+
notification: SvgNotification,
|
|
211
|
+
policy: SvgPolicy,
|
|
212
|
+
report: SvgReport,
|
|
213
|
+
searchFilled: SvgSearchFilled,
|
|
214
|
+
settings: SvgSettings,
|
|
215
|
+
tag: SvgTag,
|
|
216
|
+
/** Music Business */
|
|
217
|
+
album: SvgAlbum,
|
|
218
|
+
artist: SvgArtist,
|
|
219
|
+
asset: SvgAsset,
|
|
220
|
+
broadcast: SvgBroadcast,
|
|
221
|
+
catalog: SvgCatalog,
|
|
222
|
+
channel: SvgChannel,
|
|
223
|
+
cinema: SvgCinema,
|
|
224
|
+
claim: SvgClaim,
|
|
225
|
+
composition: SvgComposition,
|
|
226
|
+
concert: SvgConcert,
|
|
227
|
+
conflict: SvgConflict,
|
|
228
|
+
cueSheet: SvgCueSheet,
|
|
229
|
+
digital: SvgDigital,
|
|
230
|
+
distribution: SvgDistribution,
|
|
231
|
+
license: SvgLicense,
|
|
232
|
+
playcount: SvgPlaycount,
|
|
233
|
+
publicPerformance: SvgPublicPerformance,
|
|
234
|
+
publisher: SvgPublisher,
|
|
235
|
+
radio: SvgRadio,
|
|
236
|
+
recording: SvgRecording,
|
|
237
|
+
recordLabel: SvgRecordLabel,
|
|
238
|
+
television: SvgTelevision,
|
|
239
|
+
usage: SvgUsage,
|
|
240
|
+
work: SvgWork,
|
|
241
|
+
writer: SvgWriter,
|
|
242
|
+
youTube: SvgYouTube,
|
|
243
|
+
/** Navigation */
|
|
244
|
+
apps: SvgApps,
|
|
245
|
+
arrowDown: SvgArrowDown,
|
|
246
|
+
arrowLeft: SvgArrowLeft,
|
|
247
|
+
arrowRight: SvgArrowRight,
|
|
248
|
+
arrowUp: SvgArrowUp,
|
|
249
|
+
chevronDown: SvgChevronDown,
|
|
250
|
+
chevronLeft: SvgChevronLeft,
|
|
251
|
+
chevronRight: SvgChevronRight,
|
|
252
|
+
chevronUp: SvgChevronUp,
|
|
253
|
+
menu: SvgMenu,
|
|
254
|
+
pageFirst: SvgPageFirst,
|
|
255
|
+
pageLast: SvgPageLast,
|
|
256
|
+
triangleDown: SvgTriangleDown,
|
|
257
|
+
triangleLeft: SvgTriangleLeft,
|
|
258
|
+
triangleRight: SvgTriangleRight,
|
|
259
|
+
triangleUp: SvgTriangleUp,
|
|
260
|
+
/** Toggled Actions */
|
|
261
|
+
audio: SvgAudio,
|
|
262
|
+
audioOff: SvgAudioOff,
|
|
263
|
+
bookmark: SvgBookmark,
|
|
264
|
+
bookmarkOff: SvgBookmarkOff,
|
|
265
|
+
eye: SvgEye,
|
|
266
|
+
eyeOff: SvgEyeOff,
|
|
267
|
+
favorite: SvgFavorite,
|
|
268
|
+
favoriteOff: SvgFavoriteOff,
|
|
269
|
+
flag: SvgFlag,
|
|
270
|
+
flagOff: SvgFlagOff,
|
|
271
|
+
freeze: SvgFreeze,
|
|
272
|
+
image: SvgImage,
|
|
273
|
+
imageOff: SvgImageOff,
|
|
274
|
+
link: SvgLink,
|
|
275
|
+
lock: SvgLock,
|
|
276
|
+
pair: SvgPair,
|
|
277
|
+
unfreeze: SvgUnfreeze,
|
|
278
|
+
unlink: SvgUnlink,
|
|
279
|
+
unlock: SvgUnlock,
|
|
280
|
+
unpair: SvgUnpair,
|
|
281
|
+
video: SvgVideo,
|
|
282
|
+
videoOff: SvgVideoOff,
|
|
283
|
+
/** Users and Status */
|
|
284
|
+
account: SvgAccount,
|
|
285
|
+
entities: SvgEntities,
|
|
286
|
+
error: SvgError,
|
|
287
|
+
help: SvgHelp,
|
|
288
|
+
informational: SvgInformational,
|
|
289
|
+
organization: SvgOrganization,
|
|
290
|
+
pending: SvgPending,
|
|
291
|
+
role: SvgRole,
|
|
292
|
+
statusIndicator: SvgStatusIndicator,
|
|
293
|
+
success: SvgSuccess,
|
|
294
|
+
unverified: SvgUnverified,
|
|
295
|
+
user: SvgUser,
|
|
296
|
+
users: SvgUsers,
|
|
297
|
+
verified: SvgVerified,
|
|
298
|
+
warning: SvgWarning
|
|
299
|
+
};
|
|
300
|
+
|
|
301
|
+
export { iconSelector as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgAlbum = function SvgAlbum(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M10 7.6c-1.32 0-2.4 1.08-2.4 2.4s1.08 2.4 2.4 2.4 2.4-1.08 2.4-2.4-1.08-2.4-2.4-2.4M10 2c-4.408 0-8 3.592-8 8s3.592 8 8 8 8-3.592 8-8-3.592-8-8-8m0 12a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
})));
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { SvgAlbum as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgArtist = function SvgArtist(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M5.305 17.395q-.275.207-.55.006-.277-.2-.196-.541l1.451-4.98-3.796-2.873q-.293-.214-.185-.556.108-.34.46-.34h4.7l1.509-5.242q.057-.166.181-.268a.42.42 0 0 1 .27-.101q.148 0 .271.101a.6.6 0 0 1 .182.268L11.11 8.11h4.7q.35 0 .46.34.108.342-.186.556l-3.796 2.872 1.451 4.98q.082.341-.195.542t-.55-.006L9.15 14.328zm11.112-.283-1.309-1.058-1.077-3.697 2.23-1.676h1.318q.084 0 .315.349.23.348-.04.547l-1.77 1.324 1.071 3.663q.075.318-.299.454-.373.138-.439.094M12.24 6.492l-.587-2.04.46-1.575a.56.56 0 0 1 .181-.264.43.43 0 0 1 .541-.004.54.54 0 0 1 .182.268l1.032 3.616z"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgArtist as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgAsset = function SvgAsset(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M9.033 15.783q.894 0 1.51-.605.616-.606.616-1.489V8.612h1.62q.348 0 .591-.237a.79.79 0 0 0 .244-.587.79.79 0 0 0-.244-.583.8.8 0 0 0-.591-.24h-1.487a.925.925 0 0 0-.948.936v4.135a2.1 2.1 0 0 0-.617-.329 2.2 2.2 0 0 0-.688-.112q-.897 0-1.512.606-.616.605-.616 1.486 0 .882.614 1.49.614.606 1.508.606M5.436 18q-.808 0-1.372-.556A1.83 1.83 0 0 1 3.5 16.09V3.91q0-.797.564-1.353T5.436 2h5.432a1.73 1.73 0 0 1 1.205.49l3.93 3.913q.24.234.368.544.129.31.129.644v8.5q0 .796-.564 1.353T14.564 18z"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgAsset as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgBroadcast = function SvgBroadcast(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M4.93 16.288a.73.73 0 0 1-.63.201.9.9 0 0 1-.594-.317 7.9 7.9 0 0 1-1.267-2.256A7.6 7.6 0 0 1 2 11.323q0-1.628.627-3.044a7.9 7.9 0 0 1 1.724-2.485 8.1 8.1 0 0 1 2.558-1.682A7.9 7.9 0 0 1 10 3.5q1.665 0 3.113.612a8.1 8.1 0 0 1 2.542 1.682 7.9 7.9 0 0 1 1.72 2.485q.624 1.415.625 3.044 0 1.369-.44 2.61a7.3 7.3 0 0 1-1.287 2.26.86.86 0 0 1-.597.303.76.76 0 0 1-.632-.22q-.291-.285-.278-.605.011-.322.239-.61.626-.753.983-1.706a5.8 5.8 0 0 0 .357-2.032q0-2.574-1.857-4.389T10 5.118 5.512 6.934Q3.655 8.75 3.655 11.323a6.05 6.05 0 0 0 1.29 3.767q.206.288.224.618a.73.73 0 0 1-.239.58m2.165-2.125q-.265.26-.596.22a.84.84 0 0 1-.544-.278 4.1 4.1 0 0 1-.676-1.287 5 5 0 0 1-.223-1.495q0-2.025 1.437-3.43T10 6.488q2.07 0 3.507 1.405t1.437 3.43q0 .79-.233 1.5a4.4 4.4 0 0 1-.709 1.323.68.68 0 0 1-.512.268q-.32.021-.585-.238-.266-.26-.257-.558.008-.3.15-.621.247-.348.37-.769a3.3 3.3 0 0 0 .121-.905q0-1.342-.959-2.279-.959-.938-2.33-.938t-2.33.938a3.07 3.07 0 0 0-.96 2.279q0 .471.122.899.123.427.37.775.142.323.15.614.009.293-.257.552M10 12.671q-.57 0-.975-.395a1.29 1.29 0 0 1-.404-.953q0-.558.404-.954T10 9.974t.975.395q.405.396.404.954 0 .558-.404.953-.404.396-.975.395"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgBroadcast as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
var _path;
|
|
4
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
|
+
var SvgCatalog = function SvgCatalog(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#6265AD",
|
|
12
|
+
d: "M3.688 17q-.706 0-1.198-.497A1.66 1.66 0 0 1 2 15.29V8.501q0-.303.213-.52a.7.7 0 0 1 .512-.218q.3 0 .516.217a.71.71 0 0 1 .217.521v6.79q0 .1.065.167a.22.22 0 0 0 .165.065h11.64a.7.7 0 0 1 .514.216.7.7 0 0 1 .214.519.72.72 0 0 1-.214.522.7.7 0 0 1-.515.22zm2.804-2.84q-.707 0-1.198-.497a1.66 1.66 0 0 1-.49-1.213V4.71q0-.73.49-1.22A1.63 1.63 0 0 1 6.492 3h2.697q.335 0 .645.125.311.126.57.388l1.288 1.305h4.62q.72 0 1.204.49T18 6.528v5.922q0 .716-.484 1.213a1.61 1.61 0 0 1-1.204.497z"
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { SvgCatalog as default };
|