@orfium/ictinus 5.43.6 → 5.43.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Avatar/UserAvatar.js +5 -6
- package/dist/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.js +7 -8
- package/dist/components/Button/Button.js +21 -22
- package/dist/components/ButtonBase/constants.js +1 -7
- package/dist/components/Controls/CheckBox/CheckBox.js +28 -27
- package/dist/components/IconButton/IconButton.js +11 -10
- package/dist/index.js +233 -239
- package/dist/package.json.d.ts +8 -5
- package/dist/package.json.js +1 -1
- package/dist/src/actions/ActionsContent.d.ts +281 -281
- package/dist/src/actions/ActionsRoot.d.ts +281 -281
- package/dist/src/components/Avatar/UserAvatar.d.ts +1 -2
- package/dist/src/components/IconButton/IconButton.d.ts +5 -6
- package/dist/src/data-table/DataTable.d.ts +281 -281
- package/dist/src/data-table/DataTableBody.d.ts +281 -281
- package/dist/src/data-table/DataTableHeader.d.ts +281 -281
- package/dist/src/data-table/DataTableRow.d.ts +563 -563
- package/dist/src/index.d.ts +0 -2
- package/dist/src/skeleton/Skeleton.d.ts +281 -281
- package/dist/src/sprinkles/properties.css.d.ts +369 -369
- package/dist/src/sprinkles/sprinkles.d.ts +625 -625
- package/dist/src/vanilla/Box/Box.d.ts +281 -281
- package/dist/src/vanilla/Box/extractBoxProps.d.ts +2 -2
- package/dist/src/vanilla/Table/Table.d.ts +281 -281
- package/dist/src/vanilla/Table/TableBody.d.ts +281 -281
- package/dist/src/vanilla/Table/TableCell.d.ts +282 -282
- package/dist/src/vanilla/Table/TableFooter.d.ts +281 -281
- package/dist/src/vanilla/Table/TableHeader.d.ts +281 -281
- package/dist/src/vanilla/Table/TableHeaderCell.d.ts +282 -282
- package/dist/src/vanilla/Table/TableRow.d.ts +281 -281
- package/dist/src/vanilla/Text/Text.d.ts +281 -281
- package/dist/src/vanilla/index.d.ts +2 -0
- package/dist/vanilla/Dropdown/Dropdown-css.js +3 -4
- package/dist/vanilla/Menu/Menu-css.js +5 -6
- package/dist/vanilla/Popover/Popover-css.js +4 -5
- package/dist/vanilla/Table/Table-css.js +5 -6
- package/dist/vanilla/Table/TableBody-css.js +3 -3
- package/dist/vanilla/Table/TableCell-css.js +5 -6
- package/dist/vanilla/Table/TableFooter-css.js +3 -3
- package/dist/vanilla/Table/TableHeader-css.js +3 -3
- package/dist/vanilla/Table/TableHeaderCell-css.js +7 -8
- package/dist/vanilla/Table/TableRow-css.js +4 -5
- package/dist/vanilla/Text/Text-css.js +3 -3
- package/dist/vanilla/ThemeProvider/ThemeProvider.js +2 -0
- package/dist/vanilla/Tooltip/Tooltip-css.js +7 -8
- package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-CY_zQdRt.css +22 -0
- package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-Sfxv3QTp.css +4 -0
- package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-C5CLCAO-.css +70 -0
- package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-CJ7qRgCp.css +36 -0
- package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-DOIEZBDT.css +1 -0
- package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-DdlGEtT6.css +6 -0
- package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-DunamBlA.css +10127 -0
- package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-CCuBBcIY.css +15 -0
- package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-D_hJVnXG.css +10 -0
- package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-CtMyXgp5.css +21 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-NM1bg9yo.css +6 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-C9lOnXw3.css +28 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-DdPLAnn2.css +11 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-BFZehdGr.css +8 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-BKqTSx1s.css +25 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-ConQ39lM.css +18 -0
- package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-yQfwZHu2.css +38 -0
- package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-CgAdIrpn.css +39 -0
- package/dist/vanilla/index.d.ts +9735 -2
- package/dist/vanilla/index.js +3 -0
- package/dist/vanilla/package.json.js +1 -1
- package/dist/vanilla/src/actions/ActionsContent-css.js +5 -6
- package/dist/vanilla/src/actions/ActionsRoot-css.js +3 -3
- package/dist/vanilla/src/components/Avatar/UserAvatar.js +4 -6
- package/dist/vanilla/src/components/Button/Button.js +5 -8
- package/dist/vanilla/src/components/ButtonBase/constants.js +1 -7
- package/dist/vanilla/src/components/Controls/CheckBox/CheckBox.js +7 -6
- package/dist/vanilla/src/components/Icon/Icon.js +44 -0
- package/dist/vanilla/src/components/Icon/Icon.style.js +42 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/forward.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/next.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/pause.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/play.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/previous.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/resume.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/rewind.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/stop.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/check.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/close.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/columnChooser.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/convert.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/copy.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/delete.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/download.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/edit.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/login.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/logout.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/mediaFile.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/minus.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/plus.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/redo.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/refresh.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/restore.svg.js +19 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/review.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/search.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/share.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sort.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sortAscending.svg.js +24 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sortDescending.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/undo.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/update.svg.js +19 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/upload.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/analytics.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dashboard.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dataset.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/earnings.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/income.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/insight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/invoice.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/calendar.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/chat.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/delivery.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/details.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/externalLink.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/file.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/filter.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/issue.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/keyword.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/generic/language.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/legal.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/location.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/mail.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/manual.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/moreOptions.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/notification.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/policy.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/report.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/search filled.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/generic/settings.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/tag.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/iconSelector.js +301 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/album.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/artist.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/asset.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/broadcast.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/catalog.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/channel.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/cinema.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/claim.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/composition.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/concert.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/conflict.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/cueSheet.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/digital.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/distribution.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/license.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/playcount.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/publicPerformance.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/publisher.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/radio.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/recordLabel.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/recording.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/television.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/usage.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/work.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/writer.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/youTube.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/apps.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowLeft.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowRight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronLeft.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronRight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/menu.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/pageFirst.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/pageLast.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleDown.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleLeft.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleRight.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleUp.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/audio.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/audioOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmark.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmarkOff.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/eye.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/eyeOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/favorite.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/favoriteOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/flag.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/flagOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/freeze.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/image.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/imageOff.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/link.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/lock.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/pair.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unfreeze.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unlink.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unlock.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unpair.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/video.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/videoOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/account.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/entities.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/error.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/help.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/informational.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/organization.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/pending.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/role.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/statusIndicator.svg.js +20 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/success.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/unverified.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/user.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/users.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/verified.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/warning.svg.js +18 -0
- package/dist/vanilla/src/components/IconButton/IconButton.js +5 -4
- package/dist/vanilla/src/data-table/DataTableBody-css.js +11 -12
- package/dist/vanilla/src/data-table/DataTableBody.js +2 -2
- package/dist/vanilla/src/data-table/DataTableCheckbox.js +1 -1
- package/dist/vanilla/src/data-table/DataTableHeaderCell-css.js +9 -10
- package/dist/vanilla/src/data-table/DataTableHeaderCell.js +1 -1
- package/dist/vanilla/src/data-table/DataTableRow.js +6 -1
- package/dist/vanilla/src/layers/layers-css.js +9 -0
- package/dist/vanilla/src/skeleton/Skeleton-css.js +4 -5
- package/dist/vanilla/src/sprinkles/properties-css.js +5 -6
- package/dist/vanilla/src/sprinkles/sprinkles.js +3 -3
- package/package.json +8 -5
- package/.turbo/turbo-build.log +0 -660
- package/CHANGELOG.md +0 -163
- package/codemods/avatarCodemod.ts +0 -53
- package/codemods/buttonCodemod.ts +0 -52
- package/codemods/checkboxCodemod.ts +0 -42
- package/codemods/chipCodemode.ts +0 -45
- package/codemods/drawerCodemod.ts +0 -73
- package/codemods/filterCodemod.ts +0 -29
- package/codemods/globalsCodemod.ts +0 -145
- package/codemods/iconButtonCodemod.ts +0 -54
- package/codemods/iconCodemod.ts +0 -24
- package/codemods/loaderCodemod.ts +0 -47
- package/codemods/menuCodemod.ts +0 -43
- package/codemods/notificationsCodemod.ts +0 -21
- package/codemods/paginationCodemod.ts +0 -36
- package/codemods/radioCodemod.ts +0 -27
- package/codemods/radioGroupCodemod.ts +0 -23
- package/codemods/searchCodemod.ts +0 -38
- package/codemods/selectCodemod.ts +0 -88
- package/codemods/switchCodemod.ts +0 -40
- package/codemods/tableCodemod.ts +0 -24
- package/codemods/textareaCodemod.ts +0 -58
- package/codemods/textfieldCodemod.ts +0 -55
- package/codemods/tooltipCodemod.ts +0 -35
- package/codemods/unchangedIconsCodemod.ts +0 -62
- package/dist/icon/Icon.js +0 -309
- package/dist/icons/AccountIcon.js +0 -8
- package/dist/icons/AlbumIcon.js +0 -8
- package/dist/icons/AnalyticsIcon.js +0 -8
- package/dist/icons/AppsIcon.js +0 -8
- package/dist/icons/ArrowDownIcon.js +0 -8
- package/dist/icons/ArrowLeftIcon.js +0 -8
- package/dist/icons/ArrowRightIcon.js +0 -8
- package/dist/icons/ArrowUpIcon.js +0 -8
- package/dist/icons/ArtistIcon.js +0 -8
- package/dist/icons/AssetIcon.js +0 -8
- package/dist/icons/AudioIcon.js +0 -8
- package/dist/icons/AudioOffIcon.js +0 -13
- package/dist/icons/BookmarkIcon.js +0 -8
- package/dist/icons/BookmarkOffIcon.js +0 -8
- package/dist/icons/BroadcastIcon.js +0 -8
- package/dist/icons/CalendarIcon.js +0 -8
- package/dist/icons/CatalogIcon.js +0 -8
- package/dist/icons/ChannelIcon.js +0 -12
- package/dist/icons/ChatIcon.js +0 -8
- package/dist/icons/CheckIcon.js +0 -8
- package/dist/icons/ChevronDownIcon.js +0 -8
- package/dist/icons/ChevronLeftIcon.js +0 -8
- package/dist/icons/ChevronRightIcon.js +0 -8
- package/dist/icons/ChevronUpIcon.js +0 -8
- package/dist/icons/CinemaIcon.js +0 -8
- package/dist/icons/ClaimIcon.js +0 -8
- package/dist/icons/CloseIcon.js +0 -8
- package/dist/icons/ColumnChooserIcon.js +0 -8
- package/dist/icons/CompositionIcon.js +0 -8
- package/dist/icons/ConcertIcon.js +0 -8
- package/dist/icons/ConflictIcon.js +0 -8
- package/dist/icons/ConvertIcon.js +0 -8
- package/dist/icons/CopyIcon.js +0 -8
- package/dist/icons/CueSheetIcon.js +0 -8
- package/dist/icons/DashboardIcon.js +0 -8
- package/dist/icons/DatasetIcon.js +0 -8
- package/dist/icons/DeleteIcon.js +0 -8
- package/dist/icons/DeliveryIcon.js +0 -8
- package/dist/icons/DetailsIcon.js +0 -8
- package/dist/icons/DigitalIcon.js +0 -8
- package/dist/icons/DistributionIcon.js +0 -8
- package/dist/icons/DownloadIcon.js +0 -8
- package/dist/icons/EarningsIcon.js +0 -8
- package/dist/icons/EditIcon.js +0 -8
- package/dist/icons/EntitiesIcon.js +0 -8
- package/dist/icons/ErrorIcon.js +0 -8
- package/dist/icons/ExternalLinkIcon.js +0 -8
- package/dist/icons/EyeIcon.js +0 -8
- package/dist/icons/EyeOffIcon.js +0 -8
- package/dist/icons/FavoriteIcon.js +0 -8
- package/dist/icons/FavoriteOffIcon.js +0 -8
- package/dist/icons/FileIcon.js +0 -8
- package/dist/icons/FilterIcon.js +0 -8
- package/dist/icons/FlagIcon.js +0 -8
- package/dist/icons/FlagOffIcon.js +0 -8
- package/dist/icons/ForwardIcon.js +0 -8
- package/dist/icons/FreezeIcon.js +0 -8
- package/dist/icons/HelpIcon.js +0 -8
- package/dist/icons/ImageIcon.js +0 -8
- package/dist/icons/ImageOffIcon.js +0 -11
- package/dist/icons/IncomeIcon.js +0 -8
- package/dist/icons/InformationalIcon.js +0 -8
- package/dist/icons/InsightIcon.js +0 -8
- package/dist/icons/InvoiceIcon.js +0 -8
- package/dist/icons/IssueIcon.js +0 -8
- package/dist/icons/KeywordIcon.js +0 -8
- package/dist/icons/LanguageIcon.js +0 -8
- package/dist/icons/LegalIcon.js +0 -8
- package/dist/icons/LicenseIcon.js +0 -8
- package/dist/icons/LinkIcon.js +0 -8
- package/dist/icons/LocationIcon.js +0 -8
- package/dist/icons/LockIcon.js +0 -8
- package/dist/icons/LoginIcon.js +0 -8
- package/dist/icons/LogoutIcon.js +0 -8
- package/dist/icons/MailIcon.js +0 -8
- package/dist/icons/ManualIcon.js +0 -8
- package/dist/icons/MediaFileIcon.js +0 -8
- package/dist/icons/MenuIcon.js +0 -8
- package/dist/icons/MinusIcon.js +0 -8
- package/dist/icons/MoreOptionsIcon.js +0 -12
- package/dist/icons/NextIcon.js +0 -8
- package/dist/icons/NotificationIcon.js +0 -8
- package/dist/icons/OrganizationIcon.js +0 -8
- package/dist/icons/PageFirstIcon.js +0 -8
- package/dist/icons/PageLastIcon.js +0 -8
- package/dist/icons/PairIcon.js +0 -8
- package/dist/icons/PauseIcon.js +0 -8
- package/dist/icons/PendingIcon.js +0 -8
- package/dist/icons/PlayIcon.js +0 -8
- package/dist/icons/PlaycountIcon.js +0 -8
- package/dist/icons/PlusIcon.js +0 -8
- package/dist/icons/PolicyIcon.js +0 -8
- package/dist/icons/PreviousIcon.js +0 -8
- package/dist/icons/PublicPerformanceIcon.js +0 -8
- package/dist/icons/PublisherIcon.js +0 -11
- package/dist/icons/RadioIcon.js +0 -8
- package/dist/icons/RecordLabelIcon.js +0 -8
- package/dist/icons/RecordingIcon.js +0 -8
- package/dist/icons/RedoIcon.js +0 -8
- package/dist/icons/RefreshIcon.js +0 -8
- package/dist/icons/ReportIcon.js +0 -8
- package/dist/icons/RestoreIcon.js +0 -11
- package/dist/icons/ResumeIcon.js +0 -11
- package/dist/icons/ReviewIcon.js +0 -8
- package/dist/icons/RewindIcon.js +0 -8
- package/dist/icons/RoleIcon.js +0 -8
- package/dist/icons/SearchFilledIcon.js +0 -8
- package/dist/icons/SearchIcon.js +0 -8
- package/dist/icons/SettingsIcon.js +0 -8
- package/dist/icons/ShareIcon.js +0 -8
- package/dist/icons/SortAscendingIcon.js +0 -12
- package/dist/icons/SortDescendingIcon.js +0 -12
- package/dist/icons/SortIcon.js +0 -11
- package/dist/icons/StatusIndicatorIcon.js +0 -8
- package/dist/icons/StopIcon.js +0 -8
- package/dist/icons/SuccessIcon.js +0 -8
- package/dist/icons/TagIcon.js +0 -8
- package/dist/icons/TelevisionIcon.js +0 -8
- package/dist/icons/ThumbsDownIcon.js +0 -8
- package/dist/icons/ThumbsUpIcon.js +0 -8
- package/dist/icons/TrendingDownIcon.js +0 -8
- package/dist/icons/TrendingUpIcon.js +0 -8
- package/dist/icons/TriangleDownIcon.js +0 -8
- package/dist/icons/TriangleLeftIcon.js +0 -8
- package/dist/icons/TriangleRightIcon.js +0 -8
- package/dist/icons/TriangleUpIcon.js +0 -8
- package/dist/icons/UndoIcon.js +0 -8
- package/dist/icons/UnfreezeIcon.js +0 -11
- package/dist/icons/UnlinkIcon.js +0 -8
- package/dist/icons/UnlockIcon.js +0 -8
- package/dist/icons/UnpairIcon.js +0 -8
- package/dist/icons/UnverifiedIcon.js +0 -11
- package/dist/icons/UpdateIcon.js +0 -11
- package/dist/icons/UploadIcon.js +0 -8
- package/dist/icons/UsageIcon.js +0 -8
- package/dist/icons/UserIcon.js +0 -8
- package/dist/icons/UsersIcon.js +0 -13
- package/dist/icons/VerifiedIcon.js +0 -8
- package/dist/icons/VideoIcon.js +0 -8
- package/dist/icons/VideoOffIcon.js +0 -11
- package/dist/icons/WarningIcon.js +0 -8
- package/dist/icons/WorkIcon.js +0 -8
- package/dist/icons/WriterIcon.js +0 -12
- package/dist/icons/YouTubeIcon.js +0 -8
- package/dist/layers/layers.css.js +0 -9
- package/dist/layers/layers.css.ts.vanilla.css +0 -1
- package/dist/sprinkles/createSprinklesMerge.js +0 -27
- package/dist/sprinkles/properties.css.js +0 -9
- package/dist/sprinkles/properties.css.ts.vanilla.css +0 -1
- package/dist/sprinkles/sprinkles.js +0 -8
- package/dist/sprinkles/sprinklesMerge.js +0 -6
- package/dist/utils/cn.js +0 -7
- package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-BVxWvGVF.css +0 -22
- package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-B5JvX1-v.css +0 -4
- package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-B8JRxzQ8.css +0 -70
- package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-B2HJ86a7.css +0 -36
- package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css +0 -1
- package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-CNzX69JK.css +0 -6
- package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css +0 -10127
- package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-C4DzWzim.css +0 -15
- package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-CVYpB1bf.css +0 -10
- package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-D8zK7RSt.css +0 -21
- package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-BWkZ_Hqu.css +0 -6
- package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-BmF3z2D_.css +0 -28
- package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-CpsnDIuH.css +0 -11
- package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-2yw_MsU1.css +0 -8
- package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-CZtubUTB.css +0 -25
- package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-B1NNK8v8.css +0 -18
- package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-cv9I-28W.css +0 -38
- package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-nRPDcOsw.css +0 -39
- package/dist/vanilla-extract/global.css.ts.vanilla.css +0 -1
- package/eslint.config.mjs +0 -176
- package/postcss.config.mjs +0 -13
- package/rollup.config.mjs +0 -66
- package/src/actions/ActionsContent.css.ts +0 -52
- package/src/actions/ActionsContent.tsx +0 -19
- package/src/actions/ActionsRoot.css.ts +0 -8
- package/src/actions/ActionsRoot.tsx +0 -19
- package/src/actions/index.ts +0 -2
- package/src/components/Avatar/Avatar.style.ts +0 -124
- package/src/components/Avatar/Avatar.tsx +0 -38
- package/src/components/Avatar/Avatar.types.ts +0 -24
- package/src/components/Avatar/AvatarStack/AvatarStack.style.ts +0 -25
- package/src/components/Avatar/AvatarStack/AvatarStack.tsx +0 -49
- package/src/components/Avatar/AvatarStack/AvatarStack.types.ts +0 -12
- package/src/components/Avatar/AvatarStack/index.ts +0 -2
- package/src/components/Avatar/AvatarStack/utils.ts +0 -10
- package/src/components/Avatar/UserAvatar.tsx +0 -18
- package/src/components/Avatar/index.ts +0 -3
- package/src/components/Box/Box.style.ts +0 -3
- package/src/components/Box/Box.test.ts +0 -98
- package/src/components/Box/Box.tsx +0 -57
- package/src/components/Box/Box.types.ts +0 -336
- package/src/components/Box/Box.utilities.ts +0 -171
- package/src/components/Box/index.ts +0 -3
- package/src/components/Breadcrumb/BackToItem/BackToItem.tsx +0 -25
- package/src/components/Breadcrumb/BackToItem/index.ts +0 -1
- package/src/components/Breadcrumb/Breadcrumb.style.ts +0 -16
- package/src/components/Breadcrumb/Breadcrumb.tsx +0 -79
- package/src/components/Breadcrumb/Breadcrumb.types.ts +0 -16
- package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.style.ts +0 -25
- package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.tsx +0 -35
- package/src/components/Breadcrumb/BreadcrumbItem/index.ts +0 -1
- package/src/components/Breadcrumb/index.ts +0 -3
- package/src/components/Broadcast/Broadcast.style.ts +0 -132
- package/src/components/Broadcast/Broadcast.tsx +0 -89
- package/src/components/Broadcast/Broadcast.types.ts +0 -43
- package/src/components/Broadcast/index.ts +0 -1
- package/src/components/Broadcast/tests/Broadcast.test.tsx +0 -71
- package/src/components/Button/Button.tsx +0 -57
- package/src/components/Button/Button.types.ts +0 -5
- package/src/components/Button/ButtonLoader/ButtonLoader.style.ts +0 -49
- package/src/components/Button/ButtonLoader/ButtonLoader.tsx +0 -20
- package/src/components/Button/ButtonLoader/index.ts +0 -2
- package/src/components/Button/index.ts +0 -2
- package/src/components/ButtonBase/ButtonBase.style.ts +0 -94
- package/src/components/ButtonBase/ButtonBase.tsx +0 -102
- package/src/components/ButtonBase/constants.ts +0 -43
- package/src/components/ButtonBase/index.ts +0 -2
- package/src/components/Card/Card.style.ts +0 -17
- package/src/components/Card/Card.tsx +0 -25
- package/src/components/Card/index.ts +0 -2
- package/src/components/Chart/BarChart/BarChart.tsx +0 -154
- package/src/components/Chart/BarChart/components/CustomLabel/CustomLabel.tsx +0 -35
- package/src/components/Chart/BarChart/components/CustomLabel/index.ts +0 -1
- package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.style.ts +0 -36
- package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.tsx +0 -47
- package/src/components/Chart/BarChart/components/CustomTooltip/index.ts +0 -1
- package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.style.ts +0 -45
- package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.tsx +0 -31
- package/src/components/Chart/BarChart/components/CustomTooltipContent/index.ts +0 -1
- package/src/components/Chart/BarChart/index.ts +0 -1
- package/src/components/Chart/BarChart/utils.ts +0 -69
- package/src/components/Chart/DonutChart/DonutChart.tsx +0 -50
- package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.style.ts +0 -16
- package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.tsx +0 -45
- package/src/components/Chart/DonutChart/components/CustomLabel/index.ts +0 -1
- package/src/components/Chart/DonutChart/index.ts +0 -1
- package/src/components/Chart/LineChart/LineChart.test.ts +0 -33
- package/src/components/Chart/LineChart/LineChart.tsx +0 -103
- package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.style.ts +0 -40
- package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.tsx +0 -32
- package/src/components/Chart/LineChart/components/CustomTooltip/index.ts +0 -1
- package/src/components/Chart/LineChart/components/GradientLine/GradientLine.tsx +0 -17
- package/src/components/Chart/LineChart/components/GradientLine/index.ts +0 -1
- package/src/components/Chart/LineChart/index.ts +0 -1
- package/src/components/Chart/LineChart/mockedData.ts +0 -43
- package/src/components/Chart/LineChart/story.utils.ts +0 -13
- package/src/components/Chart/LineChart/utils.ts +0 -33
- package/src/components/Chart/Wrapper.tsx +0 -31
- package/src/components/Controls/CheckBox/CheckBox.style.ts +0 -84
- package/src/components/Controls/CheckBox/CheckBox.test.tsx +0 -86
- package/src/components/Controls/CheckBox/CheckBox.tsx +0 -98
- package/src/components/Controls/CheckBox/__snapshots__/CheckBox.stories.storyshot +0 -2410
- package/src/components/Controls/CheckBox/__snapshots__/CheckBox.test.tsx.snap +0 -145
- package/src/components/Controls/CheckBox/index.ts +0 -2
- package/src/components/Controls/ControlLabel/ControlHelpText.tsx +0 -16
- package/src/components/Controls/ControlLabel/ControlLabel.style.ts +0 -39
- package/src/components/Controls/ControlLabel/ControlLabelText.tsx +0 -18
- package/src/components/Controls/ControlLabel/index.ts +0 -2
- package/src/components/Controls/Controls.types.ts +0 -12
- package/src/components/Controls/Radio/Radio.style.ts +0 -96
- package/src/components/Controls/Radio/Radio.test.tsx +0 -62
- package/src/components/Controls/Radio/Radio.tsx +0 -73
- package/src/components/Controls/Radio/__snapshots__/Radio.stories.storyshot +0 -2659
- package/src/components/Controls/Radio/__snapshots__/Radio.test.tsx.snap +0 -122
- package/src/components/Controls/Radio/components/RadioGroup/RadioGroup.tsx +0 -42
- package/src/components/Controls/Radio/components/RadioGroup/RadioGroupContext.ts +0 -6
- package/src/components/Controls/Radio/components/RadioGroup/index.ts +0 -2
- package/src/components/Controls/Radio/index.ts +0 -2
- package/src/components/Controls/Switch/Switch.style.ts +0 -91
- package/src/components/Controls/Switch/Switch.test.tsx +0 -53
- package/src/components/Controls/Switch/Switch.tsx +0 -84
- package/src/components/Controls/Switch/__snapshots__/Switch.test.tsx.snap +0 -141
- package/src/components/Controls/Switch/index.ts +0 -2
- package/src/components/Controls/index.ts +0 -5
- package/src/components/DatePicker/DatePickInput/DatePickInput.style.ts +0 -47
- package/src/components/DatePicker/DatePickInput/DatePickInput.tsx +0 -165
- package/src/components/DatePicker/DatePickInput/index.ts +0 -2
- package/src/components/DatePicker/DatePicker.style.ts +0 -15
- package/src/components/DatePicker/DatePicker.test.tsx +0 -346
- package/src/components/DatePicker/DatePicker.tsx +0 -231
- package/src/components/DatePicker/DatePicker.types.ts +0 -57
- package/src/components/DatePicker/Day/Day.style.ts +0 -111
- package/src/components/DatePicker/Day/Day.test.tsx +0 -97
- package/src/components/DatePicker/Day/Day.tsx +0 -100
- package/src/components/DatePicker/Day/__snapshots__/Day.test.tsx.snap +0 -320
- package/src/components/DatePicker/Day/index.ts +0 -2
- package/src/components/DatePicker/Month/Month.style.ts +0 -32
- package/src/components/DatePicker/Month/Month.test.tsx +0 -96
- package/src/components/DatePicker/Month/Month.tsx +0 -154
- package/src/components/DatePicker/Month/Month.utils.ts +0 -107
- package/src/components/DatePicker/Month/__snapshots__/Month.test.tsx.snap +0 -803
- package/src/components/DatePicker/Month/hooks/useMonthKeyboardNavigation.ts +0 -84
- package/src/components/DatePicker/Month/index.ts +0 -2
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.style.ts +0 -71
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.test.tsx +0 -109
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.tsx +0 -118
- package/src/components/DatePicker/OverlayComponent/__snapshots__/OverlayComponent.test.tsx.snap +0 -3183
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.style.ts +0 -55
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.test.tsx +0 -52
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.tsx +0 -154
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/__snapshots__/MonthWrapper.test.tsx.snap +0 -1098
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/index.ts +0 -0
- package/src/components/DatePicker/OverlayComponent/index.ts +0 -2
- package/src/components/DatePicker/OverlayComponent/utils.ts +0 -15
- package/src/components/DatePicker/constants.ts +0 -28
- package/src/components/DatePicker/index.ts +0 -4
- package/src/components/DatePicker/utils.ts +0 -17
- package/src/components/Drawer/Drawer.style.ts +0 -204
- package/src/components/Drawer/Drawer.test.tsx +0 -127
- package/src/components/Drawer/Drawer.tsx +0 -80
- package/src/components/Drawer/Drawer.types.ts +0 -20
- package/src/components/Drawer/DrawerContext.tsx +0 -103
- package/src/components/Drawer/components/DrawerContent/DrawerContent.tsx +0 -26
- package/src/components/Drawer/components/DrawerContent/hooks/useDrawerContentObserver.ts +0 -52
- package/src/components/Drawer/components/DrawerContent/index.ts +0 -1
- package/src/components/Drawer/components/DrawerFooter/DrawerFooter.tsx +0 -20
- package/src/components/Drawer/components/DrawerFooter/index.ts +0 -1
- package/src/components/Drawer/components/DrawerHeader/DrawerHeader.tsx +0 -22
- package/src/components/Drawer/components/DrawerHeader/index.ts +0 -1
- package/src/components/Drawer/components/index.ts +0 -3
- package/src/components/Drawer/index.ts +0 -5
- package/src/components/DropdownButton/DropdownButton.style.ts +0 -90
- package/src/components/DropdownButton/DropdownButton.test.tsx +0 -57
- package/src/components/DropdownButton/DropdownButton.tsx +0 -159
- package/src/components/DropdownButton/index.ts +0 -1
- package/src/components/ExpandCollapse/ExpandCollapse.style.ts +0 -9
- package/src/components/ExpandCollapse/ExpandCollapse.tsx +0 -56
- package/src/components/ExpandCollapse/ExpandCollapse.types.ts +0 -68
- package/src/components/ExpandCollapse/index.ts +0 -3
- package/src/components/ExpandCollapse/useManageContentRef.ts +0 -45
- package/src/components/ExpandCollapse/utils.ts +0 -21
- package/src/components/Filter/Filter.test.tsx +0 -218
- package/src/components/Filter/Filter.tsx +0 -162
- package/src/components/Filter/Filter.types.ts +0 -77
- package/src/components/Filter/StatefulFilter.tsx +0 -37
- package/src/components/Filter/components/FilterButton/FilterButton.style.ts +0 -74
- package/src/components/Filter/components/FilterButton/FilterButton.tsx +0 -101
- package/src/components/Filter/components/FilterButton/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/FilterMenu.style.ts +0 -15
- package/src/components/Filter/components/FilterMenu/FilterMenu.tsx +0 -78
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.style.ts +0 -31
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.tsx +0 -106
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/components/Options/Options.style.ts +0 -40
- package/src/components/Filter/components/FilterMenu/components/Options/Options.tsx +0 -94
- package/src/components/Filter/components/FilterMenu/components/Options/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/index.ts +0 -1
- package/src/components/Filter/constants.ts +0 -39
- package/src/components/Filter/hooks/index.ts +0 -1
- package/src/components/Filter/hooks/useFilterWithSelectionUtils.ts +0 -122
- package/src/components/Filter/index.ts +0 -3
- package/src/components/Icon/Icon.style.ts +0 -52
- package/src/components/Icon/Icon.tsx +0 -68
- package/src/components/Icon/Icon.types.ts +0 -169
- package/src/components/Icon/assets/audioControls/forward.svg +0 -3
- package/src/components/Icon/assets/audioControls/next.svg +0 -3
- package/src/components/Icon/assets/audioControls/pause.svg +0 -3
- package/src/components/Icon/assets/audioControls/play.svg +0 -3
- package/src/components/Icon/assets/audioControls/previous.svg +0 -3
- package/src/components/Icon/assets/audioControls/resume.svg +0 -4
- package/src/components/Icon/assets/audioControls/rewind.svg +0 -3
- package/src/components/Icon/assets/audioControls/stop.svg +0 -3
- package/src/components/Icon/assets/basicActions/check.svg +0 -3
- package/src/components/Icon/assets/basicActions/close.svg +0 -3
- package/src/components/Icon/assets/basicActions/columnChooser.svg +0 -3
- package/src/components/Icon/assets/basicActions/convert.svg +0 -3
- package/src/components/Icon/assets/basicActions/copy.svg +0 -3
- package/src/components/Icon/assets/basicActions/delete.svg +0 -3
- package/src/components/Icon/assets/basicActions/download.svg +0 -3
- package/src/components/Icon/assets/basicActions/edit.svg +0 -3
- package/src/components/Icon/assets/basicActions/login.svg +0 -3
- package/src/components/Icon/assets/basicActions/logout.svg +0 -3
- package/src/components/Icon/assets/basicActions/mediaFile.svg +0 -3
- package/src/components/Icon/assets/basicActions/minus.svg +0 -3
- package/src/components/Icon/assets/basicActions/plus.svg +0 -3
- package/src/components/Icon/assets/basicActions/redo.svg +0 -3
- package/src/components/Icon/assets/basicActions/refresh.svg +0 -3
- package/src/components/Icon/assets/basicActions/restore.svg +0 -4
- package/src/components/Icon/assets/basicActions/review.svg +0 -3
- package/src/components/Icon/assets/basicActions/search.svg +0 -3
- package/src/components/Icon/assets/basicActions/share.svg +0 -3
- package/src/components/Icon/assets/basicActions/sort.svg +0 -4
- package/src/components/Icon/assets/basicActions/sortAscending.svg +0 -5
- package/src/components/Icon/assets/basicActions/sortDescending.svg +0 -5
- package/src/components/Icon/assets/basicActions/thumbsDown.svg +0 -3
- package/src/components/Icon/assets/basicActions/thumbsUp.svg +0 -3
- package/src/components/Icon/assets/basicActions/undo.svg +0 -3
- package/src/components/Icon/assets/basicActions/update.svg +0 -4
- package/src/components/Icon/assets/basicActions/upload.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/analytics.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/dashboard.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/dataset.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/earnings.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/income.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/insight.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/invoice.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/trendingDown.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/trendingUp.svg +0 -3
- package/src/components/Icon/assets/generic/calendar.svg +0 -3
- package/src/components/Icon/assets/generic/chat.svg +0 -3
- package/src/components/Icon/assets/generic/delivery.svg +0 -3
- package/src/components/Icon/assets/generic/details.svg +0 -3
- package/src/components/Icon/assets/generic/externalLink.svg +0 -3
- package/src/components/Icon/assets/generic/file.svg +0 -3
- package/src/components/Icon/assets/generic/filter.svg +0 -3
- package/src/components/Icon/assets/generic/issue.svg +0 -3
- package/src/components/Icon/assets/generic/keyword.svg +0 -3
- package/src/components/Icon/assets/generic/language.svg +0 -3
- package/src/components/Icon/assets/generic/legal.svg +0 -3
- package/src/components/Icon/assets/generic/location.svg +0 -3
- package/src/components/Icon/assets/generic/mail.svg +0 -3
- package/src/components/Icon/assets/generic/manual.svg +0 -3
- package/src/components/Icon/assets/generic/moreOptions.svg +0 -5
- package/src/components/Icon/assets/generic/notification.svg +0 -3
- package/src/components/Icon/assets/generic/policy.svg +0 -3
- package/src/components/Icon/assets/generic/report.svg +0 -3
- package/src/components/Icon/assets/generic/search filled.svg +0 -3
- package/src/components/Icon/assets/generic/settings.svg +0 -3
- package/src/components/Icon/assets/generic/tag.svg +0 -3
- package/src/components/Icon/assets/iconSelector.ts +0 -312
- package/src/components/Icon/assets/musicBusiness/album.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/artist.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/asset.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/broadcast.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/catalog.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/channel.svg +0 -5
- package/src/components/Icon/assets/musicBusiness/cinema.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/claim.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/composition.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/concert.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/conflict.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/cueSheet.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/digital.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/distribution.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/license.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/playcount.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/publicPerformance.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/publisher.svg +0 -4
- package/src/components/Icon/assets/musicBusiness/radio.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/recordLabel.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/recording.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/television.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/usage.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/work.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/writer.svg +0 -5
- package/src/components/Icon/assets/musicBusiness/youTube.svg +0 -3
- package/src/components/Icon/assets/navigation/apps.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowDown.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowRight.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowUp.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronDown.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronRight.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronUp.svg +0 -3
- package/src/components/Icon/assets/navigation/menu.svg +0 -3
- package/src/components/Icon/assets/navigation/pageFirst.svg +0 -3
- package/src/components/Icon/assets/navigation/pageLast.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleDown.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleRight.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleUp.svg +0 -3
- package/src/components/Icon/assets/toggledActions/audio.svg +0 -3
- package/src/components/Icon/assets/toggledActions/audioOff.svg +0 -6
- package/src/components/Icon/assets/toggledActions/bookmark.svg +0 -3
- package/src/components/Icon/assets/toggledActions/bookmarkOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/eye.svg +0 -3
- package/src/components/Icon/assets/toggledActions/eyeOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/favorite.svg +0 -3
- package/src/components/Icon/assets/toggledActions/favoriteOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/flag.svg +0 -3
- package/src/components/Icon/assets/toggledActions/flagOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/freeze.svg +0 -3
- package/src/components/Icon/assets/toggledActions/image.svg +0 -3
- package/src/components/Icon/assets/toggledActions/imageOff.svg +0 -4
- package/src/components/Icon/assets/toggledActions/link.svg +0 -3
- package/src/components/Icon/assets/toggledActions/lock.svg +0 -3
- package/src/components/Icon/assets/toggledActions/pair.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unfreeze.svg +0 -4
- package/src/components/Icon/assets/toggledActions/unlink.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unlock.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unpair.svg +0 -3
- package/src/components/Icon/assets/toggledActions/video.svg +0 -3
- package/src/components/Icon/assets/toggledActions/videoOff.svg +0 -4
- package/src/components/Icon/assets/usersAndStatus/account.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/entities.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/error.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/help.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/informational.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/organization.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/pending.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/role.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/statusIndicator.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/success.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/unverified.svg +0 -4
- package/src/components/Icon/assets/usersAndStatus/user.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/users.svg +0 -6
- package/src/components/Icon/assets/usersAndStatus/verified.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/warning.svg +0 -3
- package/src/components/Icon/constants.ts +0 -199
- package/src/components/Icon/index.ts +0 -5
- package/src/components/IconButton/IconButton.tsx +0 -59
- package/src/components/IconButton/index.ts +0 -2
- package/src/components/InlineAlert/InlineAlert.style.ts +0 -117
- package/src/components/InlineAlert/InlineAlert.tsx +0 -89
- package/src/components/InlineAlert/InlineAlert.types.ts +0 -48
- package/src/components/InlineAlert/index.ts +0 -2
- package/src/components/InlineAlert/tests/InlineAlert.test.tsx +0 -71
- package/src/components/Label/Label.style.ts +0 -42
- package/src/components/Label/Label.tsx +0 -36
- package/src/components/Label/index.ts +0 -2
- package/src/components/Link/Link.style.ts +0 -90
- package/src/components/Link/Link.tsx +0 -58
- package/src/components/Link/Link.types.ts +0 -23
- package/src/components/Link/index.ts +0 -1
- package/src/components/List/List.style.ts +0 -50
- package/src/components/List/List.tsx +0 -168
- package/src/components/List/ListItem.tsx +0 -28
- package/src/components/List/ListSection.tsx +0 -22
- package/src/components/List/Window.tsx +0 -86
- package/src/components/List/components/ListItemAction/ListItemAction.style.ts +0 -10
- package/src/components/List/components/ListItemAction/ListItemAction.tsx +0 -12
- package/src/components/List/components/ListItemAction/index.ts +0 -2
- package/src/components/List/components/ListItemText/ListItemText.style.ts +0 -45
- package/src/components/List/components/ListItemText/ListItemText.tsx +0 -19
- package/src/components/List/components/ListItemText/index.ts +0 -2
- package/src/components/List/components/ListItemWrapper/ListItemWrapper.style.ts +0 -65
- package/src/components/List/components/ListItemWrapper/ListItemWrapper.tsx +0 -49
- package/src/components/List/components/ListItemWrapper/README.md +0 -1
- package/src/components/List/components/ListItemWrapper/index.ts +0 -2
- package/src/components/List/index.ts +0 -7
- package/src/components/List/types.ts +0 -13
- package/src/components/List/utils.tsx +0 -13
- package/src/components/Menu/Menu.style.ts +0 -83
- package/src/components/Menu/Menu.tsx +0 -91
- package/src/components/Menu/MenuItemDivider.tsx +0 -31
- package/src/components/Menu/index.ts +0 -4
- package/src/components/Modal/Modal.style.ts +0 -45
- package/src/components/Modal/Modal.test.tsx +0 -93
- package/src/components/Modal/Modal.tsx +0 -87
- package/src/components/Modal/ModalContent/ModalContent.style.ts +0 -47
- package/src/components/Modal/ModalContent/ModalContent.tsx +0 -78
- package/src/components/Modal/ModalContent/index.ts +0 -1
- package/src/components/Modal/index.ts +0 -1
- package/src/components/MultiTextFieldBase/MultiTextFieldBase.style.ts +0 -111
- package/src/components/MultiTextFieldBase/MultiTextFieldBase.tsx +0 -181
- package/src/components/MultiTextFieldBase/hooks.tsx +0 -97
- package/src/components/MultiTextFieldBase/index.ts +0 -1
- package/src/components/Notification/Banner/Banner.tsx +0 -63
- package/src/components/Notification/Banner/index.tsx +0 -2
- package/src/components/Notification/InlineNotification/InlineNotification.tsx +0 -59
- package/src/components/Notification/InlineNotification/index.tsx +0 -2
- package/src/components/Notification/Notification.style.ts +0 -59
- package/src/components/Notification/Notification.test.tsx +0 -293
- package/src/components/Notification/Notification.tsx +0 -16
- package/src/components/Notification/NotificationVisual/NotificationVisual.style.tsx +0 -14
- package/src/components/Notification/NotificationVisual/NotificationVisual.tsx +0 -58
- package/src/components/Notification/NotificationVisual/index.tsx +0 -2
- package/src/components/Notification/NotificationsContainer/NotificationsContainer.style.tsx +0 -54
- package/src/components/Notification/NotificationsContainer/NotificationsContainer.tsx +0 -31
- package/src/components/Notification/NotificationsContainer/index.ts +0 -2
- package/src/components/Notification/Snackbar/Snackbar.style.ts +0 -55
- package/src/components/Notification/Snackbar/Snackbar.tsx +0 -94
- package/src/components/Notification/Snackbar/index.tsx +0 -2
- package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.style.ts +0 -48
- package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.tsx +0 -118
- package/src/components/Notification/subcomponents/CompactNotification/index.tsx +0 -2
- package/src/components/Notification/subcomponents/NotificationActionsArea/NotificationActionsArea.tsx +0 -43
- package/src/components/Notification/subcomponents/NotificationActionsArea/index.ts +0 -1
- package/src/components/NumberField/NumberField.style.ts +0 -10
- package/src/components/NumberField/NumberField.test.tsx +0 -83
- package/src/components/NumberField/NumberField.tsx +0 -135
- package/src/components/NumberField/components/Stepper/Stepper.style.ts +0 -37
- package/src/components/NumberField/components/Stepper/Stepper.tsx +0 -46
- package/src/components/NumberField/components/Stepper/index.ts +0 -1
- package/src/components/NumberField/index.ts +0 -2
- package/src/components/Pagination/Pagination.tsx +0 -86
- package/src/components/Pagination/index.ts +0 -2
- package/src/components/ProgressIndicator/ProgressIndicator.tsx +0 -25
- package/src/components/ProgressIndicator/ProgressIndicator.types.ts +0 -12
- package/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.stories.storyshot +0 -883
- package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.style.ts +0 -85
- package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.tsx +0 -37
- package/src/components/ProgressIndicator/components/ProgressBar/index.ts +0 -1
- package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.style.ts +0 -24
- package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.tsx +0 -60
- package/src/components/ProgressIndicator/components/ProgressCircle/index.ts +0 -1
- package/src/components/ProgressIndicator/index.ts +0 -1
- package/src/components/Search/Search.style.ts +0 -104
- package/src/components/Search/Search.test.tsx +0 -87
- package/src/components/Search/Search.tsx +0 -86
- package/src/components/Search/Search.types.ts +0 -33
- package/src/components/Search/StatefulSearch.tsx +0 -66
- package/src/components/Search/constants.ts +0 -10
- package/src/components/Search/index.ts +0 -3
- package/src/components/Select/Select.style.ts +0 -21
- package/src/components/Select/Select.test.tsx +0 -413
- package/src/components/Select/Select.tsx +0 -406
- package/src/components/Select/StatefulSelect.tsx +0 -36
- package/src/components/Select/components/SelectMenu/SelectMenu.style.tsx +0 -66
- package/src/components/Select/components/SelectMenu/SelectMenu.tsx +0 -119
- package/src/components/Select/components/SelectMenu/index.ts +0 -2
- package/src/components/Select/constants.ts +0 -58
- package/src/components/Select/index.ts +0 -4
- package/src/components/Select/types.ts +0 -74
- package/src/components/Slider/Slider.style.tsx +0 -23
- package/src/components/Slider/Slider.tsx +0 -208
- package/src/components/Slider/components/SliderMark/SliderMark.style.tsx +0 -74
- package/src/components/Slider/components/SliderMark/SliderMark.tsx +0 -54
- package/src/components/Slider/components/SliderMark/index.ts +0 -2
- package/src/components/Slider/components/SliderThumb/SliderThumb.style.tsx +0 -44
- package/src/components/Slider/components/SliderThumb/SliderThumb.tsx +0 -36
- package/src/components/Slider/components/SliderThumb/index.ts +0 -2
- package/src/components/Slider/components/SliderTrack/SliderTrack.style.tsx +0 -14
- package/src/components/Slider/components/SliderTrack/SliderTrack.tsx +0 -58
- package/src/components/Slider/components/SliderTrack/index.ts +0 -2
- package/src/components/Slider/index.ts +0 -2
- package/src/components/TabStepper/TabStepper.tsx +0 -44
- package/src/components/TabStepper/components/TabStep/TabStep.style.ts +0 -29
- package/src/components/TabStepper/components/TabStep/TabStep.tsx +0 -75
- package/src/components/TabStepper/components/TabStep/index.ts +0 -1
- package/src/components/TabStepper/components/TabStepList/TabStepList.style.ts +0 -126
- package/src/components/TabStepper/components/TabStepList/TabStepList.tsx +0 -19
- package/src/components/TabStepper/components/TabStepList/index.ts +0 -1
- package/src/components/TabStepper/components/index.ts +0 -2
- package/src/components/TabStepper/index.ts +0 -3
- package/src/components/TabStepper/types.ts +0 -48
- package/src/components/TabStepper/utils/TabStepperStoryComponents.tsx +0 -8
- package/src/components/Table/Table.style.ts +0 -30
- package/src/components/Table/Table.tsx +0 -167
- package/src/components/Table/components/OptimizedTableRow.tsx +0 -121
- package/src/components/Table/components/TBody/TBody.style.ts +0 -22
- package/src/components/Table/components/TBody/TBody.tsx +0 -25
- package/src/components/Table/components/TBody/index.ts +0 -1
- package/src/components/Table/components/TD/TD.style.ts +0 -64
- package/src/components/Table/components/TD/TD.tsx +0 -64
- package/src/components/Table/components/TD/index.ts +0 -1
- package/src/components/Table/components/TH/TH.style.ts +0 -88
- package/src/components/Table/components/TH/TH.tsx +0 -120
- package/src/components/Table/components/TH/components/SortingButton/SortingButton.style.ts +0 -14
- package/src/components/Table/components/TH/components/SortingButton/SortingButton.tsx +0 -48
- package/src/components/Table/components/TH/components/SortingButton/index.ts +0 -1
- package/src/components/Table/components/TH/components/THOptions/THOptions.style.ts +0 -8
- package/src/components/Table/components/TH/components/THOptions/THOptions.tsx +0 -106
- package/src/components/Table/components/TH/components/THOptions/components/SortingOption.tsx +0 -40
- package/src/components/Table/components/TH/components/THOptions/components/index.ts +0 -1
- package/src/components/Table/components/TH/components/THOptions/index.ts +0 -1
- package/src/components/Table/components/TH/components/index.ts +0 -1
- package/src/components/Table/components/TH/index.ts +0 -1
- package/src/components/Table/components/THead/THead.style.ts +0 -34
- package/src/components/Table/components/THead/THead.tsx +0 -18
- package/src/components/Table/components/THead/index.ts +0 -1
- package/src/components/Table/components/TPagination/TPagination.style.ts +0 -59
- package/src/components/Table/components/TPagination/TPagination.tsx +0 -106
- package/src/components/Table/components/TPagination/index.ts +0 -1
- package/src/components/Table/components/TR/TR.style.ts +0 -33
- package/src/components/Table/components/TR/TR.tsx +0 -39
- package/src/components/Table/components/TR/index.ts +0 -1
- package/src/components/Table/components/TTitle/TTitle.style.ts +0 -33
- package/src/components/Table/components/TTitle/TTitle.tsx +0 -86
- package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.style.ts +0 -8
- package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.tsx +0 -152
- package/src/components/Table/components/TTitle/components/ColumnChooser/index.ts +0 -1
- package/src/components/Table/components/TTitle/components/utils.ts +0 -9
- package/src/components/Table/components/TTitle/index.ts +0 -1
- package/src/components/Table/components/index.ts +0 -7
- package/src/components/Table/constants.tsx +0 -8
- package/src/components/Table/hooks/index.ts +0 -1
- package/src/components/Table/hooks/useTable.tsx +0 -243
- package/src/components/Table/index.ts +0 -7
- package/src/components/Table/types.ts +0 -152
- package/src/components/Table/utils/TableStoryComponents.tsx +0 -21
- package/src/components/TableV4/TableRowContext.ts +0 -37
- package/src/components/TableV4/TableV4.style.ts +0 -40
- package/src/components/TableV4/TableV4.test.tsx +0 -232
- package/src/components/TableV4/TableV4.tsx +0 -294
- package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.style.tsx +0 -15
- package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.tsx +0 -99
- package/src/components/TableV4/components/ExtendedColumnItem/index.ts +0 -2
- package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.style.ts +0 -41
- package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.tsx +0 -178
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.style.ts +0 -11
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.tsx +0 -71
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/index.ts +0 -1
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/ExpandedButtonCell.tsx +0 -67
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/index.ts +0 -1
- package/src/components/TableV4/components/RenderRowOrNestedRow/index.ts +0 -1
- package/src/components/TableV4/components/TableCell/TableCell.style.tsx +0 -23
- package/src/components/TableV4/components/TableCell/TableCell.tsx +0 -89
- package/src/components/TableV4/components/TableCell/index.ts +0 -2
- package/src/components/TableV4/components/TableCell/utils.tsx +0 -27
- package/src/components/TableV4/components/TableRow/TableRow.tsx +0 -47
- package/src/components/TableV4/components/TableRow/index.ts +0 -2
- package/src/components/TableV4/components/TableRowWrapper/TableRowWrapper.tsx +0 -75
- package/src/components/TableV4/components/TableRowWrapper/index.ts +0 -2
- package/src/components/TableV4/index.ts +0 -3
- package/src/components/TableV4/types.ts +0 -94
- package/src/components/TableV4/utils/TableStoryComponents.tsx +0 -12
- package/src/components/TableV4/utils/index.ts +0 -1
- package/src/components/TableV4/utils/utils.ts +0 -10
- package/src/components/Tabs/Tabs.style.ts +0 -19
- package/src/components/Tabs/Tabs.test.tsx +0 -81
- package/src/components/Tabs/Tabs.tsx +0 -54
- package/src/components/Tabs/components/Tab/Tab.style.ts +0 -12
- package/src/components/Tabs/components/Tab/Tab.tsx +0 -19
- package/src/components/Tabs/components/Tab/index.ts +0 -1
- package/src/components/Tabs/components/TabList/TabList.style.ts +0 -85
- package/src/components/Tabs/components/TabList/TabList.tsx +0 -19
- package/src/components/Tabs/components/TabList/index.ts +0 -1
- package/src/components/Tabs/components/TabPanel/TabPanel.tsx +0 -18
- package/src/components/Tabs/components/TabPanel/index.ts +0 -1
- package/src/components/Tabs/components/TabsContainer/TabsContainer.style.ts +0 -12
- package/src/components/Tabs/components/TabsContainer/TabsContainer.tsx +0 -25
- package/src/components/Tabs/components/TabsContainer/index.ts +0 -1
- package/src/components/Tabs/components/index.ts +0 -4
- package/src/components/Tabs/index.ts +0 -3
- package/src/components/Tabs/types.ts +0 -74
- package/src/components/Tabs/utils/TabsStoryComponents.tsx +0 -8
- package/src/components/Tag/Tag.style.ts +0 -106
- package/src/components/Tag/Tag.test.tsx +0 -94
- package/src/components/Tag/Tag.tsx +0 -53
- package/src/components/Tag/Tag.types.ts +0 -30
- package/src/components/Tag/constants.ts +0 -36
- package/src/components/Tag/hooks/useGetTagUtils.tsx +0 -79
- package/src/components/Tag/index.ts +0 -2
- package/src/components/TextArea/TextArea.style.ts +0 -54
- package/src/components/TextArea/TextArea.tsx +0 -115
- package/src/components/TextArea/index.ts +0 -2
- package/src/components/TextField/TextField.style.ts +0 -34
- package/src/components/TextField/TextField.test.tsx +0 -145
- package/src/components/TextField/TextField.tsx +0 -152
- package/src/components/TextField/components/commons.tsx +0 -13
- package/src/components/TextField/index.ts +0 -2
- package/src/components/TextInputBase/TextInputBase.style.ts +0 -219
- package/src/components/TextInputBase/TextInputBase.tsx +0 -96
- package/src/components/TextInputBase/index.ts +0 -2
- package/src/components/ThemeProvider/Test.tsx +0 -14
- package/src/components/ThemeProvider/ThemeProvider.style.ts +0 -31
- package/src/components/ThemeProvider/ThemeProvider.test.tsx +0 -46
- package/src/components/ThemeProvider/ThemeProvider.tsx +0 -48
- package/src/components/ThemeProvider/index.ts +0 -2
- package/src/components/Toast/Toast.style.ts +0 -127
- package/src/components/Toast/Toast.test.tsx +0 -114
- package/src/components/Toast/Toast.tsx +0 -168
- package/src/components/Toast/Toast.types.ts +0 -51
- package/src/components/Toast/index.ts +0 -2
- package/src/components/ToastV4/ToastV4.style.ts +0 -96
- package/src/components/ToastV4/ToastV4.test.tsx +0 -68
- package/src/components/ToastV4/ToastV4.tsx +0 -112
- package/src/components/ToastV4/index.tsx +0 -2
- package/src/components/Tooltip/Tooltip.style.ts +0 -43
- package/src/components/Tooltip/Tooltip.tsx +0 -49
- package/src/components/Tooltip/Tooltip.types.ts +0 -36
- package/src/components/Tooltip/index.ts +0 -3
- package/src/components/TopAppBar/TopAppBar.style.ts +0 -47
- package/src/components/TopAppBar/TopAppBar.test.tsx +0 -59
- package/src/components/TopAppBar/TopAppBar.tsx +0 -48
- package/src/components/TopAppBar/TopAppBar.types.ts +0 -25
- package/src/components/TopAppBar/__snapshots__/TopAppBar.test.tsx.snap +0 -769
- package/src/components/TopAppBar/components/Logo/Logo.style.ts +0 -27
- package/src/components/TopAppBar/components/Logo/Logo.wrapper.tsx +0 -20
- package/src/components/TopAppBar/components/Logo/index.ts +0 -2
- package/src/components/TopAppBar/components/Search/Search.style.ts +0 -71
- package/src/components/TopAppBar/components/Search/Search.tsx +0 -49
- package/src/components/TopAppBar/components/Search/index.ts +0 -2
- package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.style.ts +0 -13
- package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.tsx +0 -21
- package/src/components/TopAppBar/components/SidebarMenuIcon/index.ts +0 -2
- package/src/components/TopAppBar/components/UserMenu/UserMenu.style.ts +0 -12
- package/src/components/TopAppBar/components/UserMenu/UserMenu.tsx +0 -59
- package/src/components/TopAppBar/components/UserMenu/index.ts +0 -2
- package/src/components/TopAppBar/components/index.ts +0 -6
- package/src/components/TopAppBar/index.ts +0 -3
- package/src/components/TruncatedContent/TruncatedContent.style.tsx +0 -7
- package/src/components/TruncatedContent/TruncatedContent.test.tsx +0 -58
- package/src/components/TruncatedContent/TruncatedContent.tsx +0 -75
- package/src/components/TruncatedContent/index.ts +0 -2
- package/src/components/Typography/Typography.config.styles.ts +0 -87
- package/src/components/Typography/Typography.style.ts +0 -75
- package/src/components/Typography/Typography.tsx +0 -108
- package/src/components/Typography/index.ts +0 -4
- package/src/components/Typography/utils.ts +0 -13
- package/src/components/utils/ClickAwayListener/ClickAwayListener.tsx +0 -45
- package/src/components/utils/ClickAwayListener/index.tsx +0 -1
- package/src/components/utils/DropdownOptions/index.tsx +0 -31
- package/src/components/utils/Overlay/Overlay.tsx +0 -196
- package/src/components/utils/Overlay/index.ts +0 -1
- package/src/components/utils/PositionInScreen/PositionInScreen.tsx +0 -58
- package/src/components/utils/PositionInScreen/hooks.ts +0 -158
- package/src/components/utils/PositionInScreen/index.tsx +0 -1
- package/src/components/utils/Slots.tsx +0 -109
- package/src/components/utils/handleSearch.ts +0 -36
- package/src/components/utils/tests/Slots.test.tsx +0 -94
- package/src/components/utils/useDOMRef.ts +0 -49
- package/src/data-table/DataTable.test.tsx +0 -425
- package/src/data-table/DataTable.tsx +0 -52
- package/src/data-table/DataTableBody.css.ts +0 -127
- package/src/data-table/DataTableBody.tsx +0 -326
- package/src/data-table/DataTableBulkActions.tsx +0 -17
- package/src/data-table/DataTableCheckbox.tsx +0 -68
- package/src/data-table/DataTableContext.tsx +0 -27
- package/src/data-table/DataTableCounter.tsx +0 -46
- package/src/data-table/DataTableEditColumns.tsx +0 -90
- package/src/data-table/DataTableHeader.tsx +0 -32
- package/src/data-table/DataTableHeaderCell.css.ts +0 -90
- package/src/data-table/DataTableHeaderCell.tsx +0 -220
- package/src/data-table/DataTableRow.tsx +0 -215
- package/src/data-table/DataTableRowContext.tsx +0 -67
- package/src/data-table/index.ts +0 -7
- package/src/hooks/useBreakpoints.test.ts +0 -40
- package/src/hooks/useBreakpoints.tsx +0 -47
- package/src/hooks/useCheck.ts +0 -25
- package/src/hooks/useCombinedRefs.ts +0 -23
- package/src/hooks/useElementSize.ts +0 -47
- package/src/hooks/useEscape.ts +0 -18
- package/src/hooks/useEventListener.ts +0 -43
- package/src/hooks/useFieldUtils.tsx +0 -55
- package/src/hooks/useIsoMorphicLayoutEffect.ts +0 -5
- package/src/hooks/useKeyboardEvents.ts +0 -78
- package/src/hooks/useLoading.ts +0 -29
- package/src/hooks/useOverlayStack.ts +0 -92
- package/src/hooks/usePagination.ts +0 -62
- package/src/hooks/useTheme.ts +0 -7
- package/src/hooks/useThemeSwitch.tsx +0 -32
- package/src/hooks/useToggle.ts +0 -16
- package/src/hooks/useTypeColorToColorMatch.tsx +0 -101
- package/src/icon/Icon.tsx +0 -312
- package/src/icon/index.ts +0 -1
- package/src/icons/AccountIcon.tsx +0 -14
- package/src/icons/AlbumIcon.tsx +0 -16
- package/src/icons/AnalyticsIcon.tsx +0 -14
- package/src/icons/AppsIcon.tsx +0 -14
- package/src/icons/ArrowDownIcon.tsx +0 -14
- package/src/icons/ArrowLeftIcon.tsx +0 -14
- package/src/icons/ArrowRightIcon.tsx +0 -14
- package/src/icons/ArrowUpIcon.tsx +0 -14
- package/src/icons/ArtistIcon.tsx +0 -14
- package/src/icons/AssetIcon.tsx +0 -14
- package/src/icons/AudioIcon.tsx +0 -14
- package/src/icons/AudioOffIcon.tsx +0 -26
- package/src/icons/BookmarkIcon.tsx +0 -16
- package/src/icons/BookmarkOffIcon.tsx +0 -16
- package/src/icons/BroadcastIcon.tsx +0 -14
- package/src/icons/CalendarIcon.tsx +0 -14
- package/src/icons/CatalogIcon.tsx +0 -14
- package/src/icons/ChannelIcon.tsx +0 -24
- package/src/icons/ChatIcon.tsx +0 -14
- package/src/icons/CheckIcon.tsx +0 -14
- package/src/icons/ChevronDownIcon.tsx +0 -14
- package/src/icons/ChevronLeftIcon.tsx +0 -14
- package/src/icons/ChevronRightIcon.tsx +0 -14
- package/src/icons/ChevronUpIcon.tsx +0 -14
- package/src/icons/CinemaIcon.tsx +0 -14
- package/src/icons/ClaimIcon.tsx +0 -14
- package/src/icons/CloseIcon.tsx +0 -14
- package/src/icons/ColumnChooserIcon.tsx +0 -14
- package/src/icons/CompositionIcon.tsx +0 -14
- package/src/icons/ConcertIcon.tsx +0 -14
- package/src/icons/ConflictIcon.tsx +0 -14
- package/src/icons/ConvertIcon.tsx +0 -14
- package/src/icons/CopyIcon.tsx +0 -14
- package/src/icons/CueSheetIcon.tsx +0 -14
- package/src/icons/DashboardIcon.tsx +0 -14
- package/src/icons/DatasetIcon.tsx +0 -14
- package/src/icons/DeleteIcon.tsx +0 -14
- package/src/icons/DeliveryIcon.tsx +0 -14
- package/src/icons/DetailsIcon.tsx +0 -14
- package/src/icons/DigitalIcon.tsx +0 -16
- package/src/icons/DistributionIcon.tsx +0 -14
- package/src/icons/DownloadIcon.tsx +0 -14
- package/src/icons/EarningsIcon.tsx +0 -14
- package/src/icons/EditIcon.tsx +0 -14
- package/src/icons/EntitiesIcon.tsx +0 -14
- package/src/icons/ErrorIcon.tsx +0 -14
- package/src/icons/ExternalLinkIcon.tsx +0 -14
- package/src/icons/EyeIcon.tsx +0 -14
- package/src/icons/EyeOffIcon.tsx +0 -14
- package/src/icons/FavoriteIcon.tsx +0 -14
- package/src/icons/FavoriteOffIcon.tsx +0 -14
- package/src/icons/FileIcon.tsx +0 -14
- package/src/icons/FilterIcon.tsx +0 -14
- package/src/icons/FlagIcon.tsx +0 -14
- package/src/icons/FlagOffIcon.tsx +0 -14
- package/src/icons/ForwardIcon.tsx +0 -14
- package/src/icons/FreezeIcon.tsx +0 -16
- package/src/icons/HelpIcon.tsx +0 -14
- package/src/icons/ImageIcon.tsx +0 -14
- package/src/icons/ImageOffIcon.tsx +0 -20
- package/src/icons/IncomeIcon.tsx +0 -14
- package/src/icons/InformationalIcon.tsx +0 -16
- package/src/icons/InsightIcon.tsx +0 -14
- package/src/icons/InvoiceIcon.tsx +0 -16
- package/src/icons/IssueIcon.tsx +0 -14
- package/src/icons/KeywordIcon.tsx +0 -16
- package/src/icons/LanguageIcon.tsx +0 -14
- package/src/icons/LegalIcon.tsx +0 -14
- package/src/icons/LicenseIcon.tsx +0 -16
- package/src/icons/LinkIcon.tsx +0 -14
- package/src/icons/LocationIcon.tsx +0 -14
- package/src/icons/LockIcon.tsx +0 -14
- package/src/icons/LoginIcon.tsx +0 -14
- package/src/icons/LogoutIcon.tsx +0 -14
- package/src/icons/MailIcon.tsx +0 -14
- package/src/icons/ManualIcon.tsx +0 -14
- package/src/icons/MediaFileIcon.tsx +0 -14
- package/src/icons/MenuIcon.tsx +0 -14
- package/src/icons/MinusIcon.tsx +0 -14
- package/src/icons/MoreOptionsIcon.tsx +0 -22
- package/src/icons/NextIcon.tsx +0 -14
- package/src/icons/NotificationIcon.tsx +0 -14
- package/src/icons/OrganizationIcon.tsx +0 -14
- package/src/icons/PageFirstIcon.tsx +0 -14
- package/src/icons/PageLastIcon.tsx +0 -14
- package/src/icons/PairIcon.tsx +0 -14
- package/src/icons/PauseIcon.tsx +0 -14
- package/src/icons/PendingIcon.tsx +0 -14
- package/src/icons/PlayIcon.tsx +0 -14
- package/src/icons/PlaycountIcon.tsx +0 -14
- package/src/icons/PlusIcon.tsx +0 -14
- package/src/icons/PolicyIcon.tsx +0 -14
- package/src/icons/PreviousIcon.tsx +0 -14
- package/src/icons/PublicPerformanceIcon.tsx +0 -14
- package/src/icons/PublisherIcon.tsx +0 -20
- package/src/icons/RadioIcon.tsx +0 -14
- package/src/icons/RecordLabelIcon.tsx +0 -16
- package/src/icons/RecordingIcon.tsx +0 -14
- package/src/icons/RedoIcon.tsx +0 -14
- package/src/icons/RefreshIcon.tsx +0 -14
- package/src/icons/ReportIcon.tsx +0 -14
- package/src/icons/RestoreIcon.tsx +0 -18
- package/src/icons/ResumeIcon.tsx +0 -18
- package/src/icons/ReviewIcon.tsx +0 -14
- package/src/icons/RewindIcon.tsx +0 -14
- package/src/icons/RoleIcon.tsx +0 -14
- package/src/icons/SearchFilledIcon.tsx +0 -16
- package/src/icons/SearchIcon.tsx +0 -14
- package/src/icons/SettingsIcon.tsx +0 -14
- package/src/icons/ShareIcon.tsx +0 -14
- package/src/icons/SortAscendingIcon.tsx +0 -24
- package/src/icons/SortDescendingIcon.tsx +0 -24
- package/src/icons/SortIcon.tsx +0 -22
- package/src/icons/StatusIndicatorIcon.tsx +0 -11
- package/src/icons/StopIcon.tsx +0 -14
- package/src/icons/SuccessIcon.tsx +0 -14
- package/src/icons/TagIcon.tsx +0 -14
- package/src/icons/TelevisionIcon.tsx +0 -14
- package/src/icons/ThumbsDownIcon.tsx +0 -14
- package/src/icons/ThumbsUpIcon.tsx +0 -14
- package/src/icons/TrendingDownIcon.tsx +0 -14
- package/src/icons/TrendingUpIcon.tsx +0 -14
- package/src/icons/TriangleDownIcon.tsx +0 -16
- package/src/icons/TriangleLeftIcon.tsx +0 -16
- package/src/icons/TriangleRightIcon.tsx +0 -16
- package/src/icons/TriangleUpIcon.tsx +0 -16
- package/src/icons/UndoIcon.tsx +0 -14
- package/src/icons/UnfreezeIcon.tsx +0 -20
- package/src/icons/UnlinkIcon.tsx +0 -14
- package/src/icons/UnlockIcon.tsx +0 -14
- package/src/icons/UnpairIcon.tsx +0 -14
- package/src/icons/UnverifiedIcon.tsx +0 -20
- package/src/icons/UpdateIcon.tsx +0 -18
- package/src/icons/UploadIcon.tsx +0 -14
- package/src/icons/UsageIcon.tsx +0 -16
- package/src/icons/UserIcon.tsx +0 -14
- package/src/icons/UsersIcon.tsx +0 -26
- package/src/icons/VerifiedIcon.tsx +0 -14
- package/src/icons/VideoIcon.tsx +0 -14
- package/src/icons/VideoOffIcon.tsx +0 -18
- package/src/icons/WarningIcon.tsx +0 -16
- package/src/icons/WorkIcon.tsx +0 -16
- package/src/icons/WriterIcon.tsx +0 -22
- package/src/icons/YouTubeIcon.tsx +0 -16
- package/src/icons/index.ts +0 -144
- package/src/index.ts +0 -290
- package/src/layers/index.ts +0 -1
- package/src/layers/layers.css.ts +0 -10
- package/src/skeleton/Skeleton.css.ts +0 -19
- package/src/skeleton/Skeleton.tsx +0 -34
- package/src/skeleton/index.ts +0 -1
- package/src/sprinkles/createSprinklesMerge.ts +0 -61
- package/src/sprinkles/index.ts +0 -1
- package/src/sprinkles/properties.css.ts +0 -504
- package/src/sprinkles/sprinkles.ts +0 -18
- package/src/sprinkles/sprinklesMerge.ts +0 -4
- package/src/test/index.ts +0 -1
- package/src/test/setup.ts +0 -61
- package/src/test/utils.tsx +0 -25
- package/src/theme/emotion.d.ts +0 -7
- package/src/theme/functions.ts +0 -77
- package/src/theme/index.ts +0 -44
- package/src/theme/overrides.ts +0 -5
- package/src/theme/types.ts +0 -93
- package/src/types.d.ts +0 -21
- package/src/utils/ExtendProps.ts +0 -5
- package/src/utils/cn.ts +0 -5
- package/src/utils/common.ts +0 -36
- package/src/utils/date.ts +0 -19
- package/src/utils/errors.ts +0 -13
- package/src/utils/helpers.ts +0 -51
- package/src/utils/storyshots.ts +0 -37
- package/src/utils/tests/helpers.test.ts +0 -21
- package/src/utils/types.ts +0 -12
- package/src/vanilla/Box/Box.tsx +0 -37
- package/src/vanilla/Box/extractBoxProps.ts +0 -19
- package/src/vanilla/Box/index.ts +0 -2
- package/src/vanilla/Dialog/Dialog.tsx +0 -130
- package/src/vanilla/Dialog/index.ts +0 -1
- package/src/vanilla/Dropdown/Dropdown.css.ts +0 -11
- package/src/vanilla/Dropdown/Dropdown.tsx +0 -78
- package/src/vanilla/Dropdown/index.ts +0 -1
- package/src/vanilla/Menu/Menu.css.ts +0 -42
- package/src/vanilla/Menu/Menu.tsx +0 -136
- package/src/vanilla/Menu/index.ts +0 -1
- package/src/vanilla/Popover/Popover.css.ts +0 -24
- package/src/vanilla/Popover/Popover.tsx +0 -89
- package/src/vanilla/Popover/index.ts +0 -1
- package/src/vanilla/Table/Table.css.ts +0 -61
- package/src/vanilla/Table/Table.tsx +0 -21
- package/src/vanilla/Table/TableBody.css.ts +0 -5
- package/src/vanilla/Table/TableBody.tsx +0 -17
- package/src/vanilla/Table/TableCell.css.ts +0 -81
- package/src/vanilla/Table/TableCell.tsx +0 -53
- package/src/vanilla/Table/TableFooter.css.ts +0 -20
- package/src/vanilla/Table/TableFooter.tsx +0 -17
- package/src/vanilla/Table/TableHeader.css.ts +0 -21
- package/src/vanilla/Table/TableHeader.tsx +0 -22
- package/src/vanilla/Table/TableHeaderCell.css.ts +0 -85
- package/src/vanilla/Table/TableHeaderCell.tsx +0 -53
- package/src/vanilla/Table/TableRow.css.ts +0 -34
- package/src/vanilla/Table/TableRow.tsx +0 -17
- package/src/vanilla/Table/index.ts +0 -7
- package/src/vanilla/Text/Text.css.ts +0 -38
- package/src/vanilla/Text/Text.tsx +0 -33
- package/src/vanilla/Text/index.ts +0 -1
- package/src/vanilla/ThemeProvider/ThemeProvider.tsx +0 -91
- package/src/vanilla/ThemeProvider/index.ts +0 -1
- package/src/vanilla/Tooltip/Tooltip.css.ts +0 -93
- package/src/vanilla/Tooltip/Tooltip.tsx +0 -147
- package/src/vanilla/Tooltip/index.ts +0 -1
- package/src/vanilla/index.ts +0 -13
- package/src/vanilla-extract/global.css.ts +0 -184
- package/src/vanilla-extract/index.ts +0 -12
- package/src/vanilla-extract/style.ts +0 -13
- package/src/version/index.ts +0 -1
- package/src/version/version.ts +0 -1
- package/src/vite-env.d.ts +0 -5
- package/tsconfig.codemods.json +0 -4
- package/tsconfig.json +0 -37
- package/tsconfig.node.json +0 -15
- package/tsconfig.vanilla.json +0 -9
- package/vite.codemods.config.ts +0 -40
- package/vite.config.ts +0 -101
package/src/icons/FilterIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function FilterIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M3.87278 15.8625C3.63259 15.8625 3.42709 15.7774 3.25626 15.6072C3.08542 15.437 3 15.2323 3 14.993C3 14.7537 3.08542 14.5491 3.25626 14.379C3.42709 14.209 3.63259 14.124 3.87278 14.124H7.3234C7.56359 14.124 7.7691 14.2091 7.93993 14.3793C8.11076 14.5495 8.19618 14.7542 8.19618 14.9935C8.19618 15.2328 8.11076 15.4375 7.93993 15.6075C7.7691 15.7775 7.56359 15.8625 7.3234 15.8625H3.87278ZM3.87278 5.87598C3.63259 5.87598 3.42709 5.79088 3.25626 5.6207C3.08542 5.45049 3 5.24575 3 5.00646C3 4.76716 3.08542 4.56251 3.25626 4.39249C3.42709 4.22248 3.63259 4.13747 3.87278 4.13747H10.3072C10.5474 4.13747 10.7529 4.22257 10.9237 4.39275C11.0945 4.56296 11.18 4.7677 11.18 5.00699C11.18 5.24629 11.0945 5.45094 10.9237 5.62096C10.7529 5.79097 10.5474 5.87598 10.3072 5.87598H3.87278ZM10.6926 17.5C10.4523 17.5 10.2468 17.4149 10.0761 17.2448C9.9054 17.0746 9.82005 16.87 9.82005 16.6307V13.3558C9.82005 13.1166 9.90549 12.9119 10.0764 12.7418C10.2473 12.5716 10.4528 12.4865 10.6931 12.4865C10.9334 12.4865 11.1389 12.5716 11.3096 12.7418C11.4803 12.9119 11.5656 13.1166 11.5656 13.3558V14.124H17.1272C17.3674 14.124 17.5729 14.2091 17.7438 14.3793C17.9146 14.5495 18 14.7542 18 14.9935C18 15.2328 17.9146 15.4375 17.7438 15.6075C17.5729 15.7775 17.3674 15.8625 17.1272 15.8625H11.5656V16.6307C11.5656 16.87 11.4802 17.0746 11.3093 17.2448C11.1384 17.4149 10.9328 17.5 10.6926 17.5ZM7.32314 12.5067C7.08287 12.5067 6.87738 12.4217 6.70667 12.2515C6.53597 12.0814 6.45062 11.8767 6.45062 11.6375V10.8693H3.87278C3.63259 10.8693 3.42709 10.7842 3.25626 10.614C3.08542 10.4438 3 10.239 3 9.99974C3 9.76044 3.08542 9.55578 3.25626 9.38577C3.42709 9.21575 3.63259 9.13074 3.87278 9.13074H6.45062V8.36253C6.45062 8.12331 6.53606 7.91863 6.70694 7.74848C6.87783 7.57834 7.08341 7.49327 7.32367 7.49327C7.56394 7.49327 7.76942 7.57834 7.94013 7.74848C8.11083 7.91863 8.19618 8.12331 8.19618 8.36253V11.6375C8.19618 11.8767 8.11074 12.0814 7.93986 12.2515C7.76897 12.4217 7.5634 12.5067 7.32314 12.5067ZM10.6928 10.8693C10.4526 10.8693 10.2471 10.7842 10.0763 10.614C9.90546 10.4438 9.82005 10.239 9.82005 9.99974C9.82005 9.76044 9.90546 9.55578 10.0763 9.38577C10.2471 9.21575 10.4526 9.13074 10.6928 9.13074H17.1272C17.3674 9.13074 17.5729 9.21584 17.7438 9.38603C17.9146 9.55623 18 9.76098 18 10.0003C18 10.2396 17.9146 10.4442 17.7438 10.6142C17.5729 10.7842 17.3674 10.8693 17.1272 10.8693H10.6928ZM13.6763 7.51345C13.4361 7.51345 13.2306 7.42838 13.0599 7.25825C12.8892 7.0881 12.8038 6.88341 12.8038 6.6442V3.36925C12.8038 3.13004 12.8893 2.92535 13.0601 2.7552C13.231 2.58507 13.4366 2.5 13.6769 2.5C13.9171 2.5 14.1226 2.58507 14.2933 2.7552C14.464 2.92535 14.5494 3.13004 14.5494 3.36925V4.13747H17.1272C17.3674 4.13747 17.5729 4.22257 17.7438 4.39275C17.9146 4.56296 18 4.7677 18 5.00699C18 5.24629 17.9146 5.45094 17.7438 5.62096C17.5729 5.79097 17.3674 5.87598 17.1272 5.87598H14.5494V6.6442C14.5494 6.88341 14.4639 7.0881 14.2931 7.25825C14.1222 7.42838 13.9166 7.51345 13.6763 7.51345Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/FlagIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function FlagIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M4.83199 17.5C4.60289 17.5 4.40696 17.4101 4.24418 17.2303C4.08139 17.0504 4 16.8341 4 16.5812V3.52893C4 3.23741 4.08932 2.99304 4.26797 2.79583C4.4466 2.59861 4.66795 2.5 4.93202 2.5H10.4824C10.7121 2.5 10.9117 2.57529 11.0813 2.72586C11.2508 2.87643 11.3579 3.07125 11.4025 3.31032L11.5841 4.25214H15.068C15.332 4.25214 15.5534 4.35044 15.732 4.54704C15.9107 4.74362 16 4.98721 16 5.27781V12.1583C16 12.4489 15.9107 12.6924 15.732 12.8889C15.5534 13.0855 15.332 13.1837 15.068 13.1837H11.0854C10.8557 13.1837 10.656 13.1065 10.4865 12.9519C10.3169 12.7973 10.2099 12.5974 10.1653 12.3521L10.003 11.4316H5.6645V16.5812C5.6645 16.8341 5.58302 17.0504 5.42007 17.2303C5.25713 17.4101 5.0611 17.5 4.83199 17.5Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function FlagOffIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M4.83199 17.5C4.60289 17.5 4.40696 17.4101 4.24418 17.2303C4.08139 17.0504 4 16.8341 4 16.5812V3.52893C4 3.23741 4.08932 2.99304 4.26797 2.79583C4.4466 2.59861 4.66795 2.5 4.93202 2.5H10.4824C10.7121 2.5 10.9117 2.57529 11.0813 2.72586C11.2508 2.87643 11.3579 3.07125 11.4025 3.31032L11.5841 4.25214H15.068C15.332 4.25214 15.5534 4.35044 15.732 4.54704C15.9107 4.74362 16 4.98721 16 5.27781V12.1583C16 12.4489 15.9107 12.6924 15.732 12.8889C15.5534 13.0855 15.332 13.1837 15.068 13.1837H11.0854C10.8557 13.1837 10.656 13.1065 10.4865 12.9519C10.3169 12.7973 10.2099 12.5974 10.1653 12.3521L10.003 11.4316H5.6645V16.5812C5.6645 16.8341 5.58302 17.0504 5.42007 17.2303C5.25713 17.4101 5.0611 17.5 4.83199 17.5ZM11.7032 11.3462H14.3355V6.08973H10.1971L9.88176 4.33759H5.6645V9.59402H11.3875L11.7032 11.3462Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function ForwardIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M4.37997 13.8325C4.08554 14.0347 3.78194 14.0538 3.46916 13.8899C3.15639 13.7261 3 13.4547 3 13.0759V6.92884C3 6.55005 3.15639 6.27749 3.46916 6.11115C3.78194 5.94481 4.08554 5.96517 4.37997 6.17224L8.80486 9.23841C9.06261 9.41505 9.19148 9.66971 9.19148 10.0024C9.19148 10.3351 9.06261 10.5897 8.80486 10.7664L4.37997 13.8325ZM12.1885 13.8325C11.8941 14.0347 11.5905 14.0538 11.2777 13.8899C10.9649 13.7261 10.8085 13.4547 10.8085 13.0759V6.92884C10.8085 6.55005 10.9649 6.27749 11.2777 6.11115C11.5905 5.94481 11.8941 5.96517 12.1885 6.17224L16.6134 9.23841C16.8711 9.41505 17 9.66971 17 10.0024C17 10.3351 16.8711 10.5897 16.6134 10.7664L12.1885 13.8325Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/FreezeIcon.tsx
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function FreezeIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
fillRule="evenodd"
|
|
9
|
-
clipRule="evenodd"
|
|
10
|
-
d="M3.0713 16.9334C3.45218 17.3111 3.90737 17.5 4.43687 17.5H15.5631C16.1026 17.5 16.5603 17.3111 16.9362 16.9334C17.3121 16.5558 17.5 16.0958 17.5 15.5537V4.4463C17.5 3.91421 17.3121 3.45681 16.9362 3.0741C16.5603 2.69137 16.1026 2.5 15.5631 2.5H4.43687C3.90737 2.5 3.45218 2.69137 3.0713 3.0741C2.69043 3.45681 2.5 3.91421 2.5 4.4463V15.5537C2.5 16.0958 2.69043 16.5558 3.0713 16.9334ZM8.96131 15.819H15.5631C15.6291 15.819 15.6896 15.7914 15.7446 15.7361C15.7996 15.6808 15.8271 15.62 15.8271 15.5537V4.4463C15.8271 4.37998 15.7996 4.31918 15.7446 4.26391C15.6896 4.20865 15.6291 4.18102 15.5631 4.18102H8.96076C8.97165 4.26728 8.9771 4.35571 8.9771 4.4463V15.5537C8.9771 15.6444 8.97184 15.7329 8.96131 15.819Z"
|
|
11
|
-
fill="currentColor"
|
|
12
|
-
/>
|
|
13
|
-
</svg>
|
|
14
|
-
</Box>
|
|
15
|
-
);
|
|
16
|
-
}
|
package/src/icons/HelpIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function HelpIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M10.0287 14.9821C10.3017 14.9821 10.5346 14.8866 10.7273 14.6955C10.92 14.5044 11.0163 14.2723 11.0163 13.9993C11.0163 13.7263 10.9208 13.4934 10.7297 13.3007C10.5386 13.108 10.3065 13.0117 10.0335 13.0117C9.76046 13.0117 9.52759 13.1072 9.33491 13.2983C9.14221 13.4894 9.04586 13.7215 9.04586 13.9945C9.04586 14.2675 9.1414 14.5004 9.33248 14.6931C9.52358 14.8858 9.75564 14.9821 10.0287 14.9821ZM9.21678 11.8259H10.819C10.8293 11.3117 10.8741 10.9412 10.9534 10.7145C11.0326 10.4879 11.2499 10.1984 11.6053 9.84616C12.0818 9.41 12.4113 9.02178 12.5936 8.68151C12.776 8.34124 12.8671 7.97023 12.8671 7.56848C12.8671 6.80877 12.6047 6.1896 12.08 5.71096C11.5552 5.23233 10.8889 4.99302 10.0808 4.99302C9.36598 4.99302 8.74386 5.17976 8.21446 5.55324C7.68507 5.92671 7.31937 6.43823 7.11735 7.08779L8.53923 7.68607C8.65112 7.29654 8.83294 6.99481 9.08468 6.78088C9.33644 6.56694 9.64984 6.45997 10.0249 6.45997C10.4082 6.45997 10.7242 6.57057 10.9728 6.79177C11.2215 7.01296 11.3458 7.29397 11.3458 7.63482C11.3458 7.94976 11.2373 8.22456 11.0202 8.45921C10.8032 8.69386 10.5667 8.93085 10.3108 9.17018C9.82079 9.62187 9.51594 9.99354 9.39628 10.2852C9.27662 10.5768 9.21678 11.0904 9.21678 11.8259ZM10.0014 18C8.90403 18 7.86912 17.7916 6.89662 17.3749C5.9241 16.9582 5.07331 16.3855 4.34425 15.6568C3.61517 14.928 3.04219 14.0776 2.62531 13.1055C2.20844 12.1334 2 11.0987 2 10.0014C2 8.88711 2.20875 7.84559 2.62624 6.87678C3.04374 5.90798 3.61755 5.05792 4.34766 4.32659C5.07779 3.59528 5.92822 3.02468 6.89894 2.61481C7.86965 2.20494 8.90289 2 9.99865 2C11.1128 2 12.1542 2.20485 13.1229 2.61455C14.0915 3.02425 14.9416 3.59468 15.6731 4.32586C16.4046 5.05706 16.9753 5.90697 17.3852 6.87561C17.7951 7.84424 18 8.88582 18 10.0003C18 11.1014 17.7951 12.1359 17.3855 13.1038C16.9758 14.0717 16.4054 14.9209 15.6744 15.6513C14.9434 16.3818 14.0937 16.9558 13.1253 17.3735C12.1569 17.7912 11.1156 18 10.0014 18Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/ImageIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function ImageIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M4.84841 17C4.32979 17 3.89206 16.8192 3.53524 16.4576C3.17841 16.096 3 15.6607 3 15.1516V4.84842C3 4.33934 3.17841 3.904 3.53524 3.5424C3.89206 3.1808 4.32979 3 4.84841 3H15.1516C15.6702 3 16.1079 3.1808 16.4648 3.5424C16.8216 3.904 17 4.33934 17 4.84842V15.1516C17 15.6607 16.8216 16.096 16.4648 16.4576C16.1079 16.8192 15.6702 17 15.1516 17H4.84841ZM6.7488 14.0526H13.3182C13.5181 14.0526 13.6537 13.9684 13.7251 13.7999C13.7965 13.6315 13.7787 13.4706 13.6716 13.3174L11.6988 10.6613C11.6051 10.5217 11.486 10.4553 11.3414 10.4621C11.1968 10.4689 11.0777 10.5422 10.984 10.6818L9.24742 12.9222L8.29488 11.7555C8.20121 11.6212 8.08339 11.554 7.94142 11.554C7.79946 11.554 7.68163 11.6238 7.58796 11.7634L6.40299 13.3179C6.28819 13.4708 6.26819 13.6315 6.34298 13.7999C6.41777 13.9684 6.55304 14.0526 6.7488 14.0526Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function ImageOffIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
fillRule="evenodd"
|
|
9
|
-
clipRule="evenodd"
|
|
10
|
-
d="M3.44959 2.74241C3.25402 2.55117 2.94046 2.55251 2.74654 2.74642C2.55128 2.94168 2.55128 3.25827 2.74654 3.45353L3.38894 4.09593C3.36305 4.22237 3.3501 4.35416 3.3501 4.4913V14.7945C3.3501 15.3035 3.52851 15.7389 3.88533 16.1005C4.24216 16.4621 4.67988 16.6429 5.19851 16.6429H15.5017C15.6394 16.6429 15.7714 16.6301 15.8977 16.6046L16.5422 17.2492C16.7375 17.4444 17.054 17.4444 17.2493 17.2492C17.4433 17.0552 17.4445 16.7414 17.253 16.5459L17.2492 16.5421L3.45358 2.74644L3.44959 2.74241ZM9.59751 12.5651L10.5846 11.2916L12.9885 13.6955H7.09889C6.90314 13.6955 6.76787 13.6113 6.69308 13.4428C6.61829 13.2743 6.63829 13.1137 6.75309 12.9608L7.93806 11.4063C8.03173 11.2667 8.14955 11.1969 8.29152 11.1969C8.43348 11.1969 8.5513 11.2641 8.64498 11.3984L9.59751 12.5651Z"
|
|
11
|
-
fill="currentColor"
|
|
12
|
-
/>
|
|
13
|
-
<path
|
|
14
|
-
d="M17.3112 15.1899C17.3371 15.0634 17.3501 14.9316 17.3501 14.7945V4.4913C17.3501 3.98222 17.1717 3.54688 16.8149 3.18528C16.458 2.82368 16.0203 2.64288 15.5017 2.64288H5.19851C5.0608 2.64288 4.92879 2.65563 4.80248 2.68113L17.3112 15.1899Z"
|
|
15
|
-
fill="currentColor"
|
|
16
|
-
/>
|
|
17
|
-
</svg>
|
|
18
|
-
</Box>
|
|
19
|
-
);
|
|
20
|
-
}
|
package/src/icons/IncomeIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function IncomeIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M11.2914 10.5373C11.7984 10.5373 12.2232 10.3561 12.5659 9.99388C12.9085 9.6316 13.0799 9.18899 13.0799 8.66604C13.0799 8.15337 12.9073 7.71951 12.5621 7.36445C12.2169 7.00939 11.7951 6.83186 11.2967 6.83186C10.7883 6.83186 10.358 7.0081 10.0058 7.36059C9.65364 7.71308 9.47755 8.15005 9.47755 8.67148C9.47755 9.19293 9.65313 9.63426 10.0043 9.99547C10.3555 10.3567 10.7845 10.5373 11.2914 10.5373ZM6.36425 13.3691C5.86201 13.3691 5.44133 13.1947 5.10221 12.8459C4.76311 12.4971 4.59355 12.0644 4.59355 11.5478V5.82137C4.59355 5.30476 4.76311 4.87204 5.10221 4.52321C5.44133 4.1744 5.86201 4 6.36425 4H16.2292C16.7314 4 17.1521 4.1744 17.4912 4.52321C17.8303 4.87204 17.9999 5.30476 17.9999 5.82137V11.5478C17.9999 12.0644 17.8303 12.4971 17.4912 12.8459C17.1521 13.1947 16.7314 13.3691 16.2292 13.3691H6.36425ZM3.77057 16C3.26832 16 2.84764 15.8256 2.50853 15.4768C2.16943 15.128 1.99988 14.6952 1.99988 14.1786V7.04276C1.99988 6.82351 2.0757 6.63593 2.22733 6.48C2.37898 6.32407 2.5614 6.2461 2.77461 6.2461C2.98782 6.2461 3.17016 6.32407 3.32164 6.48C3.47312 6.63593 3.54886 6.82351 3.54886 7.04276V14.1786C3.54886 14.2356 3.57196 14.2879 3.61816 14.3354C3.66434 14.3829 3.71514 14.4067 3.77057 14.4067H15.0058C15.2189 14.4067 15.4013 14.4847 15.5529 14.6406C15.7045 14.7966 15.7803 14.9843 15.7803 15.2036C15.7803 15.4229 15.7045 15.6104 15.5529 15.7663C15.4013 15.9221 15.2189 16 15.0058 16H3.77057ZM6.14256 7.15533C6.56131 7.15533 6.91909 7.00238 7.21589 6.6965C7.51269 6.3906 7.66109 6.02288 7.66109 5.59334H6.36425C6.30421 5.59334 6.25225 5.6159 6.20837 5.66104C6.1645 5.70617 6.14256 5.75962 6.14256 5.82137V7.15533ZM16.4509 7.15533V5.82137C16.4509 5.75962 16.429 5.70617 16.3851 5.66104C16.3412 5.6159 16.2892 5.59334 16.2292 5.59334H14.9324C14.9324 6.02469 15.0811 6.39286 15.3784 6.69785C15.6758 7.00284 16.0333 7.15533 16.4509 7.15533ZM6.36425 11.7758H7.66109C7.66109 11.3451 7.5124 10.9771 7.21502 10.6718C6.91763 10.3664 6.56015 10.2138 6.14256 10.2138V11.5478C6.14256 11.6095 6.1645 11.663 6.20837 11.7081C6.25225 11.7532 6.30421 11.7758 6.36425 11.7758ZM14.9324 11.7758H16.2292C16.2892 11.7758 16.3412 11.7532 16.3851 11.7081C16.429 11.663 16.4509 11.6095 16.4509 11.5478V10.2138C16.0315 10.2138 15.6736 10.3667 15.3771 10.6726C15.0806 10.9785 14.9324 11.3463 14.9324 11.7758Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function InformationalIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
fillRule="evenodd"
|
|
9
|
-
clipRule="evenodd"
|
|
10
|
-
d="M6.88122 17.3701C7.85478 17.79 8.89481 18 10.0013 18C11.1111 18 12.1541 17.7896 13.1301 17.3687C14.1062 16.9478 14.9553 16.3766 15.6773 15.6552C16.3994 14.9337 16.967 14.0884 17.3802 13.1192C17.7934 12.15 18 11.1104 18 10.0003C18 8.89025 17.7933 7.84706 17.3799 6.87073C16.9666 5.8944 16.3986 5.04513 15.6761 4.32292C14.9536 3.60072 14.1042 3.03301 13.1278 2.61981C12.1514 2.2066 11.1084 2 9.9987 2C8.89371 2 7.8553 2.20669 6.88345 2.62006C5.91159 3.03343 5.06506 3.60129 4.34387 4.32362C3.62269 5.04596 3.05175 5.89538 2.63105 6.87186C2.21035 7.84835 2 8.8915 2 10.0013C2 11.1078 2.21005 12.1476 2.63016 13.1208C3.05026 14.094 3.62041 14.9405 4.34059 15.6604C5.06076 16.3803 5.90763 16.9502 6.88122 17.3701ZM10.6094 13.7549C10.4461 13.9183 10.2495 14 10.0197 14C9.78983 14 9.59317 13.9183 9.42969 13.7549C9.26622 13.5914 9.18448 13.3948 9.18448 13.1651V10.0582C9.18448 9.82847 9.26613 9.63188 9.42944 9.46844C9.59274 9.30501 9.78931 9.2233 10.0192 9.2233C10.249 9.2233 10.4457 9.30501 10.6091 9.46844C10.7726 9.63188 10.8544 9.82847 10.8544 10.0582V13.1651C10.8544 13.3948 10.7727 13.5914 10.6094 13.7549ZM9.9751 7.90001C10.5964 7.90001 11.1001 7.39633 11.1001 6.77501C11.1001 6.15369 10.5964 5.65001 9.9751 5.65001C9.35378 5.65001 8.8501 6.15369 8.8501 6.77501C8.8501 7.39633 9.35378 7.90001 9.9751 7.90001Z"
|
|
11
|
-
fill="currentColor"
|
|
12
|
-
/>
|
|
13
|
-
</svg>
|
|
14
|
-
</Box>
|
|
15
|
-
);
|
|
16
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function InsightIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M3.61202 17.1879C3.40674 16.9798 3.30411 16.7363 3.30411 16.4574C3.30411 16.1785 3.40674 15.9324 3.61202 15.7191L8.08583 11.2209C8.18243 11.123 8.28809 11.0496 8.4028 11.0006C8.51751 10.9517 8.63525 10.9272 8.756 10.9272C8.87675 10.9272 8.99448 10.9517 9.10919 11.0006C9.22391 11.0496 9.32956 11.123 9.42616 11.2209L11.6902 13.5159L16.3452 8.28335C16.5263 8.07528 16.7527 7.96818 17.0244 7.96206C17.2961 7.95594 17.5285 8.0508 17.7217 8.24663C17.8988 8.42616 17.9914 8.64239 17.9995 8.89534C18.0075 9.14831 17.927 9.3727 17.758 9.56854L12.3604 15.7007C12.2638 15.7987 12.1581 15.8752 12.0434 15.9302C11.9287 15.9853 11.805 16.0129 11.6721 16.0129C11.5393 16.0129 11.4155 15.9914 11.3008 15.9486C11.1861 15.9058 11.0804 15.8354 10.9838 15.7375L8.756 13.4792L5.06103 17.1879C4.85061 17.396 4.60782 17.5 4.33267 17.5C4.05751 17.5 3.8173 17.396 3.61202 17.1879ZM4.37275 11.9186C4.29225 11.9186 4.21175 11.8977 4.13125 11.856C4.05075 11.8143 3.98635 11.7434 3.93805 11.6432L3.40905 10.4903L2.27169 9.9541C2.17289 9.90514 2.10292 9.83986 2.06176 9.75826C2.02059 9.67667 2 9.59507 2 9.51346C2 9.43186 2.02059 9.35026 2.06176 9.26867C2.1029 9.18707 2.17288 9.12179 2.27169 9.07283L3.40905 8.53661L3.93805 7.38372C3.98635 7.28357 4.05075 7.21264 4.13125 7.17091C4.21175 7.12919 4.29225 7.10832 4.37275 7.10832C4.45325 7.10832 4.53375 7.12919 4.61424 7.17091C4.69475 7.21264 4.75915 7.28357 4.80745 7.38372L5.33645 8.53661L6.47381 9.07283C6.65494 9.15377 6.7455 9.29946 6.7455 9.5099C6.7455 9.72036 6.65494 9.86842 6.47381 9.9541L5.33645 10.4903L4.80745 11.6432C4.75915 11.7434 4.69475 11.8143 4.61424 11.856C4.53375 11.8977 4.45325 11.9186 4.37275 11.9186ZM12.3423 10.4498C12.2618 10.4498 12.1813 10.429 12.1008 10.3872C12.0203 10.3455 11.9559 10.2746 11.9076 10.1744L11.3786 9.02153L10.2412 8.48531C10.1424 8.43635 10.0725 8.37107 10.0313 8.28947C9.99012 8.20788 9.96954 8.12628 9.96954 8.04468C9.96954 7.96307 9.99012 7.88147 10.0313 7.79988C10.0725 7.71828 10.1424 7.653 10.2412 7.60404L11.3786 7.06782L11.9076 5.91493C11.9559 5.81479 12.0203 5.74385 12.1008 5.70212C12.1813 5.6604 12.2618 5.63954 12.3423 5.63954C12.4228 5.63954 12.5033 5.6604 12.5838 5.70212C12.6643 5.74385 12.7287 5.81479 12.777 5.91493L13.306 7.06782L14.4434 7.60404C14.5421 7.653 14.6121 7.71828 14.6533 7.79988C14.6945 7.88147 14.715 7.96307 14.715 8.04468C14.715 8.12628 14.6945 8.20788 14.6533 8.28947C14.6121 8.37107 14.5421 8.43635 14.4434 8.48531L13.306 9.02153L12.777 10.1744C12.7287 10.2746 12.6643 10.3455 12.5838 10.3872C12.5033 10.429 12.4228 10.4498 12.3423 10.4498ZM7.6149 7.8978C7.5183 7.8978 7.43285 7.87332 7.35854 7.82436C7.28423 7.7754 7.22478 7.70196 7.1802 7.60404L6.58249 6.24541L5.24098 5.63638C5.14516 5.58952 5.0731 5.52938 5.0248 5.45594C4.9765 5.3825 4.95235 5.29682 4.95235 5.1989C4.95235 5.10098 4.9765 5.01436 5.0248 4.93903C5.0731 4.86371 5.14555 4.80345 5.24215 4.75826L6.58249 4.15239L7.18332 2.79256C7.22954 2.69544 7.28888 2.6224 7.36133 2.57344C7.43378 2.52448 7.5183 2.5 7.6149 2.5C7.7115 2.5 7.79696 2.52448 7.87127 2.57344C7.94558 2.6224 8.00502 2.69584 8.04961 2.79376L8.64732 4.15239L9.98883 4.76142C10.0846 4.80827 10.1567 4.86842 10.205 4.94186C10.2533 5.0153 10.2775 5.10098 10.2775 5.1989C10.2775 5.29682 10.2533 5.38344 10.205 5.45876C10.1567 5.53409 10.0843 5.59435 9.98765 5.63954L8.64732 6.24541L8.04649 7.60523C8.00027 7.70236 7.94093 7.7754 7.86848 7.82436C7.79603 7.87332 7.7115 7.8978 7.6149 7.8978Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function InvoiceIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
fillRule="evenodd"
|
|
9
|
-
clipRule="evenodd"
|
|
10
|
-
d="M3 4C3 2.89543 3.89543 2 5 2H15C16.1046 2 17 2.89543 17 4V16C17 17.1046 16.1046 18 15 18H5C3.89543 18 3 17.1046 3 16V4ZM6 15.5C6 15.2239 6.22386 15 6.5 15H13.5C13.7761 15 14 15.2239 14 15.5C14 15.7761 13.7761 16 13.5 16H6.5C6.22386 16 6 15.7761 6 15.5ZM9.41 13.43C9.45667 13.4767 9.51667 13.5 9.59 13.5H10.42C10.4867 13.5 10.5433 13.4767 10.59 13.43C10.6433 13.3833 10.67 13.3233 10.67 13.25V12.55C11.1433 12.49 11.5567 12.3667 11.91 12.18C12.2633 11.9933 12.5367 11.75 12.73 11.45C12.93 11.15 13.03 10.8033 13.03 10.41C13.03 10.0033 12.9433 9.66667 12.77 9.4C12.5967 9.12667 12.3233 8.90667 11.95 8.74C11.5767 8.56667 11.0867 8.42333 10.48 8.31C10.1133 8.23 9.82333 8.15333 9.61 8.08C9.39667 8.00667 9.24333 7.92 9.15 7.82C9.06333 7.72 9.02 7.60333 9.02 7.47C9.02 7.25667 9.10333 7.1 9.27 7C9.43667 6.89333 9.66333 6.84 9.95 6.84C10.2233 6.84 10.4467 6.89667 10.62 7.01C10.7933 7.11667 10.9 7.24333 10.94 7.39C10.98 7.45 11.0267 7.49333 11.08 7.52C11.1333 7.54667 11.1967 7.56 11.27 7.56H12.59C12.65 7.56 12.7 7.54 12.74 7.5C12.78 7.45333 12.8 7.40333 12.8 7.35C12.7933 7.11 12.7067 6.86 12.54 6.6C12.38 6.34 12.1433 6.10667 11.83 5.9C11.5167 5.69333 11.13 5.55 10.67 5.47V4.75C10.67 4.67667 10.6433 4.61667 10.59 4.57C10.5433 4.52333 10.4867 4.5 10.42 4.5H9.59C9.51667 4.5 9.45667 4.52333 9.41 4.57C9.36333 4.61667 9.34 4.67667 9.34 4.75V5.45C8.66667 5.54333 8.13667 5.77667 7.75 6.15C7.37 6.52333 7.18 6.97667 7.18 7.51C7.18 7.92333 7.27333 8.27 7.46 8.55C7.64667 8.82333 7.91667 9.04667 8.27 9.22C8.63 9.38667 9.06333 9.52333 9.57 9.63C9.96333 9.71 10.2767 9.79 10.51 9.87C10.75 9.94333 10.9233 10.03 11.03 10.13C11.1367 10.2233 11.19 10.3433 11.19 10.49C11.19 10.6967 11.09 10.86 10.89 10.98C10.6967 11.1 10.4067 11.16 10.02 11.16C9.78667 11.16 9.59 11.1333 9.43 11.08C9.27667 11.02 9.15 10.9433 9.05 10.85C8.95667 10.7567 8.88333 10.66 8.83 10.56C8.78333 10.5067 8.73667 10.4633 8.69 10.43C8.64333 10.3967 8.57333 10.38 8.48 10.38H7.22C7.16 10.38 7.10667 10.4033 7.06 10.45C7.02 10.49 7 10.5367 7 10.59C7.01333 10.8967 7.10667 11.19 7.28 11.47C7.45333 11.7433 7.71 11.9767 8.05 12.17C8.39667 12.3633 8.82667 12.4933 9.34 12.56V13.25C9.34 13.3233 9.36333 13.3833 9.41 13.43Z"
|
|
11
|
-
fill="currentColor"
|
|
12
|
-
/>
|
|
13
|
-
</svg>
|
|
14
|
-
</Box>
|
|
15
|
-
);
|
|
16
|
-
}
|
package/src/icons/IssueIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function IssueIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M2.90304 17C2.7225 17 2.56612 16.9542 2.4339 16.8625C2.30168 16.7709 2.1967 16.6639 2.11896 16.5416C2.03333 16.4214 1.99392 16.2791 2.00076 16.1146C2.00758 15.9501 2.05299 15.7868 2.137 15.6247L9.26013 3.41888C9.34414 3.25678 9.44942 3.14644 9.57597 3.08787C9.70253 3.02929 9.84404 3 10.0005 3C10.157 3 10.2983 3.02929 10.4245 3.08787C10.5507 3.14644 10.6559 3.25678 10.7399 3.41888L17.863 15.6247C17.947 15.7868 17.9924 15.9501 17.9992 16.1146C18.0061 16.2791 17.9667 16.4214 17.881 16.5416C17.7977 16.6626 17.6914 16.7692 17.5619 16.8615C17.4325 16.9538 17.2775 17 17.097 17H2.90304ZM10.0152 14.563C10.2324 14.563 10.4197 14.4831 10.5772 14.3231C10.7348 14.1632 10.8135 13.9711 10.8135 13.7467C10.8135 13.5224 10.7361 13.3289 10.5813 13.1662C10.4265 13.0035 10.2405 12.9221 10.0233 12.9221C9.8061 12.9221 9.61874 13.0021 9.46121 13.162C9.30369 13.3219 9.22492 13.514 9.22492 13.7384C9.22492 13.9627 9.30234 14.1562 9.45718 14.3189C9.612 14.4817 9.798 14.563 10.0152 14.563ZM10.0154 12.0283C10.2201 12.0283 10.3969 11.9523 10.5458 11.8004C10.6947 11.6484 10.7692 11.4662 10.7692 11.2537V8.90983C10.7692 8.6973 10.696 8.51507 10.5496 8.36314C10.4032 8.21119 10.2277 8.13521 10.023 8.13521C9.81834 8.13521 9.64155 8.21119 9.49265 8.36314C9.34375 8.51507 9.2693 8.6973 9.2693 8.90983V11.2537C9.2693 11.4662 9.34249 11.6484 9.48887 11.8004C9.63524 11.9523 9.81077 12.0283 10.0154 12.0283Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function KeywordIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
fillRule="evenodd"
|
|
9
|
-
clipRule="evenodd"
|
|
10
|
-
d="M12.7779 2.5C15.3854 2.5 17.5 4.6369 17.5 7.27569C17.5 9.91273 15.3854 12.0514 12.7779 12.0514C12.3941 12.0514 12.0241 11.9993 11.6678 11.9124C11.2398 12.3453 10.6564 12.5889 10.0477 12.5889H8.57092V14.0444C8.57092 14.5967 8.1232 15.0444 7.57092 15.0444H6.14289V16.5C6.14289 17.0523 5.69518 17.5 5.14289 17.5H3.5C2.94772 17.5 2.5 17.0523 2.5 16.5V14.6383C2.5 14.1119 2.70755 13.6067 3.07762 13.2323L8.13305 8.11794C8.08497 7.84443 8.05578 7.56396 8.05578 7.27569C8.05578 4.6369 10.1696 2.5 12.7779 2.5ZM14.0134 4.5822C13.3025 4.5822 12.7255 5.16483 12.7255 5.88466C12.7255 6.60362 13.3025 7.18712 14.0134 7.18712C14.7251 7.18712 15.3012 6.60362 15.3012 5.88466C15.3012 5.16483 14.7251 4.5822 14.0134 4.5822Z"
|
|
11
|
-
fill="currentColor"
|
|
12
|
-
/>
|
|
13
|
-
</svg>
|
|
14
|
-
</Box>
|
|
15
|
-
);
|
|
16
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LanguageIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M10 18C8.89355 18 7.85315 17.7915 6.8788 17.3745C5.90444 16.9575 5.05621 16.388 4.33411 15.6659C3.61202 14.9438 3.04248 14.0956 2.6255 13.1212C2.2085 12.1469 2 11.1065 2 10C2 8.89873 2.2085 7.85962 2.6255 6.88268C3.04248 5.90573 3.61202 5.05621 4.33411 4.33411C5.05621 3.61202 5.90444 3.04248 6.8788 2.6255C7.85315 2.2085 8.89355 2 10 2C11.1013 2 12.1404 2.2085 13.1173 2.6255C14.0943 3.04248 14.9438 3.61202 15.6659 4.33411C16.388 5.05621 16.9575 5.90573 17.3745 6.88268C17.7915 7.85962 18 8.89873 18 10C18 11.1065 17.7915 12.1469 17.3745 13.1212C16.9575 14.0956 16.388 14.9438 15.6659 15.6659C14.9438 16.388 14.0943 16.9575 13.1173 17.3745C12.1404 17.7915 11.1013 18 10 18ZM10 16.3668C10.2642 16.0891 10.517 15.6182 10.7584 14.9542C10.9998 14.2901 11.1888 13.5742 11.3256 12.8065H8.67442C8.82153 13.5949 9.0132 14.3212 9.24941 14.9852C9.48561 15.6493 9.73581 16.1098 10 16.3668ZM8.49575 16.2253C8.25333 15.8617 8.03577 15.38 7.84306 14.7801C7.65036 14.1803 7.4991 13.5224 7.38929 12.8065H4.22374C4.62365 13.6996 5.21288 14.4483 5.99144 15.0529C6.77002 15.6574 7.60479 16.0482 8.49575 16.2253ZM11.5042 16.2253C12.3952 16.0482 13.23 15.6574 14.0086 15.0529C14.7871 14.4483 15.3763 13.6996 15.7763 12.8065H12.6107C12.475 13.5276 12.3108 14.188 12.1181 14.7879C11.9254 15.3877 11.7208 15.8669 11.5042 16.2253ZM3.77621 11.554H7.24476C7.22093 11.294 7.20436 11.0264 7.19504 10.7514C7.18572 10.4763 7.18106 10.2124 7.18106 9.9596C7.18106 9.70681 7.18572 9.44962 7.19504 9.18802C7.20436 8.92643 7.22093 8.67908 7.24476 8.44598H3.77621C3.69851 8.68012 3.64567 8.93187 3.6177 9.20123C3.58973 9.47059 3.57574 9.73685 3.57574 10C3.57574 10.2632 3.58973 10.5294 3.6177 10.7988C3.64567 11.0681 3.69851 11.3199 3.77621 11.554ZM8.53767 11.554H11.4623C11.4996 11.2805 11.5229 11.0156 11.5323 10.7591C11.5416 10.5027 11.5462 10.2497 11.5462 10C11.5462 9.75032 11.5416 9.4939 11.5323 9.23077C11.5229 8.96761 11.4996 8.70602 11.4623 8.44598H8.53767C8.50038 8.70602 8.47707 8.96761 8.46773 9.23077C8.45841 9.4939 8.45375 9.75032 8.45375 10C8.45375 10.2497 8.45841 10.5061 8.46773 10.7692C8.47707 11.0324 8.50038 11.294 8.53767 11.554ZM12.7552 11.554H16.2238C16.3015 11.3199 16.3543 11.0681 16.3823 10.7988C16.4103 10.5294 16.4243 10.2632 16.4243 10C16.4243 9.73685 16.4103 9.46722 16.3823 9.19113C16.3543 8.91503 16.3015 8.66665 16.2238 8.44598H12.7552C12.7791 8.70602 12.7956 8.97357 12.805 9.24862C12.8143 9.5237 12.8189 9.78762 12.8189 10.0404C12.8189 10.2932 12.8143 10.5504 12.805 10.812C12.7956 11.0736 12.7791 11.3209 12.7552 11.554ZM12.6107 7.19349H15.7763C15.3712 6.29008 14.7858 5.54129 14.0202 4.94714C13.2546 4.353 12.4159 3.95957 11.5042 3.76687C11.7467 4.15641 11.9616 4.64722 12.1492 5.2393C12.3367 5.83138 12.4905 6.48278 12.6107 7.19349ZM8.67442 7.19349H11.3256C11.1785 6.41027 10.9829 5.6835 10.7389 5.0132C10.495 4.34291 10.2486 3.84925 10 3.53223C9.75135 3.84925 9.50504 4.34291 9.26107 5.0132C9.01708 5.6835 8.82153 6.41027 8.67442 7.19349ZM4.22374 7.19349H7.38929C7.50946 6.48278 7.66331 5.83138 7.85084 5.2393C8.03836 4.64722 8.25333 4.15641 8.49575 3.76687C7.57889 3.95957 6.73894 4.3543 5.97591 4.95104C5.21289 5.54778 4.62883 6.29526 4.22374 7.19349Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/LegalIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LegalIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M10 11.3831L11.649 12.6247C11.7381 12.6876 11.8292 12.6876 11.9223 12.6247C12.0155 12.5619 12.0419 12.4812 12.0015 12.3827L11.3478 10.3395L13.0481 9.00826C13.1558 8.95063 13.1881 8.86785 13.1452 8.75992C13.1022 8.652 13.0186 8.59804 12.8944 8.59804H10.8804L10.2189 6.57998C10.1786 6.48148 10.1056 6.43223 10 6.43223C9.89441 6.43223 9.82143 6.48148 9.78106 6.57998L9.11957 8.59804H7.10561C6.98139 8.59804 6.90245 8.652 6.86881 8.75992C6.83516 8.86785 6.87217 8.95063 6.97983 9.00826L8.65217 10.3395L7.99846 12.3701C7.95809 12.4686 7.98448 12.5527 8.07765 12.6224C8.17082 12.6921 8.26192 12.6955 8.35095 12.6326L10 11.3831ZM10 18C9.91615 18 9.82039 17.9932 9.71273 17.9796C9.60507 17.9659 9.50672 17.9455 9.4177 17.9183C7.6206 17.3189 6.18505 16.2014 5.11104 14.5658C4.03701 12.9302 3.5 11.1678 3.5 9.27858V5.6998C3.5 5.30897 3.60533 4.95508 3.816 4.63812C4.02666 4.32114 4.3116 4.09298 4.67081 3.95363L9.34784 2.13516C9.56109 2.04505 9.77847 2 10 2C10.2215 2 10.4389 2.04505 10.6522 2.13516L15.3292 3.95363C15.6884 4.09298 15.9733 4.32114 16.184 4.63812C16.3947 4.95508 16.5 5.30897 16.5 5.6998V9.27858C16.5 11.1678 15.963 12.9302 14.889 14.5658C13.815 16.2014 12.3794 17.3189 10.5823 17.9183C10.4933 17.9455 10.3949 17.9659 10.2873 17.9796C10.1796 17.9932 10.0839 18 10 18Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LicenseIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
fillRule="evenodd"
|
|
9
|
-
clipRule="evenodd"
|
|
10
|
-
d="M17 8C17 10.3846 15.8076 12.4908 13.9865 13.7547L14.8478 17.993C14.8478 18.3127 14.7227 18.5743 14.4724 18.7777C14.2221 18.9811 13.947 19.0449 13.6471 18.9691L9.93478 18.1501L6.20068 18.9691C5.90079 19.0449 5.62571 18.9811 5.37544 18.7777C5.12514 18.5743 5 18.3127 5 17.993L5.89872 13.6733C4.14246 12.4015 3 10.3342 3 8C3 4.13401 6.13401 1 10 1C13.866 1 17 4.13401 17 8ZM10 11C11.6569 11 13 9.65685 13 8C13 6.34315 11.6569 5 10 5C8.34315 5 7 6.34315 7 8C7 9.65685 8.34315 11 10 11Z"
|
|
11
|
-
fill="currentColor"
|
|
12
|
-
/>
|
|
13
|
-
</svg>
|
|
14
|
-
</Box>
|
|
15
|
-
);
|
|
16
|
-
}
|
package/src/icons/LinkIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LinkIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M6.03439 14C4.91549 14 3.96337 13.6107 3.17802 12.8321C2.39267 12.0536 2 11.1097 2 10.0004C2 8.89117 2.39267 7.94712 3.17802 7.16827C3.96337 6.38942 4.91549 6 6.03439 6H8.39254C8.62257 6 8.81938 6.08114 8.98298 6.24341C9.1466 6.40567 9.22841 6.60087 9.22841 6.82902C9.22841 7.05715 9.1466 7.25227 8.98298 7.41436C8.81938 7.57645 8.62257 7.6575 8.39254 7.6575H6.03439C5.38143 7.6575 4.82441 7.88606 4.36335 8.3432C3.90229 8.80033 3.67176 9.3526 3.67176 10C3.67176 10.6474 3.90229 11.1997 4.36335 11.6568C4.82441 12.1139 5.38143 12.3425 6.03439 12.3425H8.39254C8.62257 12.3425 8.81938 12.4236 8.98298 12.5859C9.1466 12.7482 9.22841 12.9434 9.22841 13.1715C9.22841 13.3997 9.1466 13.5948 8.98298 13.7569C8.81938 13.919 8.62257 14 8.39254 14H6.03439ZM7.60898 10.8095C7.37894 10.8095 7.18213 10.7283 7.01853 10.5661C6.85491 10.4038 6.77311 10.2086 6.77311 9.98048C6.77311 9.75233 6.85491 9.55721 7.01853 9.39512C7.18213 9.23302 7.37894 9.15198 7.60898 9.15198H12.391C12.6211 9.15198 12.8179 9.23311 12.9815 9.39537C13.1451 9.55764 13.2269 9.75284 13.2269 9.98098C13.2269 10.2091 13.1451 10.4042 12.9815 10.5663C12.8179 10.7284 12.6211 10.8095 12.391 10.8095H7.60898ZM11.6075 14C11.3775 14 11.1806 13.9189 11.017 13.7566C10.8534 13.5943 10.7716 13.3991 10.7716 13.171C10.7716 12.9428 10.8534 12.7477 11.017 12.5856C11.1806 12.4235 11.3775 12.3425 11.6075 12.3425H13.9656C14.6186 12.3425 15.1756 12.1139 15.6367 11.6568C16.0977 11.1997 16.3283 10.6474 16.3283 10C16.3283 9.3526 16.0977 8.80033 15.6367 8.3432C15.1756 7.88606 14.6186 7.6575 13.9656 7.6575H11.6075C11.3775 7.6575 11.1806 7.57637 11.017 7.41411C10.8534 7.25184 10.7716 7.05663 10.7716 6.8285C10.7716 6.60035 10.8534 6.40523 11.017 6.24314C11.1806 6.08105 11.3775 6 11.6075 6H13.9656C15.0845 6 16.0366 6.38928 16.822 7.16785C17.6073 7.94642 18 8.89033 18 9.99958C18 11.1088 17.6073 12.0529 16.822 12.8317C16.0366 13.6106 15.0845 14 13.9656 14H11.6075Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LocationIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M9.94011 10.3704C10.49 10.3704 10.9599 10.1796 11.3497 9.79809C11.7396 9.41656 11.9345 8.95789 11.9345 8.4221C11.9345 7.88632 11.7387 7.4285 11.3471 7.04864C10.9555 6.66878 10.4848 6.47886 9.93489 6.47886C9.38501 6.47886 8.91514 6.66963 8.52529 7.05118C8.13543 7.43272 7.9405 7.89139 7.9405 8.42718C7.9405 8.96296 8.1363 9.42078 8.52789 9.80064C8.91947 10.1805 9.39021 10.3704 9.94011 10.3704ZM9.9375 18.6042C7.58315 16.6242 5.82789 14.816 4.67173 13.1794C3.51558 11.5427 2.9375 10.0138 2.9375 8.59259C2.9375 6.44684 3.6374 4.74565 5.03721 3.48905C6.43701 2.23245 8.06964 1.60416 9.9351 1.60416C11.8006 1.60416 13.434 2.23245 14.8354 3.48905C16.2368 4.74565 16.9375 6.44684 16.9375 8.59259C16.9375 10.0138 16.3594 11.5427 15.2033 13.1794C14.0471 14.816 12.2919 16.6242 9.9375 18.6042Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/LockIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LockIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M5.43638 18C4.88713 18 4.42709 17.8269 4.05626 17.4806C3.68542 17.1344 3.5 16.7049 3.5 16.192V9.14129C3.5 8.62847 3.68542 8.19894 4.05626 7.8527C4.42709 7.50645 4.88713 7.33332 5.43638 7.33332H5.90304V5.86205C5.90304 4.78407 6.30176 3.8709 7.0992 3.12254C7.89665 2.37418 8.86359 2 10 2C11.1364 2 12.1033 2.37418 12.9008 3.12254C13.6982 3.8709 14.097 4.78407 14.097 5.86205V7.33332H14.5636C15.1129 7.33332 15.5729 7.50645 15.9437 7.8527C16.3146 8.19894 16.5 8.62847 16.5 9.14129V16.192C16.5 16.7049 16.3146 17.1344 15.9437 17.4806C15.5729 17.8269 15.1129 18 14.5636 18H5.43638ZM10.0031 14.2483C10.4627 14.2483 10.8528 14.0976 11.1735 13.7962C11.4942 13.4948 11.6545 13.1296 11.6545 12.7005C11.6545 12.2715 11.4931 11.9072 11.1703 11.6078C10.8475 11.3083 10.4564 11.1586 9.99687 11.1586C9.53734 11.1586 9.14722 11.3093 8.82653 11.6107C8.50582 11.9121 8.34547 12.2773 8.34547 12.7064C8.34547 13.1354 8.50687 13.4997 8.82966 13.7991C9.15246 14.0985 9.54361 14.2483 10.0031 14.2483ZM7.59696 7.33332H12.403V5.86205C12.403 5.23676 12.1692 4.70036 11.7015 4.25285C11.2338 3.80534 10.6658 3.58158 9.99768 3.58158C9.32953 3.58158 8.76237 3.80534 8.29621 4.25285C7.83004 4.70036 7.59696 5.23676 7.59696 5.86205V7.33332Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/LoginIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LoginIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M7.63145 13.6299C7.44798 13.4553 7.3596 13.2424 7.3663 12.9914C7.373 12.7404 7.46808 12.5223 7.65155 12.3373L9.12497 10.8513H3.36424C3.12615 10.8513 2.92258 10.7661 2.75355 10.5956C2.58452 10.4252 2.5 10.2199 2.5 9.97974C2.5 9.73962 2.58452 9.53432 2.75355 9.36385C2.92258 9.19336 3.12615 9.10812 3.36424 9.10812H9.12497L7.60361 7.57382C7.43046 7.39918 7.34724 7.19649 7.35394 6.96573C7.36064 6.73496 7.45314 6.52965 7.63145 6.34982C7.81491 6.16999 8.0244 6.08008 8.25993 6.08008C8.49543 6.08008 8.70493 6.17259 8.8884 6.35762L11.8105 9.30458C11.9125 9.4075 11.9857 9.51794 12.03 9.63591C12.0743 9.7539 12.0965 9.87527 12.0965 10C12.0965 10.1247 12.0743 10.2461 12.03 10.3641C11.9857 10.4821 11.9125 10.5925 11.8105 10.6954L8.88066 13.6502C8.7075 13.8248 8.50188 13.9114 8.26378 13.9098C8.02569 13.9082 7.81491 13.8149 7.63145 13.6299ZM10.872 17.5C10.6339 17.5 10.4303 17.4148 10.2613 17.2443C10.0922 17.0738 10.0077 16.8685 10.0077 16.6284C10.0077 16.3883 10.0922 16.183 10.2613 16.0125C10.4303 15.842 10.6339 15.7568 10.872 15.7568H15.5241C15.586 15.7568 15.6427 15.7308 15.6942 15.6788C15.7457 15.6268 15.7715 15.5697 15.7715 15.5073V4.49273C15.7715 4.43035 15.7457 4.37317 15.6942 4.32118C15.6427 4.26921 15.586 4.24323 15.5241 4.24323H10.872C10.6339 4.24323 10.4303 4.15799 10.2613 3.98752C10.0922 3.81704 10.0077 3.61174 10.0077 3.37162C10.0077 3.1315 10.0922 2.9262 10.2613 2.75573C10.4303 2.58524 10.6339 2.5 10.872 2.5H15.5241C16.0776 2.5 16.5453 2.69257 16.9272 3.0777C17.3091 3.46284 17.5 3.93452 17.5 4.49273V15.5073C17.5 16.0655 17.3091 16.5372 16.9272 16.9223C16.5453 17.3074 16.0776 17.5 15.5241 17.5H10.872Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/LogoutIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function LogoutIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M12.9115 13.6299C12.723 13.4553 12.6322 13.2424 12.6391 12.9914C12.6459 12.7404 12.7437 12.5223 12.9322 12.3373L14.4463 10.8513H8.52636C8.28168 10.8513 8.07249 10.7661 7.89879 10.5956C7.72508 10.4252 7.63823 10.2199 7.63823 9.97974C7.63823 9.73962 7.72508 9.53432 7.89879 9.36385C8.07249 9.19336 8.28168 9.10812 8.52636 9.10812H14.4463L12.8829 7.57382C12.705 7.39918 12.6195 7.19649 12.6263 6.96573C12.6332 6.73496 12.7283 6.52965 12.9115 6.34982C13.1001 6.16999 13.3154 6.08008 13.5574 6.08008C13.7994 6.08008 14.0147 6.17259 14.2032 6.35762L17.2061 9.30458C17.3109 9.4075 17.3861 9.51794 17.4317 9.63591C17.4772 9.7539 17.5 9.87527 17.5 10C17.5 10.1247 17.4772 10.2461 17.4317 10.3641C17.3861 10.4821 17.3109 10.5925 17.2061 10.6954L14.1953 13.6502C14.0226 13.8196 13.8127 13.9049 13.5653 13.9059C13.318 13.9069 13.1001 13.8149 12.9115 13.6299ZM4.5305 17.5C3.96171 17.5 3.4811 17.3074 3.08866 16.9223C2.69622 16.5372 2.5 16.0655 2.5 15.5073V4.49273C2.5 3.93452 2.69622 3.46284 3.08866 3.0777C3.4811 2.69257 3.96171 2.5 4.5305 2.5H9.31126C9.55593 2.5 9.76513 2.58524 9.93885 2.75573C10.1126 2.9262 10.1994 3.1315 10.1994 3.37162C10.1994 3.61174 10.1126 3.81704 9.93885 3.98752C9.76513 4.15799 9.55593 4.24323 9.31126 4.24323H4.5305C4.46694 4.24323 4.40868 4.26921 4.35572 4.32118C4.30275 4.37317 4.27626 4.43035 4.27626 4.49273V15.5073C4.27626 15.5697 4.30275 15.6268 4.35572 15.6788C4.40868 15.7308 4.46694 15.7568 4.5305 15.7568H9.31126C9.55593 15.7568 9.76513 15.842 9.93885 16.0125C10.1126 16.183 10.1994 16.3883 10.1994 16.6284C10.1994 16.8685 10.1126 17.0738 9.93885 17.2443C9.76513 17.4148 9.55593 17.5 9.31126 17.5H4.5305Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/MailIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function MailIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M4.28961 16C3.79164 16 3.36888 15.8264 3.02134 15.4793C2.67378 15.1322 2.5 14.7099 2.5 14.2126V5.78742C2.5 5.29005 2.67377 4.86781 3.02132 4.52069C3.36886 4.17356 3.79162 4 4.28959 4H15.7104C16.2084 4 16.6311 4.17356 16.9787 4.52069C17.3262 4.86781 17.5 5.29005 17.5 5.78742V14.2126C17.5 14.7099 17.3262 15.1322 16.9787 15.4793C16.6311 15.8264 16.2084 16 15.7104 16H4.28961ZM10 10.6671C10.085 10.6671 10.1657 10.655 10.2421 10.6307C10.3185 10.6065 10.3923 10.5725 10.4635 10.5287L15.6004 7.25161C15.6822 7.20133 15.7525 7.11721 15.8113 6.99926C15.8701 6.88131 15.8925 6.76264 15.8785 6.64326C15.8692 6.41112 15.7567 6.23818 15.541 6.12444C15.3254 6.0107 15.1083 6.02002 14.8899 6.15242L10.8069 8.75784C10.3148 9.07185 9.68523 9.07185 9.19313 8.75784L5.11015 6.15242C4.89171 6.02002 4.67583 6.00627 4.46253 6.11117C4.24922 6.21605 4.13556 6.39344 4.12155 6.64332C4.10755 6.76546 4.12995 6.88364 4.18876 6.99786C4.24757 7.11208 4.31852 7.19716 4.4016 7.2531L9.53653 10.5287C9.60771 10.5725 9.68151 10.6065 9.75794 10.6307C9.83438 10.655 9.91507 10.6671 10 10.6671Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/ManualIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function ManualIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M10.6585 15.1849C11.3179 14.8715 11.9855 14.6277 12.6615 14.4535C13.3374 14.2793 14.0356 14.1921 14.7561 14.1921C15.2439 14.1921 15.7116 14.2222 16.1592 14.2823C16.6068 14.3423 17.0289 14.4696 17.4256 14.664C17.4899 14.6913 17.5489 14.6872 17.6025 14.6517C17.6561 14.6162 17.6829 14.5602 17.6829 14.4837V5.1067C17.6829 5.05756 17.6695 5.01388 17.6427 4.97564C17.6159 4.93741 17.5704 4.90464 17.506 4.87734C17.0182 4.69495 16.5286 4.55653 16.037 4.46205C15.5454 4.3676 15.0349 4.32037 14.5052 4.32037C13.8266 4.32037 13.1662 4.41074 12.524 4.59149C11.8818 4.77225 11.26 5.02917 10.6585 5.36226V15.1849ZM9.99281 17C9.88343 17 9.78858 16.9653 9.70828 16.896C9.62798 16.8266 9.53949 16.7641 9.44279 16.7084C8.81132 16.3338 8.14824 16.0408 7.45355 15.8295C6.75886 15.6182 6.04768 15.5125 5.32003 15.5125C4.89833 15.5125 4.47628 15.5311 4.05388 15.5682C3.63147 15.6053 3.22675 15.7074 2.83973 15.8745C2.39256 16.0569 1.97415 16.0668 1.58449 15.904C1.19483 15.7413 1 15.4628 1 15.0685V4.7758C1 4.54973 1.06379 4.3455 1.19137 4.16311C1.31896 3.98073 1.4771 3.83985 1.66579 3.74046C2.21255 3.41173 2.79416 3.20614 3.41063 3.12369C4.02707 3.04123 4.6521 3 5.2857 3C6.12731 3 6.92227 3.09556 7.67059 3.28669C8.41892 3.47781 9.1919 3.78743 9.98955 4.21555C10.7872 3.78743 11.5602 3.47781 12.3085 3.28669C13.0568 3.09556 13.8518 3 14.6934 3C15.2712 3 15.844 3.03768 16.4117 3.11304C16.9794 3.18839 17.5157 3.34784 18.0206 3.59138C18.279 3.70497 18.5068 3.86005 18.7041 4.05663C18.9014 4.25321 19 4.49293 19 4.7758V15.0685C19 15.4202 18.8277 15.6782 18.4831 15.8426C18.1384 16.007 17.765 16.0263 17.3629 15.9008C16.9115 15.7391 16.4508 15.634 15.9807 15.5854C15.5106 15.5368 15.0352 15.5125 14.5545 15.5125C13.8408 15.5125 13.1471 15.6146 12.4733 15.8188C11.7995 16.0231 11.1608 16.3196 10.5572 16.7084C10.4618 16.7783 10.3713 16.8444 10.2855 16.9066C10.1998 16.9689 10.1022 17 9.99281 17Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function MediaFileIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M9.02565 12.9013L12.6262 10.5796C12.8397 10.4402 12.9464 10.2466 12.9464 9.99879C12.9464 9.75096 12.8397 9.55815 12.6262 9.42036L9.02565 7.0987C8.79047 6.96091 8.55737 6.96124 8.32634 7.09971C8.09532 7.23819 7.97981 7.4378 7.97981 7.69854V12.3015C7.97981 12.5622 8.09532 12.7618 8.32634 12.9003C8.55737 13.0388 8.79047 13.0391 9.02565 12.9013ZM10.0069 18C8.90589 18 7.86912 17.7916 6.89662 17.3749C5.9241 16.9582 5.07331 16.3855 4.34425 15.6568C3.61517 14.928 3.04219 14.0778 2.62531 13.1063C2.20844 12.1348 2 11.0967 2 9.9921C2 8.88403 2.20875 7.84559 2.62624 6.87678C3.04374 5.90798 3.61755 5.05792 4.34766 4.32659C5.07779 3.59528 5.92794 3.02468 6.89809 2.61481C7.86825 2.20494 8.90485 2 10.0079 2C11.1158 2 12.1542 2.20485 13.1229 2.61455C14.0915 3.02425 14.9416 3.59468 15.6731 4.32586C16.4046 5.05706 16.9753 5.90849 17.3852 6.88015C17.7951 7.85181 18 8.89001 18 9.99477C18 11.0995 17.7951 12.1359 17.3855 13.1038C16.9758 14.0717 16.4054 14.9209 15.6744 15.6513C14.9434 16.3818 14.0922 16.9558 13.1208 17.3735C12.1493 17.7912 11.1114 18 10.0069 18Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/MenuIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function MenuIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M2.93223 16C2.67568 16 2.45617 15.8979 2.27371 15.6937C2.09124 15.4895 2 15.2439 2 14.9568C2 14.6697 2.09124 14.4241 2.27371 14.2202C2.45617 14.0162 2.67568 13.9142 2.93223 13.9142H17.0678C17.3243 13.9142 17.5438 14.0163 17.7263 14.2205C17.9088 14.4247 18 14.6703 18 14.9574C18 15.2445 17.9088 15.49 17.7263 15.694C17.5438 15.898 17.3243 16 17.0678 16H2.93223ZM2.93223 11.0186C2.67568 11.0186 2.45617 10.9165 2.27371 10.7124C2.09124 10.5082 2 10.2625 2 9.97543C2 9.68833 2.09124 9.44279 2.27371 9.23882C2.45617 9.03484 2.67568 8.93286 2.93223 8.93286H17.0678C17.3243 8.93286 17.5438 9.03495 17.7263 9.23913C17.9088 9.44333 18 9.68898 18 9.97606C18 10.2632 17.9088 10.5087 17.7263 10.7127C17.5438 10.9166 17.3243 11.0186 17.0678 11.0186H2.93223ZM2.93223 6.0858C2.67568 6.0858 2.45617 5.9837 2.27371 5.7795C2.09124 5.57532 2 5.32967 2 5.04257C2 4.75549 2.09124 4.50996 2.27371 4.30599C2.45617 4.10199 2.67568 4 2.93223 4H17.0678C17.3243 4 17.5438 4.1021 17.7263 4.3063C17.9088 4.5105 18 4.75614 18 5.04323C18 5.33033 17.9088 5.57587 17.7263 5.77984C17.5438 5.98381 17.3243 6.0858 17.0678 6.0858H2.93223Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
package/src/icons/MinusIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function MinusIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M4.90208 11C4.65383 11 4.44142 10.9021 4.26486 10.7063C4.08829 10.5105 4 10.275 4 9.9997C4 9.7244 4.08829 9.48897 4.26486 9.29338C4.44142 9.09779 4.65383 9 4.90208 9H15.0979C15.3462 9 15.5586 9.09789 15.7352 9.29368C15.9117 9.48949 16 9.72502 16 10.0003C16 10.2756 15.9117 10.511 15.7352 10.7066C15.5586 10.9022 15.3462 11 15.0979 11H4.90208Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function MoreOptionsIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M11.5 5.5C11.5 6.32843 10.8284 7 10 7C9.17157 7 8.5 6.32843 8.5 5.5C8.5 4.67157 9.17157 4 10 4C10.8284 4 11.5 4.67157 11.5 5.5Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
<path
|
|
12
|
-
d="M11.5 10C11.5 10.8284 10.8284 11.5 10 11.5C9.17157 11.5 8.5 10.8284 8.5 10C8.5 9.17157 9.17157 8.5 10 8.5C10.8284 8.5 11.5 9.17157 11.5 10Z"
|
|
13
|
-
fill="currentColor"
|
|
14
|
-
/>
|
|
15
|
-
<path
|
|
16
|
-
d="M11.5 14.5C11.5 15.3284 10.8284 16 10 16C9.17157 16 8.5 15.3284 8.5 14.5C8.5 13.6716 9.17157 13 10 13C10.8284 13 11.5 13.6716 11.5 14.5Z"
|
|
17
|
-
fill="currentColor"
|
|
18
|
-
/>
|
|
19
|
-
</svg>
|
|
20
|
-
</Box>
|
|
21
|
-
);
|
|
22
|
-
}
|
package/src/icons/NextIcon.tsx
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function NextIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M15.056 15C14.7962 15 14.574 14.9159 14.3894 14.7478C14.2048 14.5797 14.1126 14.3774 14.1126 14.1411V5.85895C14.1126 5.62257 14.205 5.42032 14.3897 5.25219C14.5745 5.08406 14.7968 5 15.0566 5C15.3164 5 15.5385 5.08406 15.7231 5.25219C15.9077 5.42032 16 5.62257 16 5.85895V14.1411C16 14.3774 15.9076 14.5797 15.7228 14.7478C15.538 14.9159 15.3158 15 15.056 15ZM5.65111 13.9981C5.29883 14.2092 4.93557 14.2291 4.56134 14.0581C4.18711 13.887 4 13.6038 4 13.2084V6.79165C4 6.39428 4.18711 6.10927 4.56134 5.93661C4.93557 5.76396 5.29883 5.7857 5.65111 6.00185L10.9454 9.20252C11.2538 9.38748 11.408 9.65344 11.408 10.0004C11.408 10.3474 11.2538 10.6131 10.9454 10.7975L5.65111 13.9981Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function NotificationIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M4.78657 14.3161C4.56987 14.3161 4.3846 14.2364 4.23076 14.0771C4.07692 13.9178 4 13.726 4 13.5016C4 13.2772 4.07692 13.0854 4.23076 12.9261C4.3846 12.7668 4.56987 12.6871 4.78657 12.6871H5.48171V7.66751C5.48171 6.62037 5.78964 5.67157 6.40549 4.82114C7.02135 3.9707 7.82928 3.41483 8.82928 3.15353C9.25 3.0436 10.0911 2.87144 11.1707 3.15353C12.1707 3.41483 12.9786 3.97385 13.5945 4.83061C14.2104 5.68736 14.5183 6.63299 14.5183 7.66751V12.6871H15.2134C15.4301 12.6871 15.6154 12.7668 15.7692 12.9261C15.9231 13.0854 16 13.2772 16 13.5016C16 13.726 15.9231 13.9178 15.7692 14.0771C15.6154 14.2364 15.4301 14.3161 15.2134 14.3161H4.78657ZM10 17C9.5788 17 9.21647 16.8453 8.91299 16.5359C8.60953 16.2265 8.45779 15.8489 8.45779 15.4031H11.5422C11.5422 15.8489 11.3928 16.2265 11.094 16.5359C10.7953 16.8453 10.4306 17 10 17Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function OrganizationIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M3 16.3717V14.543C3 14.0744 3.15404 13.6858 3.46213 13.3774C3.77021 13.069 4.15833 12.9148 4.62648 12.9148H5.23009V11.0606C5.23009 10.5284 5.40797 10.0842 5.76371 9.72802C6.11945 9.37188 6.56316 9.19382 7.09485 9.19382H9.19471V7.08524H8.5911C8.12294 7.08524 7.73482 6.93103 7.42674 6.62261C7.11866 6.31418 6.96461 5.92563 6.96461 5.45696V3.62828C6.96461 3.15961 7.11883 2.77106 7.42728 2.46264C7.73572 2.15421 8.12426 2 8.59289 2H11.4144C11.883 2 12.2703 2.15421 12.5764 2.46264C12.8824 2.77106 13.0354 3.15961 13.0354 3.62828V5.45696C13.0354 5.92563 12.8813 6.31418 12.5733 6.62261C12.2652 6.93103 11.8771 7.08524 11.4089 7.08524H10.8053V9.19382H12.9052C13.4368 9.19382 13.8806 9.37188 14.2363 9.72802C14.592 10.0842 14.7699 10.5284 14.7699 11.0606V12.9148H15.3769C15.8469 12.9148 16.235 13.069 16.541 13.3774C16.847 13.6858 17 14.0744 17 14.543V16.3717C17 16.8404 16.8458 17.2289 16.5373 17.5374C16.2289 17.8458 15.8404 18 15.3717 18H12.5503C12.0816 18 11.6943 17.8458 11.3883 17.5374C11.0822 17.2289 10.9292 16.8404 10.9292 16.3717V14.543C10.9292 14.0744 11.0833 13.6858 11.3914 13.3774C11.6994 13.069 12.0876 12.9148 12.5557 12.9148H13.1593V11.0606C13.1593 10.9864 13.1355 10.9255 13.0878 10.8777C13.0402 10.83 12.9793 10.8062 12.9052 10.8062H7.09485C7.02072 10.8062 6.95982 10.83 6.91216 10.8777C6.86451 10.9255 6.84068 10.9864 6.84068 11.0606V12.9148H7.4477C7.91771 12.9148 8.30573 13.069 8.61174 13.3774C8.91776 13.6858 9.07077 14.0744 9.07077 14.543V16.3717C9.07077 16.8404 8.91655 17.2289 8.60811 17.5374C8.29967 17.8458 7.91113 18 7.44249 18H4.62103C4.15238 18 3.76505 17.8458 3.45903 17.5374C3.15301 17.2289 3 16.8404 3 16.3717Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function PageFirstIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M13.5105 14.4348L9.80374 10.7147C9.70133 10.612 9.62788 10.5013 9.58341 10.3828C9.53893 10.2643 9.51669 10.1431 9.51669 10.0192C9.51669 9.89534 9.53893 9.77449 9.58341 9.65667C9.62788 9.53885 9.70133 9.42855 9.80374 9.32578L13.5105 5.60575C13.6812 5.43445 13.8834 5.3488 14.1171 5.3488C14.3509 5.3488 14.5531 5.43445 14.7238 5.60575C14.8945 5.77703 14.9798 5.97997 14.9798 6.21457C14.9798 6.44918 14.8945 6.65212 14.7238 6.8234L11.5384 10.0203L14.7238 13.2171C14.9079 13.4019 15 13.6048 15 13.8259C15 14.047 14.9079 14.25 14.7238 14.4348C14.5397 14.6196 14.3375 14.712 14.1171 14.712C13.8968 14.712 13.6946 14.6196 13.5105 14.4348ZM5.86706 15C5.62829 15 5.42409 14.9148 5.25445 14.7445C5.08482 14.5741 5 14.3691 5 14.1296V5.87044C5 5.6309 5.08491 5.42594 5.25472 5.25556C5.42454 5.0852 5.62883 5.00002 5.86758 5.00002C6.10635 5.00002 6.31055 5.0852 6.48019 5.25556C6.64982 5.42594 6.73464 5.6309 6.73464 5.87044V14.1296C6.73464 14.3691 6.64974 14.5741 6.47993 14.7445C6.3101 14.9148 6.10581 15 5.86706 15Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Box, type BoxProps } from '../vanilla/Box';
|
|
2
|
-
|
|
3
|
-
export function PageLastIcon(props: BoxProps) {
|
|
4
|
-
return (
|
|
5
|
-
<Box asChild size="4" {...props}>
|
|
6
|
-
<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
7
|
-
<path
|
|
8
|
-
d="M6.48951 14.4348L10.1963 10.7147C10.2987 10.612 10.3721 10.5013 10.4166 10.3828C10.4611 10.2643 10.4833 10.1431 10.4833 10.0192C10.4833 9.89532 10.4611 9.77447 10.4166 9.65666C10.3721 9.53883 10.2987 9.42853 10.1963 9.32577L6.48951 5.60573C6.31884 5.43444 6.11662 5.34879 5.88285 5.34879C5.64909 5.34879 5.44687 5.43444 5.2762 5.60573C5.10551 5.77701 5.02017 5.97996 5.02017 6.21456C5.02017 6.44916 5.10551 6.6521 5.2762 6.82339L8.46162 10.0202L5.2762 13.2171C5.09207 13.4019 5 13.6048 5 13.8259C5 14.047 5.09207 14.25 5.2762 14.4348C5.46032 14.6195 5.66253 14.7119 5.88285 14.7119C6.10317 14.7119 6.30539 14.6195 6.48951 14.4348ZM14.1329 15C14.3717 15 14.5759 14.9148 14.7455 14.7445C14.9152 14.5741 15 14.3691 15 14.1296V5.87043C15 5.63089 14.9151 5.42593 14.7453 5.25555C14.5755 5.08518 14.3712 5 14.1324 5C13.8936 5 13.6894 5.08518 13.5198 5.25555C13.3502 5.42593 13.2654 5.63089 13.2654 5.87043V14.1296C13.2654 14.3691 13.3503 14.5741 13.5201 14.7445C13.6899 14.9148 13.8942 15 14.1329 15Z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</Box>
|
|
13
|
-
);
|
|
14
|
-
}
|