├── .env ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENCE ├── README.md ├── cache └── cache.ts ├── components ├── ApplicationContainer │ └── ApplicationContainer.tsx ├── BackButton │ └── BackButton.tsx ├── BottomNavigation │ ├── BottomNavigation.styles.js │ ├── BottomNavigation.tsx │ └── BottomNavigationMiddleItem.tsx ├── BottomNavigationItem │ ├── BottomNavigationItem.styles.js │ └── BottomNavigationItem.tsx ├── ColorSchemeToggle │ └── ColorSchemeToggle.tsx ├── ContactsTray │ ├── ContactsTray.styles.js │ ├── ContactsTray.tsx │ ├── FollowersPanel.tsx │ ├── FollowingPanel.tsx │ ├── RelaysPanel.tsx │ └── UserFeed.tsx ├── CopyNpub │ └── CopyNpub.js ├── DiscoverFeed │ └── DiscoverFeed.tsx ├── DiscoverFeedChips │ ├── DiscoverFeedChips.styles.js │ └── DiscoverFeedChips.tsx ├── DownloadSoundButton │ ├── DownloadSoundButton.js │ └── DownloadSoundButton.styles.js ├── Drawer │ ├── Drawer.tsx │ └── DrawerHandle.tsx ├── EditProfileForm │ ├── AboutFieldGroup.tsx │ ├── BannerSelector.tsx │ ├── EditProfileForm.styles.js │ ├── LNURLFieldGroup.tsx │ ├── NameFieldGroup.tsx │ ├── Nip05FieldGroup.tsx │ ├── ProfilePicSelector.tsx │ └── UsernameFieldGroup.tsx ├── Feed │ ├── Feed.styles.js │ ├── Feed.tsx │ ├── GhostFeed.tsx │ ├── MaxWidthContainer.tsx │ ├── NewEventsPill.styles.ts │ ├── NewEventsPill.tsx │ └── index.tsx ├── FeedHeader │ └── FeedHeader.tsx ├── FieldGroups │ ├── AboutFieldGroup.js │ ├── CommentFieldGroup.js │ ├── DisplayNameFieldGroup.js │ ├── FieldGroup.tsx │ ├── LNURLFieldGroup.js │ ├── NameFieldGroup.js │ ├── SoundFieldGroup.tsx │ └── TagsFieldGroup.js ├── Fields │ ├── AboutField │ │ └── AboutField.js │ ├── BannerSelector │ │ └── BannerSelector.js │ ├── CommentField │ │ └── CommentField.js │ ├── DisplayNameField │ │ └── DisplayNameField.js │ ├── LNURLField │ │ └── LNURLField.js │ ├── NameField │ │ └── NameField.js │ ├── ProfilePicSelector │ │ └── ProfilePicSelector.js │ ├── SoundPicker │ │ ├── SoundPicker.styles.js │ │ └── SoundPicker.tsx │ └── TagsField │ │ └── TagsField.tsx ├── FileDropOverlay │ └── FileDropOverlay.js ├── FollowButton │ └── FollowButton.tsx ├── HomeFeed │ └── HomeFeed.tsx ├── LoginForm │ ├── LoginForm.js │ └── TermsOfService.tsx ├── Note │ ├── Note.js │ └── Note.styles.js ├── NoteAction │ ├── NoteAction.js │ ├── NoteActionComment.tsx │ ├── NoteActionLike.tsx │ ├── NoteActionMore.tsx │ └── NoteActionRepost.tsx ├── NoteActionRow │ └── NoteActionRow.tsx ├── NoteActionZap │ └── NoteActionZap.tsx ├── NoteContent │ ├── MentionLink.tsx │ ├── NoteContent.styles.ts │ └── NoteContent.tsx ├── NoteHeader │ ├── NoteHeader.js │ ├── NoteReplyingToHeader.tsx │ └── NoteRepostHeader.tsx ├── NoteTags │ └── NoteTags.js ├── NotificationView │ ├── NotificationView.styles.js │ └── NotificationView.tsx ├── NotificationsFeed │ └── NotificationsFeed.tsx ├── PostSheet │ └── PostSheet.tsx ├── ProfileActionButton │ ├── ProfileActionButton.styles.js │ └── ProfileActionButton.tsx ├── ProfileFeed │ └── ProfileFeed.tsx ├── ProfileLink │ └── ProfileLink.js ├── ProfileMenu │ └── ProfileMenu.tsx ├── ProfilePage │ ├── ProfileActionButtons.tsx │ ├── ProfileActionShareButton.tsx │ ├── ProfileActionZapButton.tsx │ ├── ProfileContactsBar.tsx │ ├── ProfilePage.styles.js │ ├── ProfilePic.tsx │ └── SubscriptionStatusDrawer.tsx ├── Search │ ├── SearchBar.tsx │ ├── SearchButton.tsx │ ├── SearchModal.tsx │ ├── SearchResult.tsx │ └── SearchResults.tsx ├── Settings │ ├── SettingDefaultZapWallet.tsx │ ├── SettingDeveloperMode.tsx │ ├── SettingLogout.tsx │ ├── SettingNsec.tsx │ ├── SettingPubkey.tsx │ ├── Settings.styles.js │ └── SettingsItem.tsx ├── ShareAcrossField │ └── ShareAcrossField.js ├── SignupComplete │ └── SignupComplete.js ├── SignupForm │ └── SignupForm.js ├── SoundPlayer │ ├── SoundPlayer.styles.js │ └── SoundPlayer.tsx ├── StemstrSwitch │ ├── StemstrSwitch.js │ └── StemstrSwitch.styles.js ├── SubscribeWizard │ ├── SubscribeDrawer.tsx │ ├── SubscribeIntroDrawer.tsx │ ├── SubscribePaymentCompleteDrawer.tsx │ ├── SubscribeSelectPassDrawer.tsx │ ├── SubscribeWizard.tsx │ └── SubscribeWizardProvider.tsx ├── TagFeed │ └── TagFeed.tsx ├── Thread │ └── Thread.tsx ├── UserCard │ ├── UserCard.styles.js │ └── UserCard.tsx ├── WaveForm │ └── WaveForm.js ├── Welcome │ ├── Welcome.story.tsx │ ├── Welcome.styles.ts │ ├── Welcome.test.tsx │ └── Welcome.tsx └── ZapWizard │ ├── AmountContinueButton.tsx │ ├── CloseButton.tsx │ ├── CustomAmountDrawer.tsx │ ├── InvoiceDrawer.tsx │ ├── SatsButton.tsx │ ├── SendSatsHeader.tsx │ ├── SquareButton.styles.ts │ ├── SquareButton.tsx │ ├── SquareButtonRow.tsx │ ├── ZapCommentFieldGroup.tsx │ ├── ZapDrawer.tsx │ ├── ZapOptionsDrawer.tsx │ ├── ZapWizard.tsx │ ├── ZapWizardProvider.tsx │ ├── index.ts │ └── useGetBtcPrice.tsx ├── constants ├── index.ts ├── nostr.ts └── styles.ts ├── enums ├── index.ts └── routes.ts ├── hooks ├── useAuth.tsx ├── useCurrentUser.tsx ├── useFeatureDetection.tsx ├── useLightningWalletUri.tsx ├── useLoadSubscriptionStatus.tsx └── useLoadUserPreferences.tsx ├── icons ├── Duocolor icons │ ├── Alerts & feedback │ │ ├── alert-circle.svg │ │ ├── alert-hexagon.svg │ │ ├── alert-octagon.svg │ │ ├── alert-square.svg │ │ ├── alert-triangle.svg │ │ ├── announcement-01.svg │ │ ├── announcement-02.svg │ │ ├── announcement-03.svg │ │ ├── bell-01.svg │ │ ├── bell-02.svg │ │ ├── bell-03.svg │ │ ├── bell-04.svg │ │ ├── bell-minus.svg │ │ ├── bell-off-01.svg │ │ ├── bell-off-02.svg │ │ ├── bell-off-03.svg │ │ ├── bell-plus.svg │ │ ├── bell-ringing-01.svg │ │ ├── bell-ringing-02.svg │ │ ├── bell-ringing-03.svg │ │ ├── bell-ringing-04.svg │ │ ├── message-notification-square.svg │ │ ├── notification-box.svg │ │ ├── notification-text.svg │ │ ├── thumbs-down.svg │ │ └── thumbs-up.svg │ ├── Arrows │ │ ├── arrow-block-down.svg │ │ ├── arrow-block-left.svg │ │ ├── arrow-block-right.svg │ │ ├── arrow-block-up.svg │ │ ├── arrow-circle-broken-down-left.svg │ │ ├── arrow-circle-broken-down-right.svg │ │ ├── arrow-circle-broken-down.svg │ │ ├── arrow-circle-broken-left.svg │ │ ├── arrow-circle-broken-right.svg │ │ ├── arrow-circle-broken-up-left.svg │ │ ├── arrow-circle-broken-up-right.svg │ │ ├── arrow-circle-broken-up.svg │ │ ├── arrow-circle-down-left.svg │ │ ├── arrow-circle-down-right.svg │ │ ├── arrow-circle-down.svg │ │ ├── arrow-circle-left.svg │ │ ├── arrow-circle-right.svg │ │ ├── arrow-circle-up-left.svg │ │ ├── arrow-circle-up-right.svg │ │ ├── arrow-circle-up.svg │ │ ├── arrow-down-left.svg │ │ ├── arrow-down-right.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-narrow-down-left.svg │ │ ├── arrow-narrow-down-right.svg │ │ ├── arrow-narrow-down.svg │ │ ├── arrow-narrow-left.svg │ │ ├── arrow-narrow-right.svg │ │ ├── arrow-narrow-up-left.svg │ │ ├── arrow-narrow-up-right.svg │ │ ├── arrow-narrow-up.svg │ │ ├── arrow-right.svg │ │ ├── arrow-square-down-left.svg │ │ ├── arrow-square-down-right.svg │ │ ├── arrow-square-down.svg │ │ ├── arrow-square-left.svg │ │ ├── arrow-square-right.svg │ │ ├── arrow-square-up-left.svg │ │ ├── arrow-square-up-right.svg │ │ ├── arrow-square-up.svg │ │ ├── arrow-up-left.svg │ │ ├── arrow-up-right.svg │ │ ├── arrow-up.svg │ │ ├── arrows-down.svg │ │ ├── arrows-left.svg │ │ ├── arrows-right.svg │ │ ├── arrows-triangle.svg │ │ ├── arrows-up.svg │ │ ├── chevron-down-double.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left-double.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right-double.svg │ │ ├── chevron-right.svg │ │ ├── chevron-selector-horizontal.svg │ │ ├── chevron-selector-vertical.svg │ │ ├── chevron-up-double.svg │ │ ├── chevron-up.svg │ │ ├── corner-down-left.svg │ │ ├── corner-down-right.svg │ │ ├── corner-left-down.svg │ │ ├── corner-left-up.svg │ │ ├── corner-right-down.svg │ │ ├── corner-right-up.svg │ │ ├── corner-up-left.svg │ │ ├── corner-up-right.svg │ │ ├── expand-01.svg │ │ ├── expand-02.svg │ │ ├── expand-03.svg │ │ ├── expand-04.svg │ │ ├── expand-05.svg │ │ ├── expand-06.svg │ │ ├── flip-backward.svg │ │ ├── flip-forward.svg │ │ ├── infinity.svg │ │ ├── refresh-ccw-01.svg │ │ ├── refresh-ccw-02.svg │ │ ├── refresh-ccw-03.svg │ │ ├── refresh-ccw-04.svg │ │ ├── refresh-ccw-05.svg │ │ ├── refresh-cw-01.svg │ │ ├── refresh-cw-02.svg │ │ ├── refresh-cw-03.svg │ │ ├── refresh-cw-04.svg │ │ ├── refresh-cw-05.svg │ │ ├── reverse-left.svg │ │ ├── reverse-right.svg │ │ ├── switch-horizontal-01.svg │ │ ├── switch-horizontal-02.svg │ │ ├── switch-vertical-01.svg │ │ └── switch-vertical-02.svg │ ├── Charts │ │ ├── bar-chart-01.svg │ │ ├── bar-chart-02.svg │ │ ├── bar-chart-03.svg │ │ ├── bar-chart-04.svg │ │ ├── bar-chart-05.svg │ │ ├── bar-chart-06.svg │ │ ├── bar-chart-07.svg │ │ ├── bar-chart-08.svg │ │ ├── bar-chart-09.svg │ │ ├── bar-chart-10.svg │ │ ├── bar-chart-11.svg │ │ ├── bar-chart-12.svg │ │ ├── bar-chart-circle-01.svg │ │ ├── bar-chart-circle-02.svg │ │ ├── bar-chart-circle-03.svg │ │ ├── bar-chart-square-01.svg │ │ ├── bar-chart-square-02.svg │ │ ├── bar-chart-square-03.svg │ │ ├── bar-chart-square-down.svg │ │ ├── bar-chart-square-minus.svg │ │ ├── bar-chart-square-plus.svg │ │ ├── bar-chart-square-up.svg │ │ ├── bar-line-chart.svg │ │ ├── chart-breakout-circle.svg │ │ ├── chart-breakout-square.svg │ │ ├── horizontal-bar-chart-01.svg │ │ ├── horizontal-bar-chart-02.svg │ │ ├── horizontal-bar-chart-03.svg │ │ ├── line-chart-down-01.svg │ │ ├── line-chart-down-02.svg │ │ ├── line-chart-down-03.svg │ │ ├── line-chart-down-04.svg │ │ ├── line-chart-down-05.svg │ │ ├── line-chart-up-01.svg │ │ ├── line-chart-up-02.svg │ │ ├── line-chart-up-03.svg │ │ ├── line-chart-up-04.svg │ │ ├── line-chart-up-05.svg │ │ ├── pie-chart-01.svg │ │ ├── pie-chart-02.svg │ │ ├── pie-chart-03.svg │ │ ├── pie-chart-04.svg │ │ ├── presentation-chart-01.svg │ │ ├── presentation-chart-02.svg │ │ ├── presentation-chart-03.svg │ │ ├── trend-down-01.svg │ │ ├── trend-down-02.svg │ │ ├── trend-up-01.svg │ │ └── trend-up-02.svg │ ├── Communication │ │ ├── annotation-alert.svg │ │ ├── annotation-check.svg │ │ ├── annotation-dots.svg │ │ ├── annotation-heart.svg │ │ ├── annotation-info.svg │ │ ├── annotation-plus.svg │ │ ├── annotation-question.svg │ │ ├── annotation-x.svg │ │ ├── annotation.svg │ │ ├── inbox-01.svg │ │ ├── inbox-02.svg │ │ ├── mail-01.svg │ │ ├── mail-02.svg │ │ ├── mail-03.svg │ │ ├── mail-04.svg │ │ ├── mail-05.svg │ │ ├── message-alert-circle.svg │ │ ├── message-alert-square.svg │ │ ├── message-chat-circle.svg │ │ ├── message-chat-square.svg │ │ ├── message-check-circle.svg │ │ ├── message-check-square.svg │ │ ├── message-circle-01.svg │ │ ├── message-circle-02.svg │ │ ├── message-dots-circle.svg │ │ ├── message-dots-square.svg │ │ ├── message-heart-circle.svg │ │ ├── message-heart-square.svg │ │ ├── message-notification-circle.svg │ │ ├── message-notification-square.svg │ │ ├── message-plus-circle.svg │ │ ├── message-plus-square.svg │ │ ├── message-question-circle.svg │ │ ├── message-question-square.svg │ │ ├── message-smile-circle.svg │ │ ├── message-smile-square.svg │ │ ├── message-square-01.svg │ │ ├── message-square-02.svg │ │ ├── message-text-circle-01.svg │ │ ├── message-text-circle-02.svg │ │ ├── message-text-square-01.svg │ │ ├── message-text-square-02.svg │ │ ├── message-x-circle.svg │ │ ├── message-x-square.svg │ │ ├── phone-call-01.svg │ │ ├── phone-call-02.svg │ │ ├── phone-hang-up.svg │ │ ├── phone-incoming-01.svg │ │ ├── phone-incoming-02.svg │ │ ├── phone-outgoing-01.svg │ │ ├── phone-outgoing-02.svg │ │ ├── phone-pause.svg │ │ ├── phone-plus.svg │ │ ├── phone-x.svg │ │ ├── phone.svg │ │ ├── send-01.svg │ │ ├── send-02.svg │ │ └── send-03.svg │ ├── Development │ │ ├── brackets-check.svg │ │ ├── brackets-ellipses.svg │ │ ├── brackets-minus.svg │ │ ├── brackets-plus.svg │ │ ├── brackets-slash.svg │ │ ├── brackets-x.svg │ │ ├── brackets.svg │ │ ├── browser.svg │ │ ├── code-01.svg │ │ ├── code-02.svg │ │ ├── code-browser.svg │ │ ├── code-circle-01.svg │ │ ├── code-circle-02.svg │ │ ├── code-circle-03.svg │ │ ├── code-square-01.svg │ │ ├── code-square-02.svg │ │ ├── codepen.svg │ │ ├── container.svg │ │ ├── cpu-chip-01.svg │ │ ├── cpu-chip-02.svg │ │ ├── data.svg │ │ ├── database-01.svg │ │ ├── database-02.svg │ │ ├── database-03.svg │ │ ├── dataflow-01.svg │ │ ├── dataflow-02.svg │ │ ├── dataflow-03.svg │ │ ├── dataflow-04.svg │ │ ├── file-code-01.svg │ │ ├── file-code-02.svg │ │ ├── folder-code.svg │ │ ├── git-branch-01.svg │ │ ├── git-branch-02.svg │ │ ├── git-commit.svg │ │ ├── git-merge.svg │ │ ├── git-pull-request.svg │ │ ├── package-check.svg │ │ ├── package-minus.svg │ │ ├── package-plus.svg │ │ ├── package-search.svg │ │ ├── package-x.svg │ │ ├── package.svg │ │ ├── puzzle-piece-01.svg │ │ ├── puzzle-piece-02.svg │ │ ├── qr-code-01.svg │ │ ├── qr-code-02.svg │ │ ├── server-01.svg │ │ ├── server-02.svg │ │ ├── server-03.svg │ │ ├── server-04.svg │ │ ├── server-05.svg │ │ ├── server-06.svg │ │ ├── terminal-browser.svg │ │ ├── terminal-circle.svg │ │ ├── terminal-square.svg │ │ ├── terminal.svg │ │ └── variable.svg │ ├── Editor │ │ ├── align-center.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── attachment-01.svg │ │ ├── attachment-02.svg │ │ ├── bezier-curve-01.svg │ │ ├── bezier-curve-02.svg │ │ ├── bezier-curve-03.svg │ │ ├── bold-01.svg │ │ ├── bold-02.svg │ │ ├── bold-square.svg │ │ ├── brush-01.svg │ │ ├── brush-02.svg │ │ ├── brush-03.svg │ │ ├── circle-cut.svg │ │ ├── code-snippet-01.svg │ │ ├── code-snippet-02.svg │ │ ├── colors.svg │ │ ├── command.svg │ │ ├── contrast-01.svg │ │ ├── contrast-02.svg │ │ ├── contrast-03.svg │ │ ├── crop-01.svg │ │ ├── crop-02.svg │ │ ├── cursor-01.svg │ │ ├── cursor-02.svg │ │ ├── cursor-03.svg │ │ ├── cursor-04.svg │ │ ├── cursor-box.svg │ │ ├── cursor-click-01.svg │ │ ├── cursor-click-02.svg │ │ ├── delete.svg │ │ ├── dotpoints-01.svg │ │ ├── dotpoints-02.svg │ │ ├── drop.svg │ │ ├── dropper.svg │ │ ├── eraser.svg │ │ ├── feather.svg │ │ ├── figma.svg │ │ ├── framer.svg │ │ ├── hand.svg │ │ ├── heading-01.svg │ │ ├── heading-02.svg │ │ ├── heading-square.svg │ │ ├── image-indent-left.svg │ │ ├── image-indent-right.svg │ │ ├── italic-01.svg │ │ ├── italic-02.svg │ │ ├── italic-square.svg │ │ ├── left-indent-01.svg │ │ ├── left-indent-02.svg │ │ ├── letter-spacing-01.svg │ │ ├── letter-spacing-02.svg │ │ ├── line-height.svg │ │ ├── magic-wand-01.svg │ │ ├── magic-wand-02.svg │ │ ├── move.svg │ │ ├── paint-pour.svg │ │ ├── paint.svg │ │ ├── palette.svg │ │ ├── paragraph-spacing.svg │ │ ├── paragraph-wrap.svg │ │ ├── pen-tool-01.svg │ │ ├── pen-tool-02.svg │ │ ├── pen-tool-minus.svg │ │ ├── pen-tool-plus.svg │ │ ├── pencil-01.svg │ │ ├── pencil-02.svg │ │ ├── pencil-line.svg │ │ ├── perspective-01.svg │ │ ├── perspective-02.svg │ │ ├── pilcrow-01.svg │ │ ├── pilcrow-02.svg │ │ ├── pilcrow-square.svg │ │ ├── reflect-01.svg │ │ ├── reflect-02.svg │ │ ├── right-indent-01.svg │ │ ├── right-indent-02.svg │ │ ├── roller-brush.svg │ │ ├── scale-01.svg │ │ ├── scale-02.svg │ │ ├── scale-03.svg │ │ ├── scissors-01.svg │ │ ├── scissors-02.svg │ │ ├── scissors-cut-01.svg │ │ ├── scissors-cut-02.svg │ │ ├── skew.svg │ │ ├── strikethrough-01.svg │ │ ├── strikethrough-02.svg │ │ ├── strikethrough-square.svg │ │ ├── subscript.svg │ │ ├── text-input.svg │ │ ├── transform.svg │ │ ├── type-01.svg │ │ ├── type-02.svg │ │ ├── type-square.svg │ │ ├── type-strikethrough-01.svg │ │ ├── type-strikethrough-02.svg │ │ ├── underline-01.svg │ │ ├── underline-02.svg │ │ ├── underline-square.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg │ ├── Education │ │ ├── atom-01.svg │ │ ├── atom-02.svg │ │ ├── award-01.svg │ │ ├── award-02.svg │ │ ├── award-03.svg │ │ ├── award-04.svg │ │ ├── award-05.svg │ │ ├── backpack.svg │ │ ├── beaker-01.svg │ │ ├── beaker-02.svg │ │ ├── book-closed.svg │ │ ├── book-open-01.svg │ │ ├── book-open-02.svg │ │ ├── briefcase-01.svg │ │ ├── briefcase-02.svg │ │ ├── calculator.svg │ │ ├── certificate-01.svg │ │ ├── certificate-02.svg │ │ ├── compass.svg │ │ ├── glasses-01.svg │ │ ├── glasses-02.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── graduation-hat-01.svg │ │ ├── graduation-hat-02.svg │ │ ├── microscope.svg │ │ ├── ruler.svg │ │ ├── stand.svg │ │ ├── telescope.svg │ │ ├── trophy-01.svg │ │ └── trophy-02.svg │ ├── Files │ │ ├── box.svg │ │ ├── clipboard-attachment.svg │ │ ├── clipboard-check.svg │ │ ├── clipboard-download.svg │ │ ├── clipboard-minus.svg │ │ ├── clipboard-plus.svg │ │ ├── clipboard-x.svg │ │ ├── clipboard.svg │ │ ├── file-01.svg │ │ ├── file-02.svg │ │ ├── file-03.svg │ │ ├── file-04.svg │ │ ├── file-05.svg │ │ ├── file-06.svg │ │ ├── file-07.svg │ │ ├── file-attachment-01.svg │ │ ├── file-attachment-02.svg │ │ ├── file-attachment-03.svg │ │ ├── file-attachment-04.svg │ │ ├── file-attachment-05.svg │ │ ├── file-check-01.svg │ │ ├── file-check-02.svg │ │ ├── file-check-03.svg │ │ ├── file-download-01.svg │ │ ├── file-download-02.svg │ │ ├── file-download-03.svg │ │ ├── file-heart-01.svg │ │ ├── file-heart-02.svg │ │ ├── file-heart-03.svg │ │ ├── file-minus-01.svg │ │ ├── file-minus-02.svg │ │ ├── file-minus-03.svg │ │ ├── file-plus-01.svg │ │ ├── file-plus-02.svg │ │ ├── file-plus-03.svg │ │ ├── file-question-01.svg │ │ ├── file-question-02.svg │ │ ├── file-question-03.svg │ │ ├── file-search-01.svg │ │ ├── file-search-02.svg │ │ ├── file-search-03.svg │ │ ├── file-x-01.svg │ │ ├── file-x-02.svg │ │ ├── file-x-03.svg │ │ ├── folder-check.svg │ │ ├── folder-closed.svg │ │ ├── folder-download.svg │ │ ├── folder-lock.svg │ │ ├── folder-minus.svg │ │ ├── folder-plus.svg │ │ ├── folder-question.svg │ │ ├── folder-search.svg │ │ ├── folder-x.svg │ │ ├── folder.svg │ │ ├── paperclip.svg │ │ ├── sticker-circle.svg │ │ └── sticker-square.svg │ ├── Finance & eCommerce │ │ ├── bank-note-01.svg │ │ ├── bank-note-02.svg │ │ ├── bank-note-03.svg │ │ ├── bank.svg │ │ ├── coins-01.svg │ │ ├── coins-02.svg │ │ ├── coins-03.svg │ │ ├── coins-04.svg │ │ ├── coins-hand.svg │ │ ├── coins-stacked-01.svg │ │ ├── coins-stacked-02.svg │ │ ├── coins-stacked-03.svg │ │ ├── coins-stacked-04.svg │ │ ├── coins-swap-01.svg │ │ ├── coins-swap-02.svg │ │ ├── credit-card-01.svg │ │ ├── credit-card-02.svg │ │ ├── credit-card-check.svg │ │ ├── credit-card-down.svg │ │ ├── credit-card-download.svg │ │ ├── credit-card-edit.svg │ │ ├── credit-card-lock.svg │ │ ├── credit-card-minus.svg │ │ ├── credit-card-plus.svg │ │ ├── credit-card-refresh.svg │ │ ├── credit-card-search.svg │ │ ├── credit-card-shield.svg │ │ ├── credit-card-up.svg │ │ ├── credit-card-upload.svg │ │ ├── credit-card-x.svg │ │ ├── cryptocurrency-01.svg │ │ ├── cryptocurrency-02.svg │ │ ├── cryptocurrency-03.svg │ │ ├── cryptocurrency-04.svg │ │ ├── currency-bitcoin-circle.svg │ │ ├── currency-bitcoin.svg │ │ ├── currency-dollar-circle.svg │ │ ├── currency-dollar.svg │ │ ├── currency-ethereum-circle.svg │ │ ├── currency-ethereum.svg │ │ ├── currency-euro-circle.svg │ │ ├── currency-euro.svg │ │ ├── currency-pound-circle.svg │ │ ├── currency-pound.svg │ │ ├── currency-ruble-circle.svg │ │ ├── currency-ruble.svg │ │ ├── currency-rupee-circle.svg │ │ ├── currency-rupee.svg │ │ ├── currency-yen-circle.svg │ │ ├── currency-yen.svg │ │ ├── diamond-01.svg │ │ ├── diamond-02.svg │ │ ├── gift-01.svg │ │ ├── gift-02.svg │ │ ├── piggy-bank-01.svg │ │ ├── piggy-bank-02.svg │ │ ├── receipt-check.svg │ │ ├── receipt.svg │ │ ├── safe.svg │ │ ├── sale-01.svg │ │ ├── sale-02.svg │ │ ├── sale-03.svg │ │ ├── sale-04.svg │ │ ├── scales-01.svg │ │ ├── scales-02.svg │ │ ├── shopping-bag-01.svg │ │ ├── shopping-bag-02.svg │ │ ├── shopping-bag-03.svg │ │ ├── shopping-cart-01.svg │ │ ├── shopping-cart-02.svg │ │ ├── shopping-cart-03.svg │ │ ├── tag-01.svg │ │ ├── tag-02.svg │ │ ├── tag-03.svg │ │ ├── wallet-01.svg │ │ ├── wallet-02.svg │ │ ├── wallet-03.svg │ │ ├── wallet-04.svg │ │ └── wallet-05.svg │ ├── General │ │ ├── activity-heart.svg │ │ ├── activity.svg │ │ ├── anchor.svg │ │ ├── archive.svg │ │ ├── asterisk-01.svg │ │ ├── asterisk-02.svg │ │ ├── at-sign.svg │ │ ├── bookmark-add.svg │ │ ├── bookmark-check.svg │ │ ├── bookmark-minus.svg │ │ ├── bookmark-x.svg │ │ ├── bookmark.svg │ │ ├── building-01.svg │ │ ├── building-02.svg │ │ ├── building-03.svg │ │ ├── building-04.svg │ │ ├── building-05.svg │ │ ├── building-06.svg │ │ ├── building-07.svg │ │ ├── building-08.svg │ │ ├── check-circle-broken.svg │ │ ├── check-circle.svg │ │ ├── check-done-01.svg │ │ ├── check-done-02.svg │ │ ├── check-heart.svg │ │ ├── check-square-broken.svg │ │ ├── check-square.svg │ │ ├── check-verified-01.svg │ │ ├── check-verified-02.svg │ │ ├── check-verified-03.svg │ │ ├── check.svg │ │ ├── cloud-blank-01.svg │ │ ├── cloud-blank-02.svg │ │ ├── copy-01.svg │ │ ├── copy-02.svg │ │ ├── copy-03.svg │ │ ├── copy-04.svg │ │ ├── copy-05.svg │ │ ├── copy-06.svg │ │ ├── copy-07.svg │ │ ├── divide-01.svg │ │ ├── divide-02.svg │ │ ├── divide-03.svg │ │ ├── dots-grid.svg │ │ ├── dots-horizontal.svg │ │ ├── dots-vertical.svg │ │ ├── download-01.svg │ │ ├── download-02.svg │ │ ├── download-03.svg │ │ ├── download-04.svg │ │ ├── download-cloud-01.svg │ │ ├── download-cloud-02.svg │ │ ├── edit-01.svg │ │ ├── edit-02.svg │ │ ├── edit-03.svg │ │ ├── edit-04.svg │ │ ├── edit-05.svg │ │ ├── equal-not.svg │ │ ├── equal.svg │ │ ├── eye-off.svg │ │ ├── eye.svg │ │ ├── filter-funnel-01.svg │ │ ├── filter-funnel-02.svg │ │ ├── filter-lines.svg │ │ ├── google-chrome.svg │ │ ├── hash-01.svg │ │ ├── hash-02.svg │ │ ├── heart-circle.svg │ │ ├── heart-hand.svg │ │ ├── heart-octagon.svg │ │ ├── heart-rounded.svg │ │ ├── heart-square.svg │ │ ├── heart.svg │ │ ├── hearts.svg │ │ ├── help-circle.svg │ │ ├── help-hexagon.svg │ │ ├── help-octagon-1.svg │ │ ├── help-octagon.svg │ │ ├── help-square.svg │ │ ├── home-01.svg │ │ ├── home-02.svg │ │ ├── home-03.svg │ │ ├── home-04.svg │ │ ├── home-05.svg │ │ ├── home-line.svg │ │ ├── home-smile.svg │ │ ├── info-circle.svg │ │ ├── info-hexagon.svg │ │ ├── info-octagon.svg │ │ ├── info-square.svg │ │ ├── life-buoy-01.svg │ │ ├── life-buoy-02.svg │ │ ├── link-01.svg │ │ ├── link-02.svg │ │ ├── link-03.svg │ │ ├── link-04.svg │ │ ├── link-05.svg │ │ ├── link-broken-01.svg │ │ ├── link-broken-02.svg │ │ ├── link-external-01.svg │ │ ├── link-external-02.svg │ │ ├── loading-01.svg │ │ ├── loading-02.svg │ │ ├── loading-03.svg │ │ ├── log-in-01.svg │ │ ├── log-in-02.svg │ │ ├── log-in-03.svg │ │ ├── log-in-04.svg │ │ ├── log-out-01.svg │ │ ├── log-out-02.svg │ │ ├── log-out-03.svg │ │ ├── log-out-04.svg │ │ ├── medical-circle.svg │ │ ├── medical-cross.svg │ │ ├── medical-square.svg │ │ ├── menu-01.svg │ │ ├── menu-02.svg │ │ ├── menu-03.svg │ │ ├── menu-04.svg │ │ ├── menu-05.svg │ │ ├── minus-circle.svg │ │ ├── minus-square.svg │ │ ├── minus.svg │ │ ├── percent-01.svg │ │ ├── percent-02.svg │ │ ├── percent-03.svg │ │ ├── pin-01.svg │ │ ├── pin-02.svg │ │ ├── placeholder.svg │ │ ├── plus-circle.svg │ │ ├── plus-square.svg │ │ ├── plus.svg │ │ ├── save-01.svg │ │ ├── save-02.svg │ │ ├── save-03.svg │ │ ├── search-lg.svg │ │ ├── search-md.svg │ │ ├── search-refraction.svg │ │ ├── search-sm.svg │ │ ├── settings-01.svg │ │ ├── settings-02.svg │ │ ├── settings-03.svg │ │ ├── settings-04.svg │ │ ├── share-01.svg │ │ ├── share-02.svg │ │ ├── share-03.svg │ │ ├── share-04.svg │ │ ├── share-05.svg │ │ ├── share-06.svg │ │ ├── share-07.svg │ │ ├── slash-circle-01.svg │ │ ├── slash-circle-02.svg │ │ ├── slash-divider.svg │ │ ├── slash-octagon.svg │ │ ├── speedometer-01.svg │ │ ├── speedometer-02.svg │ │ ├── speedometer-03.svg │ │ ├── speedometer-04.svg │ │ ├── target-01.svg │ │ ├── target-02.svg │ │ ├── target-03.svg │ │ ├── target-04.svg │ │ ├── target-05.svg │ │ ├── toggle-01-left.svg │ │ ├── toggle-01-right.svg │ │ ├── toggle-02-left.svg │ │ ├── toggle-02-right.svg │ │ ├── toggle-03-left.svg │ │ ├── toggle-03-right.svg │ │ ├── tool-01.svg │ │ ├── tool-02.svg │ │ ├── translate-01.svg │ │ ├── translate-02.svg │ │ ├── trash-01.svg │ │ ├── trash-02.svg │ │ ├── trash-03.svg │ │ ├── trash-04.svg │ │ ├── upload-01.svg │ │ ├── upload-02.svg │ │ ├── upload-03.svg │ │ ├── upload-04.svg │ │ ├── upload-cloud-01.svg │ │ ├── upload-cloud-02.svg │ │ ├── virus.svg │ │ ├── x-circle.svg │ │ ├── x-close.svg │ │ ├── x-square.svg │ │ ├── x.svg │ │ ├── zap-circle.svg │ │ ├── zap-fast.svg │ │ ├── zap-off.svg │ │ ├── zap-square.svg │ │ └── zap.svg │ ├── Images │ │ ├── camera-01.svg │ │ ├── camera-02.svg │ │ ├── camera-03.svg │ │ ├── camera-lens.svg │ │ ├── camera-off.svg │ │ ├── camera-plus.svg │ │ ├── colors.svg │ │ ├── flash-off.svg │ │ ├── flash.svg │ │ ├── image-01.svg │ │ ├── image-02.svg │ │ ├── image-03.svg │ │ ├── image-04.svg │ │ ├── image-05.svg │ │ ├── image-check.svg │ │ ├── image-down.svg │ │ ├── image-left.svg │ │ ├── image-plus.svg │ │ ├── image-right.svg │ │ ├── image-up.svg │ │ ├── image-user-check.svg │ │ ├── image-user-down.svg │ │ ├── image-user-left.svg │ │ ├── image-user-plus.svg │ │ ├── image-user-right.svg │ │ ├── image-user-up.svg │ │ ├── image-user-x.svg │ │ ├── image-user.svg │ │ └── image-x.svg │ ├── Layout │ │ ├── align-bottom-01.svg │ │ ├── align-bottom-02.svg │ │ ├── align-horizontal-centre-01.svg │ │ ├── align-horizontal-centre-02.svg │ │ ├── align-left-01.svg │ │ ├── align-left-02.svg │ │ ├── align-right-01.svg │ │ ├── align-right-02.svg │ │ ├── align-top-arrow-01.svg │ │ ├── align-top-arrow-02.svg │ │ ├── align-vertical-center-01.svg │ │ ├── align-vertical-center-02.svg │ │ ├── columns-02.svg │ │ ├── columns-03.svg │ │ ├── distribute-spacing-horizontal.svg │ │ ├── distribute-spacing-vertical.svg │ │ ├── divider.svg │ │ ├── flex-align-bottom.svg │ │ ├── flex-align-left.svg │ │ ├── flex-align-right.svg │ │ ├── flex-align-top.svg │ │ ├── grid-01.svg │ │ ├── grid-02.svg │ │ ├── grid-03.svg │ │ ├── grid-dots-blank.svg │ │ ├── grid-dots-bottom.svg │ │ ├── grid-dots-horizontal-center.svg │ │ ├── grid-dots-left.svg │ │ ├── grid-dots-outer.svg │ │ ├── grid-dots-right.svg │ │ ├── grid-dots-top.svg │ │ ├── grid-dots-vertical-center.svg │ │ ├── grid.svg │ │ ├── intersect-circle.svg │ │ ├── intersect-square.svg │ │ ├── layer-single.svg │ │ ├── layers-three-01.svg │ │ ├── layers-three-02.svg │ │ ├── layers-two-01.svg │ │ ├── layers-two-02.svg │ │ ├── layout-alt-01.svg │ │ ├── layout-alt-02.svg │ │ ├── layout-alt-03.svg │ │ ├── layout-alt-04.svg │ │ ├── layout-bottom.svg │ │ ├── layout-grid-01.svg │ │ ├── layout-grid-02.svg │ │ ├── layout-left.svg │ │ ├── layout-right.svg │ │ ├── layout-top.svg │ │ ├── list.svg │ │ ├── maximize-01.svg │ │ ├── maximize-02.svg │ │ ├── minimize-01.svg │ │ ├── minimize-02.svg │ │ ├── rows-01.svg │ │ ├── rows-02.svg │ │ ├── rows-03.svg │ │ ├── spacing-height-01.svg │ │ ├── spacing-height-02.svg │ │ ├── spacing-width-01.svg │ │ ├── spacing-width-02.svg │ │ └── table.svg │ ├── Maps & travel │ │ ├── bus.svg │ │ ├── compass-01.svg │ │ ├── compass-02.svg │ │ ├── compass-03.svg │ │ ├── flag-01.svg │ │ ├── flag-02.svg │ │ ├── flag-03.svg │ │ ├── flag-04.svg │ │ ├── flag-05.svg │ │ ├── flag-06.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── globe-03.svg │ │ ├── globe-04.svg │ │ ├── globe-05.svg │ │ ├── globe-06.svg │ │ ├── luggage-01.svg │ │ ├── luggage-02.svg │ │ ├── luggage-03.svg │ │ ├── map-01.svg │ │ ├── map-02.svg │ │ ├── mark.svg │ │ ├── marker-pin-01.svg │ │ ├── marker-pin-02.svg │ │ ├── marker-pin-03.svg │ │ ├── marker-pin-04.svg │ │ ├── marker-pin-05.svg │ │ ├── marker-pin-06.svg │ │ ├── navigation-pointer-01.svg │ │ ├── navigation-pointer-02.svg │ │ ├── navigation-pointer-off-01.svg │ │ ├── navigation-pointer-off-02.svg │ │ ├── passport.svg │ │ ├── plane.svg │ │ ├── rocket-01.svg │ │ ├── rocket-02.svg │ │ ├── route.svg │ │ ├── ticket-01.svg │ │ ├── ticket-02.svg │ │ ├── train.svg │ │ ├── tram.svg │ │ ├── truck-01.svg │ │ └── truck-02.svg │ ├── Media & devices │ │ ├── airplay.svg │ │ ├── airpods.svg │ │ ├── battery-charging-01.svg │ │ ├── battery-charging-02.svg │ │ ├── battery-empty.svg │ │ ├── battery-full.svg │ │ ├── battery-low.svg │ │ ├── battery-mid.svg │ │ ├── bluetooth-connect.svg │ │ ├── bluetooth-on.svg │ │ ├── bluetooth-signal.svg │ │ ├── bluetooth.svg │ │ ├── chrome-cast.svg │ │ ├── clapperboard.svg │ │ ├── disc-01.svg │ │ ├── disc-02.svg │ │ ├── fast-backward.svg │ │ ├── fast-forward.svg │ │ ├── film-01.svg │ │ ├── film-02.svg │ │ ├── film-03.svg │ │ ├── gaming-pad-01.svg │ │ ├── gaming-pad-02.svg │ │ ├── hard-drive.svg │ │ ├── headphones-01.svg │ │ ├── headphones-02.svg │ │ ├── keyboard-01.svg │ │ ├── keyboard-02.svg │ │ ├── laptop-01.svg │ │ ├── laptop-02.svg │ │ ├── lightbulb-01.svg │ │ ├── lightbulb-02.svg │ │ ├── lightbulb-03.svg │ │ ├── lightbulb-04.svg │ │ ├── lightbulb-05.svg │ │ ├── microphone-01.svg │ │ ├── microphone-02.svg │ │ ├── microphone-off-01.svg │ │ ├── microphone-off-02.svg │ │ ├── modem-01.svg │ │ ├── modem-02.svg │ │ ├── monitor-01.svg │ │ ├── monitor-02.svg │ │ ├── monitor-03.svg │ │ ├── monitor-04.svg │ │ ├── monitor-05.svg │ │ ├── mouse.svg │ │ ├── music-note-01.svg │ │ ├── music-note-02.svg │ │ ├── music.svg │ │ ├── pause-circle.svg │ │ ├── pause-square.svg │ │ ├── phone-01.svg │ │ ├── phone-02.svg │ │ ├── play-circle.svg │ │ ├── play-square.svg │ │ ├── play.svg │ │ ├── podcast.svg │ │ ├── power-01.svg │ │ ├── power-02.svg │ │ ├── power-03.svg │ │ ├── printer.svg │ │ ├── recording-01.svg │ │ ├── recording-02.svg │ │ ├── recording-03.svg │ │ ├── repeat-01.svg │ │ ├── repeat-02.svg │ │ ├── repeat-03.svg │ │ ├── repeat-04.svg │ │ ├── rss-01.svg │ │ ├── rss-02.svg │ │ ├── shuffle-01.svg │ │ ├── shuffle-02.svg │ │ ├── signal-01.svg │ │ ├── signal-02.svg │ │ ├── signal-03.svg │ │ ├── simcard.svg │ │ ├── skip-back.svg │ │ ├── skip-forward.svg │ │ ├── sliders-01.svg │ │ ├── sliders-02.svg │ │ ├── sliders-03.svg │ │ ├── sliders-04.svg │ │ ├── speaker-01.svg │ │ ├── speaker-02.svg │ │ ├── speaker-03.svg │ │ ├── stop-circle.svg │ │ ├── stop-square.svg │ │ ├── stop.svg │ │ ├── tablet-01.svg │ │ ├── tablet-02.svg │ │ ├── tv-01.svg │ │ ├── tv-02.svg │ │ ├── tv-03.svg │ │ ├── usb-flash-drive.svg │ │ ├── video-recorder-off.svg │ │ ├── video-recorder.svg │ │ ├── voicemail.svg │ │ ├── volume-max.svg │ │ ├── volume-min.svg │ │ ├── volume-minus.svg │ │ ├── volume-plus.svg │ │ ├── volume-x.svg │ │ ├── webcam-01.svg │ │ ├── webcam-02.svg │ │ ├── wifi-off.svg │ │ ├── wifi.svg │ │ └── youtube.svg │ ├── Security │ │ ├── face-id-square.svg │ │ ├── face-id.svg │ │ ├── file-lock-01.svg │ │ ├── file-lock-02.svg │ │ ├── file-lock-03.svg │ │ ├── file-shield-01.svg │ │ ├── file-shield-02.svg │ │ ├── file-shield-03.svg │ │ ├── fingerprint-01.svg │ │ ├── fingerprint-02.svg │ │ ├── fingerprint-03.svg │ │ ├── fingerprint-04.svg │ │ ├── folder-shield.svg │ │ ├── key-01.svg │ │ ├── key-02.svg │ │ ├── lock-01.svg │ │ ├── lock-02.svg │ │ ├── lock-03.svg │ │ ├── lock-04.svg │ │ ├── lock-keyhole-circle.svg │ │ ├── lock-keyhole-square.svg │ │ ├── lock-unlocked-01.svg │ │ ├── lock-unlocked-02.svg │ │ ├── lock-unlocked-03.svg │ │ ├── lock-unlocked-04.svg │ │ ├── passcode-lock.svg │ │ ├── passcode.svg │ │ ├── scan.svg │ │ ├── shield-01.svg │ │ ├── shield-02.svg │ │ ├── shield-03.svg │ │ ├── shield-dollar.svg │ │ ├── shield-off.svg │ │ ├── shield-plus.svg │ │ ├── shield-tick.svg │ │ └── shield-zap.svg │ ├── Shapes │ │ ├── circle.svg │ │ ├── cube-01.svg │ │ ├── cube-02.svg │ │ ├── cube-03.svg │ │ ├── cube-04.svg │ │ ├── cube-outline.svg │ │ ├── dice-1.svg │ │ ├── dice-2.svg │ │ ├── dice-3.svg │ │ ├── dice-4.svg │ │ ├── dice-5.svg │ │ ├── dice-6.svg │ │ ├── hexagon-01.svg │ │ ├── hexagon-02.svg │ │ ├── octagon.svg │ │ ├── pentagon.svg │ │ ├── square.svg │ │ ├── star-01.svg │ │ ├── star-02.svg │ │ ├── star-03.svg │ │ ├── star-04.svg │ │ ├── star-05.svg │ │ ├── star-06.svg │ │ ├── star-07.svg │ │ └── triangle.svg │ ├── Time │ │ ├── alarm-clock-check.svg │ │ ├── alarm-clock-minus.svg │ │ ├── alarm-clock-off.svg │ │ ├── alarm-clock-plus.svg │ │ ├── alarm-clock.svg │ │ ├── calendar-check-01.svg │ │ ├── calendar-check-02.svg │ │ ├── calendar-date.svg │ │ ├── calendar-heart-01.svg │ │ ├── calendar-heart-02.svg │ │ ├── calendar-minus-01.svg │ │ ├── calendar-minus-02.svg │ │ ├── calendar-plus-01.svg │ │ ├── calendar-plus-02.svg │ │ ├── calendar.svg │ │ ├── clock-check.svg │ │ ├── clock-fast-forward.svg │ │ ├── clock-plus.svg │ │ ├── clock-refresh.svg │ │ ├── clock-rewind.svg │ │ ├── clock-snooze.svg │ │ ├── clock-stopwatch.svg │ │ ├── clock.svg │ │ ├── hourglass-01.svg │ │ ├── hourglass-02.svg │ │ ├── hourglass-03.svg │ │ ├── watch-circle.svg │ │ └── watch-square.svg │ ├── Users │ │ ├── face-content.svg │ │ ├── face-frown.svg │ │ ├── face-happy.svg │ │ ├── face-neutral.svg │ │ ├── face-sad.svg │ │ ├── face-smile.svg │ │ ├── face-wink.svg │ │ ├── user-01.svg │ │ ├── user-02.svg │ │ ├── user-03.svg │ │ ├── user-check-01.svg │ │ ├── user-check-02.svg │ │ ├── user-circle.svg │ │ ├── user-down-01.svg │ │ ├── user-down-02.svg │ │ ├── user-edit.svg │ │ ├── user-left-01.svg │ │ ├── user-left-02.svg │ │ ├── user-minus-01.svg │ │ ├── user-minus-02.svg │ │ ├── user-plus-01.svg │ │ ├── user-plus-02.svg │ │ ├── user-right-01.svg │ │ ├── user-right-02.svg │ │ ├── user-square.svg │ │ ├── user-up-01.svg │ │ ├── user-up-02.svg │ │ ├── user-x-01.svg │ │ ├── user-x-02.svg │ │ ├── users-01.svg │ │ ├── users-02.svg │ │ ├── users-03.svg │ │ ├── users-check.svg │ │ ├── users-down.svg │ │ ├── users-edit.svg │ │ ├── users-left.svg │ │ ├── users-minus.svg │ │ ├── users-plus.svg │ │ ├── users-right.svg │ │ ├── users-up.svg │ │ └── users-x.svg │ └── Weather │ │ ├── cloud-01.svg │ │ ├── cloud-02.svg │ │ ├── cloud-03.svg │ │ ├── cloud-lightning.svg │ │ ├── cloud-moon.svg │ │ ├── cloud-off.svg │ │ ├── cloud-raining-01.svg │ │ ├── cloud-raining-02.svg │ │ ├── cloud-raining-03.svg │ │ ├── cloud-raining-04.svg │ │ ├── cloud-raining-05.svg │ │ ├── cloud-raining-06.svg │ │ ├── cloud-snowing-01.svg │ │ ├── cloud-snowing-02.svg │ │ ├── cloud-sun-01.svg │ │ ├── cloud-sun-02.svg │ │ ├── cloud-sun-03.svg │ │ ├── droplets-01.svg │ │ ├── droplets-02.svg │ │ ├── droplets-03.svg │ │ ├── hurricane-01.svg │ │ ├── hurricane-02.svg │ │ ├── hurricane-03.svg │ │ ├── lightning-01.svg │ │ ├── lightning-02.svg │ │ ├── moon-01.svg │ │ ├── moon-02.svg │ │ ├── moon-eclipse.svg │ │ ├── moon-star.svg │ │ ├── snowflake-01.svg │ │ ├── snowflake-02.svg │ │ ├── stars-01.svg │ │ ├── stars-02.svg │ │ ├── stars-03.svg │ │ ├── sun-setting-01.svg │ │ ├── sun-setting-02.svg │ │ ├── sun-setting-03.svg │ │ ├── sun.svg │ │ ├── sunrise.svg │ │ ├── sunset.svg │ │ ├── thermometer-01.svg │ │ ├── thermometer-02.svg │ │ ├── thermometer-03.svg │ │ ├── thermometer-cold.svg │ │ ├── thermometer-warm.svg │ │ ├── umbrella-01.svg │ │ ├── umbrella-02.svg │ │ ├── umbrella-03.svg │ │ ├── waves.svg │ │ ├── wind-01.svg │ │ ├── wind-02.svg │ │ └── wind-03.svg ├── Duotone icons │ ├── Alerts & feedback │ │ ├── alert-circle.svg │ │ ├── alert-hexagon.svg │ │ ├── alert-octagon.svg │ │ ├── alert-square.svg │ │ ├── alert-triangle.svg │ │ ├── announcement-01.svg │ │ ├── announcement-02.svg │ │ ├── announcement-03.svg │ │ ├── bell-01.svg │ │ ├── bell-02.svg │ │ ├── bell-03.svg │ │ ├── bell-04.svg │ │ ├── bell-minus.svg │ │ ├── bell-off-01.svg │ │ ├── bell-off-02.svg │ │ ├── bell-off-03.svg │ │ ├── bell-plus.svg │ │ ├── bell-ringing-01.svg │ │ ├── bell-ringing-02.svg │ │ ├── bell-ringing-03.svg │ │ ├── bell-ringing-04.svg │ │ ├── message-notification-square.svg │ │ ├── notification-box.svg │ │ ├── notification-text.svg │ │ ├── thumbs-down.svg │ │ └── thumbs-up.svg │ ├── Arrows │ │ ├── arrow-block-down.svg │ │ ├── arrow-block-left.svg │ │ ├── arrow-block-right.svg │ │ ├── arrow-block-up.svg │ │ ├── arrow-circle-broken-down-left.svg │ │ ├── arrow-circle-broken-down-right.svg │ │ ├── arrow-circle-broken-down.svg │ │ ├── arrow-circle-broken-left.svg │ │ ├── arrow-circle-broken-right.svg │ │ ├── arrow-circle-broken-up-left.svg │ │ ├── arrow-circle-broken-up-right.svg │ │ ├── arrow-circle-broken-up.svg │ │ ├── arrow-circle-down-left.svg │ │ ├── arrow-circle-down-right.svg │ │ ├── arrow-circle-down.svg │ │ ├── arrow-circle-left.svg │ │ ├── arrow-circle-right.svg │ │ ├── arrow-circle-up-left.svg │ │ ├── arrow-circle-up-right.svg │ │ ├── arrow-circle-up.svg │ │ ├── arrow-down-left.svg │ │ ├── arrow-down-right.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-narrow-down-left.svg │ │ ├── arrow-narrow-down-right.svg │ │ ├── arrow-narrow-down.svg │ │ ├── arrow-narrow-left.svg │ │ ├── arrow-narrow-right.svg │ │ ├── arrow-narrow-up-left.svg │ │ ├── arrow-narrow-up-right.svg │ │ ├── arrow-narrow-up.svg │ │ ├── arrow-right.svg │ │ ├── arrow-square-down-left.svg │ │ ├── arrow-square-down-right.svg │ │ ├── arrow-square-down.svg │ │ ├── arrow-square-left.svg │ │ ├── arrow-square-right.svg │ │ ├── arrow-square-up-left.svg │ │ ├── arrow-square-up-right.svg │ │ ├── arrow-square-up.svg │ │ ├── arrow-up-left.svg │ │ ├── arrow-up-right.svg │ │ ├── arrow-up.svg │ │ ├── arrows-down.svg │ │ ├── arrows-left.svg │ │ ├── arrows-right.svg │ │ ├── arrows-triangle.svg │ │ ├── arrows-up.svg │ │ ├── chevron-down-double.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left-double.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right-double.svg │ │ ├── chevron-right.svg │ │ ├── chevron-selector-horizontal.svg │ │ ├── chevron-selector-vertical.svg │ │ ├── chevron-up-double.svg │ │ ├── chevron-up.svg │ │ ├── corner-down-left.svg │ │ ├── corner-down-right.svg │ │ ├── corner-left-down.svg │ │ ├── corner-left-up.svg │ │ ├── corner-right-down.svg │ │ ├── corner-right-up.svg │ │ ├── corner-up-left.svg │ │ ├── corner-up-right.svg │ │ ├── expand-01.svg │ │ ├── expand-02.svg │ │ ├── expand-03.svg │ │ ├── expand-04.svg │ │ ├── expand-05.svg │ │ ├── expand-06.svg │ │ ├── flip-backward.svg │ │ ├── flip-forward.svg │ │ ├── infinity.svg │ │ ├── refresh-ccw-01.svg │ │ ├── refresh-ccw-02.svg │ │ ├── refresh-ccw-03.svg │ │ ├── refresh-ccw-04.svg │ │ ├── refresh-ccw-05.svg │ │ ├── refresh-cw-01.svg │ │ ├── refresh-cw-02.svg │ │ ├── refresh-cw-03.svg │ │ ├── refresh-cw-04.svg │ │ ├── refresh-cw-05.svg │ │ ├── reverse-left.svg │ │ ├── reverse-right.svg │ │ ├── switch-horizontal-01.svg │ │ ├── switch-horizontal-02.svg │ │ ├── switch-vertical-01.svg │ │ └── switch-vertical-02.svg │ ├── Charts │ │ ├── bar-chart-01.svg │ │ ├── bar-chart-02.svg │ │ ├── bar-chart-03.svg │ │ ├── bar-chart-04.svg │ │ ├── bar-chart-05.svg │ │ ├── bar-chart-06.svg │ │ ├── bar-chart-07.svg │ │ ├── bar-chart-08.svg │ │ ├── bar-chart-09.svg │ │ ├── bar-chart-10.svg │ │ ├── bar-chart-11.svg │ │ ├── bar-chart-12.svg │ │ ├── bar-chart-circle-01.svg │ │ ├── bar-chart-circle-02.svg │ │ ├── bar-chart-circle-03.svg │ │ ├── bar-chart-square-01.svg │ │ ├── bar-chart-square-02.svg │ │ ├── bar-chart-square-03.svg │ │ ├── bar-chart-square-down.svg │ │ ├── bar-chart-square-minus.svg │ │ ├── bar-chart-square-plus.svg │ │ ├── bar-chart-square-up.svg │ │ ├── bar-line-chart.svg │ │ ├── chart-breakout-circle.svg │ │ ├── chart-breakout-square.svg │ │ ├── horizontal-bar-chart-01.svg │ │ ├── horizontal-bar-chart-02.svg │ │ ├── horizontal-bar-chart-03.svg │ │ ├── line-chart-down-01.svg │ │ ├── line-chart-down-02.svg │ │ ├── line-chart-down-03.svg │ │ ├── line-chart-down-04.svg │ │ ├── line-chart-down-05.svg │ │ ├── line-chart-up-01.svg │ │ ├── line-chart-up-02.svg │ │ ├── line-chart-up-03.svg │ │ ├── line-chart-up-04.svg │ │ ├── line-chart-up-05.svg │ │ ├── pie-chart-01.svg │ │ ├── pie-chart-02.svg │ │ ├── pie-chart-03.svg │ │ ├── pie-chart-04.svg │ │ ├── presentation-chart-01.svg │ │ ├── presentation-chart-02.svg │ │ ├── presentation-chart-03.svg │ │ ├── trend-down-01.svg │ │ ├── trend-down-02.svg │ │ ├── trend-up-01.svg │ │ └── trend-up-02.svg │ ├── Communication │ │ ├── annotation-alert.svg │ │ ├── annotation-check.svg │ │ ├── annotation-dots.svg │ │ ├── annotation-heart.svg │ │ ├── annotation-info.svg │ │ ├── annotation-plus.svg │ │ ├── annotation-question.svg │ │ ├── annotation-x.svg │ │ ├── annotation.svg │ │ ├── inbox-01.svg │ │ ├── inbox-02.svg │ │ ├── mail-01.svg │ │ ├── mail-02.svg │ │ ├── mail-03.svg │ │ ├── mail-04.svg │ │ ├── mail-05.svg │ │ ├── message-alert-circle.svg │ │ ├── message-alert-square.svg │ │ ├── message-chat-circle.svg │ │ ├── message-chat-square.svg │ │ ├── message-check-circle.svg │ │ ├── message-check-square.svg │ │ ├── message-circle-01.svg │ │ ├── message-circle-02.svg │ │ ├── message-dots-circle.svg │ │ ├── message-dots-square.svg │ │ ├── message-heart-circle.svg │ │ ├── message-heart-square.svg │ │ ├── message-notification-circle.svg │ │ ├── message-notification-square.svg │ │ ├── message-plus-circle.svg │ │ ├── message-plus-square.svg │ │ ├── message-question-circle.svg │ │ ├── message-question-square.svg │ │ ├── message-smile-circle.svg │ │ ├── message-smile-square.svg │ │ ├── message-square-01.svg │ │ ├── message-square-02.svg │ │ ├── message-text-circle-01.svg │ │ ├── message-text-circle-02.svg │ │ ├── message-text-square-01.svg │ │ ├── message-text-square-02.svg │ │ ├── message-x-circle.svg │ │ ├── message-x-square.svg │ │ ├── phone-call-01.svg │ │ ├── phone-call-02.svg │ │ ├── phone-hang-up.svg │ │ ├── phone-incoming-01.svg │ │ ├── phone-incoming-02.svg │ │ ├── phone-outgoing-01.svg │ │ ├── phone-outgoing-02.svg │ │ ├── phone-pause.svg │ │ ├── phone-plus.svg │ │ ├── phone-x.svg │ │ ├── phone.svg │ │ ├── send-01.svg │ │ ├── send-02.svg │ │ └── send-03.svg │ ├── Development │ │ ├── brackets-check.svg │ │ ├── brackets-ellipses.svg │ │ ├── brackets-minus.svg │ │ ├── brackets-plus.svg │ │ ├── brackets-slash.svg │ │ ├── brackets-x.svg │ │ ├── brackets.svg │ │ ├── browser.svg │ │ ├── code-01.svg │ │ ├── code-02.svg │ │ ├── code-browser.svg │ │ ├── code-circle-01.svg │ │ ├── code-circle-02.svg │ │ ├── code-circle-03.svg │ │ ├── code-square-01.svg │ │ ├── code-square-02.svg │ │ ├── codepen.svg │ │ ├── container.svg │ │ ├── cpu-chip-01.svg │ │ ├── cpu-chip-02.svg │ │ ├── data.svg │ │ ├── database-01.svg │ │ ├── database-02.svg │ │ ├── database-03.svg │ │ ├── dataflow-01.svg │ │ ├── dataflow-02.svg │ │ ├── dataflow-03.svg │ │ ├── dataflow-04.svg │ │ ├── file-code-01.svg │ │ ├── file-code-02.svg │ │ ├── folder-code.svg │ │ ├── git-branch-01.svg │ │ ├── git-branch-02.svg │ │ ├── git-commit.svg │ │ ├── git-merge.svg │ │ ├── git-pull-request.svg │ │ ├── package-check.svg │ │ ├── package-minus.svg │ │ ├── package-plus.svg │ │ ├── package-search.svg │ │ ├── package-x.svg │ │ ├── package.svg │ │ ├── puzzle-piece-01.svg │ │ ├── puzzle-piece-02.svg │ │ ├── qr-code-01.svg │ │ ├── qr-code-02.svg │ │ ├── server-01.svg │ │ ├── server-02.svg │ │ ├── server-03.svg │ │ ├── server-04.svg │ │ ├── server-05.svg │ │ ├── server-06.svg │ │ ├── terminal-browser.svg │ │ ├── terminal-circle.svg │ │ ├── terminal-square.svg │ │ ├── terminal.svg │ │ └── variable.svg │ ├── Editor │ │ ├── align-center.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── attachment-01.svg │ │ ├── attachment-02.svg │ │ ├── bezier-curve-01.svg │ │ ├── bezier-curve-02.svg │ │ ├── bezier-curve-03.svg │ │ ├── bold-01.svg │ │ ├── bold-02.svg │ │ ├── bold-square.svg │ │ ├── brush-01.svg │ │ ├── brush-02.svg │ │ ├── brush-03.svg │ │ ├── circle-cut.svg │ │ ├── code-snippet-01.svg │ │ ├── code-snippet-02.svg │ │ ├── colors.svg │ │ ├── command.svg │ │ ├── contrast-01.svg │ │ ├── contrast-02.svg │ │ ├── contrast-03.svg │ │ ├── crop-01.svg │ │ ├── crop-02.svg │ │ ├── cursor-01.svg │ │ ├── cursor-02.svg │ │ ├── cursor-03.svg │ │ ├── cursor-04.svg │ │ ├── cursor-box.svg │ │ ├── cursor-click-01.svg │ │ ├── cursor-click-02.svg │ │ ├── delete.svg │ │ ├── dotpoints-01.svg │ │ ├── dotpoints-02.svg │ │ ├── drop.svg │ │ ├── dropper.svg │ │ ├── eraser.svg │ │ ├── feather.svg │ │ ├── figma.svg │ │ ├── framer.svg │ │ ├── hand.svg │ │ ├── heading-01.svg │ │ ├── heading-02.svg │ │ ├── heading-square.svg │ │ ├── image-indent-left.svg │ │ ├── image-indent-right.svg │ │ ├── italic-01.svg │ │ ├── italic-02.svg │ │ ├── italic-square.svg │ │ ├── left-indent-01.svg │ │ ├── left-indent-02.svg │ │ ├── letter-spacing-01.svg │ │ ├── letter-spacing-02.svg │ │ ├── line-height.svg │ │ ├── magic-wand-01.svg │ │ ├── magic-wand-02.svg │ │ ├── move.svg │ │ ├── paint-pour.svg │ │ ├── paint.svg │ │ ├── palette.svg │ │ ├── paragraph-spacing.svg │ │ ├── paragraph-wrap.svg │ │ ├── pen-tool-01.svg │ │ ├── pen-tool-02.svg │ │ ├── pen-tool-minus.svg │ │ ├── pen-tool-plus.svg │ │ ├── pencil-01.svg │ │ ├── pencil-02.svg │ │ ├── pencil-line.svg │ │ ├── perspective-01.svg │ │ ├── perspective-02.svg │ │ ├── pilcrow-01.svg │ │ ├── pilcrow-02.svg │ │ ├── pilcrow-square.svg │ │ ├── reflect-01.svg │ │ ├── reflect-02.svg │ │ ├── right-indent-01.svg │ │ ├── right-indent-02.svg │ │ ├── roller-brush.svg │ │ ├── scale-01.svg │ │ ├── scale-02.svg │ │ ├── scale-03.svg │ │ ├── scissors-01.svg │ │ ├── scissors-02.svg │ │ ├── scissors-cut-01.svg │ │ ├── scissors-cut-02.svg │ │ ├── skew.svg │ │ ├── strikethrough-01.svg │ │ ├── strikethrough-02.svg │ │ ├── strikethrough-square.svg │ │ ├── subscript.svg │ │ ├── text-input.svg │ │ ├── transform.svg │ │ ├── type-01.svg │ │ ├── type-02.svg │ │ ├── type-square.svg │ │ ├── type-strikethrough-01.svg │ │ ├── type-strikethrough-02.svg │ │ ├── underline-01.svg │ │ ├── underline-02.svg │ │ ├── underline-square.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg │ ├── Education │ │ ├── atom-01.svg │ │ ├── atom-02.svg │ │ ├── award-01.svg │ │ ├── award-02.svg │ │ ├── award-03.svg │ │ ├── award-04.svg │ │ ├── award-05.svg │ │ ├── backpack.svg │ │ ├── beaker-01.svg │ │ ├── beaker-02.svg │ │ ├── book-closed.svg │ │ ├── book-open-01.svg │ │ ├── book-open-02.svg │ │ ├── briefcase-01.svg │ │ ├── briefcase-02.svg │ │ ├── calculator.svg │ │ ├── certificate-01.svg │ │ ├── certificate-02.svg │ │ ├── compass.svg │ │ ├── glasses-01.svg │ │ ├── glasses-02.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── graduation-hat-01.svg │ │ ├── graduation-hat-02.svg │ │ ├── microscope.svg │ │ ├── ruler.svg │ │ ├── stand.svg │ │ ├── telescope.svg │ │ ├── trophy-01.svg │ │ └── trophy-02.svg │ ├── Files │ │ ├── box.svg │ │ ├── clipboard-attachment.svg │ │ ├── clipboard-check.svg │ │ ├── clipboard-download.svg │ │ ├── clipboard-minus.svg │ │ ├── clipboard-plus.svg │ │ ├── clipboard-x.svg │ │ ├── clipboard.svg │ │ ├── file-01.svg │ │ ├── file-02.svg │ │ ├── file-03.svg │ │ ├── file-04.svg │ │ ├── file-05.svg │ │ ├── file-06.svg │ │ ├── file-07.svg │ │ ├── file-attachment-01.svg │ │ ├── file-attachment-02.svg │ │ ├── file-attachment-03.svg │ │ ├── file-attachment-04.svg │ │ ├── file-attachment-05.svg │ │ ├── file-check-01.svg │ │ ├── file-check-02.svg │ │ ├── file-check-03.svg │ │ ├── file-download-01.svg │ │ ├── file-download-02.svg │ │ ├── file-download-03.svg │ │ ├── file-heart-01.svg │ │ ├── file-heart-02.svg │ │ ├── file-heart-03.svg │ │ ├── file-minus-01.svg │ │ ├── file-minus-02.svg │ │ ├── file-minus-03.svg │ │ ├── file-plus-01.svg │ │ ├── file-plus-02.svg │ │ ├── file-plus-03.svg │ │ ├── file-question-01.svg │ │ ├── file-question-02.svg │ │ ├── file-question-03.svg │ │ ├── file-search-01.svg │ │ ├── file-search-02.svg │ │ ├── file-search-03.svg │ │ ├── file-x-01.svg │ │ ├── file-x-02.svg │ │ ├── file-x-03.svg │ │ ├── folder-check.svg │ │ ├── folder-closed.svg │ │ ├── folder-download.svg │ │ ├── folder-lock.svg │ │ ├── folder-minus.svg │ │ ├── folder-plus.svg │ │ ├── folder-question.svg │ │ ├── folder-search.svg │ │ ├── folder-x.svg │ │ ├── folder.svg │ │ ├── paperclip.svg │ │ ├── sticker-circle.svg │ │ └── sticker-square.svg │ ├── Finance & eCommerce │ │ ├── bank-note-01.svg │ │ ├── bank-note-02.svg │ │ ├── bank-note-03.svg │ │ ├── bank.svg │ │ ├── coins-01.svg │ │ ├── coins-02.svg │ │ ├── coins-03.svg │ │ ├── coins-04.svg │ │ ├── coins-hand.svg │ │ ├── coins-stacked-01.svg │ │ ├── coins-stacked-02.svg │ │ ├── coins-stacked-03.svg │ │ ├── coins-stacked-04.svg │ │ ├── coins-swap-01.svg │ │ ├── coins-swap-02.svg │ │ ├── credit-card-01.svg │ │ ├── credit-card-02.svg │ │ ├── credit-card-check.svg │ │ ├── credit-card-down.svg │ │ ├── credit-card-download.svg │ │ ├── credit-card-edit.svg │ │ ├── credit-card-lock.svg │ │ ├── credit-card-minus.svg │ │ ├── credit-card-plus.svg │ │ ├── credit-card-refresh.svg │ │ ├── credit-card-search.svg │ │ ├── credit-card-shield.svg │ │ ├── credit-card-up.svg │ │ ├── credit-card-upload.svg │ │ ├── credit-card-x.svg │ │ ├── cryptocurrency-01.svg │ │ ├── cryptocurrency-02.svg │ │ ├── cryptocurrency-03.svg │ │ ├── cryptocurrency-04.svg │ │ ├── currency-bitcoin-circle.svg │ │ ├── currency-bitcoin.svg │ │ ├── currency-dollar-circle.svg │ │ ├── currency-dollar.svg │ │ ├── currency-ethereum-circle.svg │ │ ├── currency-ethereum.svg │ │ ├── currency-euro-circle.svg │ │ ├── currency-euro.svg │ │ ├── currency-pound-circle.svg │ │ ├── currency-pound.svg │ │ ├── currency-ruble-circle.svg │ │ ├── currency-ruble.svg │ │ ├── currency-rupee-circle.svg │ │ ├── currency-rupee.svg │ │ ├── currency-yen-circle.svg │ │ ├── currency-yen.svg │ │ ├── diamond-01.svg │ │ ├── diamond-02.svg │ │ ├── gift-01.svg │ │ ├── gift-02.svg │ │ ├── piggy-bank-01.svg │ │ ├── piggy-bank-02.svg │ │ ├── receipt-check.svg │ │ ├── receipt.svg │ │ ├── safe.svg │ │ ├── sale-01.svg │ │ ├── sale-02.svg │ │ ├── sale-03.svg │ │ ├── sale-04.svg │ │ ├── scales-01.svg │ │ ├── scales-02.svg │ │ ├── shopping-bag-01.svg │ │ ├── shopping-bag-02.svg │ │ ├── shopping-bag-03.svg │ │ ├── shopping-cart-01.svg │ │ ├── shopping-cart-02.svg │ │ ├── shopping-cart-03.svg │ │ ├── tag-01.svg │ │ ├── tag-02.svg │ │ ├── tag-03.svg │ │ ├── wallet-01.svg │ │ ├── wallet-02.svg │ │ ├── wallet-03.svg │ │ ├── wallet-04.svg │ │ └── wallet-05.svg │ ├── General │ │ ├── activity-heart.svg │ │ ├── activity.svg │ │ ├── anchor.svg │ │ ├── archive.svg │ │ ├── asterisk-01.svg │ │ ├── asterisk-02.svg │ │ ├── at-sign.svg │ │ ├── bookmark-add.svg │ │ ├── bookmark-check.svg │ │ ├── bookmark-minus.svg │ │ ├── bookmark-x.svg │ │ ├── bookmark.svg │ │ ├── building-01.svg │ │ ├── building-02.svg │ │ ├── building-03.svg │ │ ├── building-04.svg │ │ ├── building-05.svg │ │ ├── building-06.svg │ │ ├── building-07.svg │ │ ├── building-08.svg │ │ ├── check-circle-broken.svg │ │ ├── check-circle.svg │ │ ├── check-done-01.svg │ │ ├── check-done-02.svg │ │ ├── check-heart.svg │ │ ├── check-square-broken.svg │ │ ├── check-square.svg │ │ ├── check-verified-01.svg │ │ ├── check-verified-02.svg │ │ ├── check-verified-03.svg │ │ ├── check.svg │ │ ├── cloud-blank-01.svg │ │ ├── cloud-blank-02.svg │ │ ├── copy-01.svg │ │ ├── copy-02.svg │ │ ├── copy-03.svg │ │ ├── copy-04.svg │ │ ├── copy-05.svg │ │ ├── copy-06.svg │ │ ├── copy-07.svg │ │ ├── divide-01.svg │ │ ├── divide-02.svg │ │ ├── divide-03.svg │ │ ├── dots-grid.svg │ │ ├── dots-horizontal.svg │ │ ├── dots-vertical.svg │ │ ├── download-01.svg │ │ ├── download-02.svg │ │ ├── download-03.svg │ │ ├── download-04.svg │ │ ├── download-cloud-01.svg │ │ ├── download-cloud-02.svg │ │ ├── edit-01.svg │ │ ├── edit-02.svg │ │ ├── edit-03.svg │ │ ├── edit-04.svg │ │ ├── edit-05.svg │ │ ├── equal-not.svg │ │ ├── equal.svg │ │ ├── eye-off.svg │ │ ├── eye.svg │ │ ├── filter-funnel-01.svg │ │ ├── filter-funnel-02.svg │ │ ├── filter-lines.svg │ │ ├── google-chrome.svg │ │ ├── hash-01.svg │ │ ├── hash-02.svg │ │ ├── heart-circle.svg │ │ ├── heart-hand.svg │ │ ├── heart-hexagon.svg │ │ ├── heart-octagon.svg │ │ ├── heart-rounded.svg │ │ ├── heart-square.svg │ │ ├── heart.svg │ │ ├── hearts.svg │ │ ├── help-circle.svg │ │ ├── help-hexagon.svg │ │ ├── help-octagon.svg │ │ ├── help-square.svg │ │ ├── home-01.svg │ │ ├── home-02.svg │ │ ├── home-03.svg │ │ ├── home-04.svg │ │ ├── home-05.svg │ │ ├── home-line.svg │ │ ├── home-smile.svg │ │ ├── info-circle.svg │ │ ├── info-hexagon.svg │ │ ├── info-octagon.svg │ │ ├── info-square.svg │ │ ├── life-buoy-01.svg │ │ ├── life-buoy-02.svg │ │ ├── link-01.svg │ │ ├── link-02.svg │ │ ├── link-03.svg │ │ ├── link-04.svg │ │ ├── link-05.svg │ │ ├── link-broken-01.svg │ │ ├── link-broken-02.svg │ │ ├── link-external-01.svg │ │ ├── link-external-02.svg │ │ ├── loading-01.svg │ │ ├── loading-02.svg │ │ ├── loading-03.svg │ │ ├── log-in-01.svg │ │ ├── log-in-02.svg │ │ ├── log-in-03.svg │ │ ├── log-in-04.svg │ │ ├── log-out-01.svg │ │ ├── log-out-02.svg │ │ ├── log-out-03.svg │ │ ├── log-out-04.svg │ │ ├── medical-circle.svg │ │ ├── medical-cross.svg │ │ ├── medical-square.svg │ │ ├── menu-01.svg │ │ ├── menu-02.svg │ │ ├── menu-03.svg │ │ ├── menu-04.svg │ │ ├── menu-05.svg │ │ ├── minus-circle.svg │ │ ├── minus-square.svg │ │ ├── minus.svg │ │ ├── percent-01.svg │ │ ├── percent-02.svg │ │ ├── percent-03.svg │ │ ├── pin-01.svg │ │ ├── pin-02.svg │ │ ├── placeholder.svg │ │ ├── plus-circle.svg │ │ ├── plus-square.svg │ │ ├── plus.svg │ │ ├── save-01.svg │ │ ├── save-02.svg │ │ ├── save-03.svg │ │ ├── search-lg.svg │ │ ├── search-md.svg │ │ ├── search-refraction.svg │ │ ├── search-sm.svg │ │ ├── settings-01.svg │ │ ├── settings-02.svg │ │ ├── settings-03.svg │ │ ├── settings-04.svg │ │ ├── share-01.svg │ │ ├── share-02.svg │ │ ├── share-03.svg │ │ ├── share-04.svg │ │ ├── share-05.svg │ │ ├── share-06.svg │ │ ├── share-07.svg │ │ ├── slash-circle-01.svg │ │ ├── slash-circle-02.svg │ │ ├── slash-divider.svg │ │ ├── slash-octagon.svg │ │ ├── speedometer-01.svg │ │ ├── speedometer-02.svg │ │ ├── speedometer-03.svg │ │ ├── speedometer-04.svg │ │ ├── target-01.svg │ │ ├── target-02.svg │ │ ├── target-03.svg │ │ ├── target-04.svg │ │ ├── target-05.svg │ │ ├── toggle-01-left.svg │ │ ├── toggle-01-right.svg │ │ ├── toggle-02-left.svg │ │ ├── toggle-02-right.svg │ │ ├── toggle-03-left.svg │ │ ├── toggle-03-right.svg │ │ ├── tool-01.svg │ │ ├── tool-02.svg │ │ ├── translate-01.svg │ │ ├── translate-02.svg │ │ ├── trash-01.svg │ │ ├── trash-02.svg │ │ ├── trash-03.svg │ │ ├── trash-04.svg │ │ ├── upload-01.svg │ │ ├── upload-02.svg │ │ ├── upload-03.svg │ │ ├── upload-04.svg │ │ ├── upload-cloud-01.svg │ │ ├── upload-cloud-02.svg │ │ ├── virus.svg │ │ ├── x-circle.svg │ │ ├── x-close.svg │ │ ├── x-square.svg │ │ ├── x.svg │ │ ├── zap-circle.svg │ │ ├── zap-fast.svg │ │ ├── zap-off.svg │ │ ├── zap-square.svg │ │ └── zap.svg │ ├── Images │ │ ├── camera-01.svg │ │ ├── camera-02.svg │ │ ├── camera-03.svg │ │ ├── camera-lens.svg │ │ ├── camera-off.svg │ │ ├── camera-plus.svg │ │ ├── colors.svg │ │ ├── flash-off.svg │ │ ├── flash.svg │ │ ├── image-01.svg │ │ ├── image-02.svg │ │ ├── image-03.svg │ │ ├── image-04.svg │ │ ├── image-05.svg │ │ ├── image-check.svg │ │ ├── image-down.svg │ │ ├── image-left.svg │ │ ├── image-plus.svg │ │ ├── image-right.svg │ │ ├── image-up.svg │ │ ├── image-user-check.svg │ │ ├── image-user-down.svg │ │ ├── image-user-left.svg │ │ ├── image-user-plus.svg │ │ ├── image-user-right.svg │ │ ├── image-user-up.svg │ │ ├── image-user-x.svg │ │ ├── image-user.svg │ │ └── image-x.svg │ ├── Layout │ │ ├── align-bottom-01.svg │ │ ├── align-bottom-02.svg │ │ ├── align-horizontal-centre-01.svg │ │ ├── align-horizontal-centre-02.svg │ │ ├── align-left-01.svg │ │ ├── align-left-02.svg │ │ ├── align-right-01.svg │ │ ├── align-right-02.svg │ │ ├── align-top-arrow-01.svg │ │ ├── align-top-arrow-02.svg │ │ ├── align-vertical-center-01.svg │ │ ├── align-vertical-center-02.svg │ │ ├── columns-02.svg │ │ ├── columns-03.svg │ │ ├── distribute-spacing-horizontal.svg │ │ ├── distribute-spacing-vertical.svg │ │ ├── divider.svg │ │ ├── flex-align-bottom.svg │ │ ├── flex-align-left.svg │ │ ├── flex-align-right.svg │ │ ├── flex-align-top.svg │ │ ├── grid-01.svg │ │ ├── grid-02.svg │ │ ├── grid-03.svg │ │ ├── grid-dots-blank.svg │ │ ├── grid-dots-bottom.svg │ │ ├── grid-dots-horizontal-center.svg │ │ ├── grid-dots-left.svg │ │ ├── grid-dots-outer.svg │ │ ├── grid-dots-right.svg │ │ ├── grid-dots-top.svg │ │ ├── grid-dots-vertical-center.svg │ │ ├── grid.svg │ │ ├── intersect-circle.svg │ │ ├── intersect-square.svg │ │ ├── layer-single.svg │ │ ├── layers-three-01.svg │ │ ├── layers-three-02.svg │ │ ├── layers-two-01.svg │ │ ├── layers-two-02.svg │ │ ├── layout-alt-01.svg │ │ ├── layout-alt-02.svg │ │ ├── layout-alt-03.svg │ │ ├── layout-alt-04.svg │ │ ├── layout-bottom.svg │ │ ├── layout-grid-01.svg │ │ ├── layout-grid-02.svg │ │ ├── layout-left.svg │ │ ├── layout-right.svg │ │ ├── layout-top.svg │ │ ├── list.svg │ │ ├── maximize-01.svg │ │ ├── maximize-02.svg │ │ ├── minimize-01.svg │ │ ├── minimize-02.svg │ │ ├── rows-01.svg │ │ ├── rows-02.svg │ │ ├── rows-03.svg │ │ ├── spacing-height-01.svg │ │ ├── spacing-height-02.svg │ │ ├── spacing-width-01.svg │ │ ├── spacing-width-02.svg │ │ └── table.svg │ ├── Maps & travel │ │ ├── bus.svg │ │ ├── compass-01.svg │ │ ├── compass-02.svg │ │ ├── compass-03.svg │ │ ├── flag-01.svg │ │ ├── flag-02.svg │ │ ├── flag-03.svg │ │ ├── flag-04.svg │ │ ├── flag-05.svg │ │ ├── flag-06.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── globe-03.svg │ │ ├── globe-04.svg │ │ ├── globe-05.svg │ │ ├── globe-06.svg │ │ ├── luggage-01.svg │ │ ├── luggage-02.svg │ │ ├── luggage-03.svg │ │ ├── map-01.svg │ │ ├── map-02.svg │ │ ├── mark.svg │ │ ├── marker-pin-01.svg │ │ ├── marker-pin-02.svg │ │ ├── marker-pin-03.svg │ │ ├── marker-pin-04.svg │ │ ├── marker-pin-05.svg │ │ ├── marker-pin-06.svg │ │ ├── navigation-pointer-01.svg │ │ ├── navigation-pointer-02.svg │ │ ├── navigation-pointer-off-01.svg │ │ ├── navigation-pointer-off-02.svg │ │ ├── passport.svg │ │ ├── plane.svg │ │ ├── rocket-01.svg │ │ ├── rocket-02.svg │ │ ├── route.svg │ │ ├── ticket-01.svg │ │ ├── ticket-02.svg │ │ ├── train.svg │ │ ├── tram.svg │ │ ├── truck-01.svg │ │ └── truck-02.svg │ ├── Media & devices │ │ ├── airplay.svg │ │ ├── airpods.svg │ │ ├── battery-charging-01.svg │ │ ├── battery-charging-02.svg │ │ ├── battery-empty.svg │ │ ├── battery-full.svg │ │ ├── battery-low.svg │ │ ├── battery-mid.svg │ │ ├── bluetooth-connect.svg │ │ ├── bluetooth-on.svg │ │ ├── bluetooth-signal.svg │ │ ├── bluetooth.svg │ │ ├── chrome-cast.svg │ │ ├── clapperboard.svg │ │ ├── disc-01.svg │ │ ├── disc-02.svg │ │ ├── fast-backward.svg │ │ ├── fast-forward.svg │ │ ├── film-01.svg │ │ ├── film-02.svg │ │ ├── film-03.svg │ │ ├── gaming-pad-01.svg │ │ ├── gaming-pad-02.svg │ │ ├── hard-drive.svg │ │ ├── headphones-01.svg │ │ ├── headphones-02.svg │ │ ├── keyboard-01.svg │ │ ├── keyboard-02.svg │ │ ├── laptop-01.svg │ │ ├── laptop-02.svg │ │ ├── lightbulb-01.svg │ │ ├── lightbulb-02.svg │ │ ├── lightbulb-03.svg │ │ ├── lightbulb-04.svg │ │ ├── lightbulb-05.svg │ │ ├── microphone-01.svg │ │ ├── microphone-02.svg │ │ ├── microphone-off-01.svg │ │ ├── microphone-off-02.svg │ │ ├── modem-01.svg │ │ ├── modem-02.svg │ │ ├── monitor-01.svg │ │ ├── monitor-02.svg │ │ ├── monitor-03.svg │ │ ├── monitor-04.svg │ │ ├── monitor-05.svg │ │ ├── mouse.svg │ │ ├── music-note-01.svg │ │ ├── music-note-02.svg │ │ ├── music.svg │ │ ├── pause-circle.svg │ │ ├── pause-square.svg │ │ ├── phone-01.svg │ │ ├── phone-02.svg │ │ ├── play-circle.svg │ │ ├── play-square.svg │ │ ├── play.svg │ │ ├── podcast.svg │ │ ├── power-01.svg │ │ ├── power-02.svg │ │ ├── power-03.svg │ │ ├── printer.svg │ │ ├── recording-01.svg │ │ ├── recording-02.svg │ │ ├── recording-03.svg │ │ ├── repeat-01.svg │ │ ├── repeat-02.svg │ │ ├── repeat-03.svg │ │ ├── repeat-04.svg │ │ ├── rss-01.svg │ │ ├── rss-02.svg │ │ ├── shuffle-01.svg │ │ ├── shuffle-02.svg │ │ ├── signal-01.svg │ │ ├── signal-02.svg │ │ ├── signal-03.svg │ │ ├── simcard.svg │ │ ├── skip-back.svg │ │ ├── skip-forward.svg │ │ ├── sliders-01.svg │ │ ├── sliders-02.svg │ │ ├── sliders-03.svg │ │ ├── sliders-04.svg │ │ ├── speaker-01.svg │ │ ├── speaker-02.svg │ │ ├── speaker-03.svg │ │ ├── stop-circle.svg │ │ ├── stop-square.svg │ │ ├── stop.svg │ │ ├── tablet-01.svg │ │ ├── tablet-02.svg │ │ ├── tv-01.svg │ │ ├── tv-02.svg │ │ ├── tv-03.svg │ │ ├── usb-flash-drive.svg │ │ ├── video-recorder-off.svg │ │ ├── video-recorder.svg │ │ ├── voicemail.svg │ │ ├── volume-max.svg │ │ ├── volume-min.svg │ │ ├── volume-minus.svg │ │ ├── volume-plus.svg │ │ ├── volume-x.svg │ │ ├── webcam-01.svg │ │ ├── webcam-02.svg │ │ ├── wifi-off.svg │ │ ├── wifi.svg │ │ └── youtube.svg │ ├── Security │ │ ├── face-id-square.svg │ │ ├── face-id.svg │ │ ├── file-lock-01.svg │ │ ├── file-lock-02.svg │ │ ├── file-lock-03.svg │ │ ├── file-shield-01.svg │ │ ├── file-shield-02.svg │ │ ├── file-shield-03.svg │ │ ├── fingerprint-01.svg │ │ ├── fingerprint-02.svg │ │ ├── fingerprint-03.svg │ │ ├── fingerprint-04.svg │ │ ├── folder-shield.svg │ │ ├── key-01.svg │ │ ├── key-02.svg │ │ ├── lock-01.svg │ │ ├── lock-02.svg │ │ ├── lock-03.svg │ │ ├── lock-04.svg │ │ ├── lock-keyhole-circle.svg │ │ ├── lock-keyhole-square.svg │ │ ├── lock-unlocked-01.svg │ │ ├── lock-unlocked-02.svg │ │ ├── lock-unlocked-03.svg │ │ ├── lock-unlocked-04.svg │ │ ├── passcode-lock.svg │ │ ├── passcode.svg │ │ ├── scan.svg │ │ ├── shield-01.svg │ │ ├── shield-02.svg │ │ ├── shield-03.svg │ │ ├── shield-dollar.svg │ │ ├── shield-off.svg │ │ ├── shield-plus.svg │ │ ├── shield-tick.svg │ │ └── shield-zap.svg │ ├── Shapes │ │ ├── circle.svg │ │ ├── cube-01.svg │ │ ├── cube-02.svg │ │ ├── cube-03.svg │ │ ├── cube-04.svg │ │ ├── cube-outline.svg │ │ ├── dice-1.svg │ │ ├── dice-2.svg │ │ ├── dice-3.svg │ │ ├── dice-4.svg │ │ ├── dice-5.svg │ │ ├── dice-6.svg │ │ ├── hexagon-01.svg │ │ ├── hexagon-02.svg │ │ ├── octagon.svg │ │ ├── pentagon.svg │ │ ├── square.svg │ │ ├── star-01.svg │ │ ├── star-02.svg │ │ ├── star-03.svg │ │ ├── star-04.svg │ │ ├── star-05.svg │ │ ├── star-06.svg │ │ ├── star-07.svg │ │ └── triangle.svg │ ├── Time │ │ ├── alarm-clock-check.svg │ │ ├── alarm-clock-minus.svg │ │ ├── alarm-clock-off.svg │ │ ├── alarm-clock-plus.svg │ │ ├── alarm-clock.svg │ │ ├── calendar-check-01.svg │ │ ├── calendar-check-02.svg │ │ ├── calendar-date.svg │ │ ├── calendar-heart-01.svg │ │ ├── calendar-heart-02.svg │ │ ├── calendar-minus-01.svg │ │ ├── calendar-minus-02.svg │ │ ├── calendar-plus-01.svg │ │ ├── calendar-plus-02.svg │ │ ├── calendar.svg │ │ ├── clock-check.svg │ │ ├── clock-fast-forward.svg │ │ ├── clock-plus.svg │ │ ├── clock-refresh.svg │ │ ├── clock-rewind.svg │ │ ├── clock-snooze.svg │ │ ├── clock-stopwatch.svg │ │ ├── clock.svg │ │ ├── hourglass-01.svg │ │ ├── hourglass-02.svg │ │ ├── hourglass-03.svg │ │ ├── watch-circle.svg │ │ └── watch-square.svg │ ├── Users │ │ ├── face-content.svg │ │ ├── face-frown.svg │ │ ├── face-happy.svg │ │ ├── face-neutral.svg │ │ ├── face-sad.svg │ │ ├── face-smile.svg │ │ ├── face-wink.svg │ │ ├── user-01.svg │ │ ├── user-02.svg │ │ ├── user-03.svg │ │ ├── user-check-01.svg │ │ ├── user-check-02.svg │ │ ├── user-circle.svg │ │ ├── user-down-01.svg │ │ ├── user-down-02.svg │ │ ├── user-edit.svg │ │ ├── user-left-01.svg │ │ ├── user-left-02.svg │ │ ├── user-minus-01.svg │ │ ├── user-minus-02.svg │ │ ├── user-plus-01.svg │ │ ├── user-plus-02.svg │ │ ├── user-right-01.svg │ │ ├── user-right-02.svg │ │ ├── user-square.svg │ │ ├── user-up-01.svg │ │ ├── user-up-02.svg │ │ ├── user-x-01.svg │ │ ├── user-x-02.svg │ │ ├── users-01.svg │ │ ├── users-02.svg │ │ ├── users-03.svg │ │ ├── users-check.svg │ │ ├── users-down.svg │ │ ├── users-edit.svg │ │ ├── users-left.svg │ │ ├── users-minus.svg │ │ ├── users-plus.svg │ │ ├── users-right.svg │ │ ├── users-up.svg │ │ └── users-x.svg │ └── Weather │ │ ├── cloud-01.svg │ │ ├── cloud-02.svg │ │ ├── cloud-03.svg │ │ ├── cloud-lightning.svg │ │ ├── cloud-moon.svg │ │ ├── cloud-off.svg │ │ ├── cloud-raining-01.svg │ │ ├── cloud-raining-02.svg │ │ ├── cloud-raining-03.svg │ │ ├── cloud-raining-04.svg │ │ ├── cloud-raining-05.svg │ │ ├── cloud-raining-06.svg │ │ ├── cloud-snowing-01.svg │ │ ├── cloud-snowing-02.svg │ │ ├── cloud-sun-01.svg │ │ ├── cloud-sun-02.svg │ │ ├── cloud-sun-03.svg │ │ ├── droplets-01.svg │ │ ├── droplets-02.svg │ │ ├── droplets-03.svg │ │ ├── hurricane-01.svg │ │ ├── hurricane-02.svg │ │ ├── hurricane-03.svg │ │ ├── lightning-01.svg │ │ ├── lightning-02.svg │ │ ├── moon-01.svg │ │ ├── moon-02.svg │ │ ├── moon-eclipse.svg │ │ ├── moon-star.svg │ │ ├── snowflake-01.svg │ │ ├── snowflake-02.svg │ │ ├── stars-01.svg │ │ ├── stars-02.svg │ │ ├── stars-03.svg │ │ ├── sun-setting-01.svg │ │ ├── sun-setting-02.svg │ │ ├── sun-setting-03.svg │ │ ├── sun.svg │ │ ├── sunrise.svg │ │ ├── sunset.svg │ │ ├── thermometer-01.svg │ │ ├── thermometer-02.svg │ │ ├── thermometer-03.svg │ │ ├── thermometer-cold.svg │ │ ├── thermometer-warm.svg │ │ ├── umbrella-01.svg │ │ ├── umbrella-02.svg │ │ ├── umbrella-03.svg │ │ ├── waves.svg │ │ ├── wind-01.svg │ │ ├── wind-02.svg │ │ └── wind-03.svg ├── Line icons │ ├── Alerts & feedback │ │ ├── alert-circle.svg │ │ ├── alert-hexagon.svg │ │ ├── alert-octagon.svg │ │ ├── alert-square.svg │ │ ├── alert-triangle.svg │ │ ├── announcement-01.svg │ │ ├── announcement-02.svg │ │ ├── announcement-03.svg │ │ ├── bell-01.svg │ │ ├── bell-02.svg │ │ ├── bell-03.svg │ │ ├── bell-04.svg │ │ ├── bell-minus.svg │ │ ├── bell-off-01.svg │ │ ├── bell-off-02.svg │ │ ├── bell-off-03.svg │ │ ├── bell-plus.svg │ │ ├── bell-ringing-01.svg │ │ ├── bell-ringing-02.svg │ │ ├── bell-ringing-03.svg │ │ ├── bell-ringing-04.svg │ │ ├── message-notification-square.svg │ │ ├── notification-box.svg │ │ ├── notification-text.svg │ │ ├── thumbs-down.svg │ │ └── thumbs-up.svg │ ├── Arrows │ │ ├── arrow-block-down.svg │ │ ├── arrow-block-left.svg │ │ ├── arrow-block-right.svg │ │ ├── arrow-block-up.svg │ │ ├── arrow-circle-broken-down-left.svg │ │ ├── arrow-circle-broken-down-right.svg │ │ ├── arrow-circle-broken-down.svg │ │ ├── arrow-circle-broken-left.svg │ │ ├── arrow-circle-broken-right.svg │ │ ├── arrow-circle-broken-up-left.svg │ │ ├── arrow-circle-broken-up-right.svg │ │ ├── arrow-circle-broken-up.svg │ │ ├── arrow-circle-down-left.svg │ │ ├── arrow-circle-down-right.svg │ │ ├── arrow-circle-down.svg │ │ ├── arrow-circle-left.svg │ │ ├── arrow-circle-right.svg │ │ ├── arrow-circle-up-left.svg │ │ ├── arrow-circle-up-right.svg │ │ ├── arrow-circle-up.svg │ │ ├── arrow-down-left.svg │ │ ├── arrow-down-right.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-narrow-down-left.svg │ │ ├── arrow-narrow-down-right.svg │ │ ├── arrow-narrow-down.svg │ │ ├── arrow-narrow-left.svg │ │ ├── arrow-narrow-right.svg │ │ ├── arrow-narrow-up-left.svg │ │ ├── arrow-narrow-up-right.svg │ │ ├── arrow-narrow-up.svg │ │ ├── arrow-right.svg │ │ ├── arrow-square-down-left.svg │ │ ├── arrow-square-down-right.svg │ │ ├── arrow-square-down.svg │ │ ├── arrow-square-left.svg │ │ ├── arrow-square-right.svg │ │ ├── arrow-square-up-left.svg │ │ ├── arrow-square-up-right.svg │ │ ├── arrow-square-up.svg │ │ ├── arrow-up-left.svg │ │ ├── arrow-up-right.svg │ │ ├── arrow-up.svg │ │ ├── arrows-down.svg │ │ ├── arrows-left.svg │ │ ├── arrows-right.svg │ │ ├── arrows-triangle.svg │ │ ├── arrows-up.svg │ │ ├── chevron-down-double.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left-double.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right-double.svg │ │ ├── chevron-right.svg │ │ ├── chevron-selector-horizontal.svg │ │ ├── chevron-selector-vertical.svg │ │ ├── chevron-up-double.svg │ │ ├── chevron-up.svg │ │ ├── corner-down-left.svg │ │ ├── corner-down-right.svg │ │ ├── corner-left-down.svg │ │ ├── corner-left-up.svg │ │ ├── corner-right-down.svg │ │ ├── corner-right-up.svg │ │ ├── corner-up-left.svg │ │ ├── corner-up-right.svg │ │ ├── expand-01.svg │ │ ├── expand-02.svg │ │ ├── expand-03.svg │ │ ├── expand-04.svg │ │ ├── expand-05.svg │ │ ├── expand-06.svg │ │ ├── flip-backward.svg │ │ ├── flip-forward.svg │ │ ├── infinity.svg │ │ ├── refresh-ccw-01.svg │ │ ├── refresh-ccw-02.svg │ │ ├── refresh-ccw-03.svg │ │ ├── refresh-ccw-04.svg │ │ ├── refresh-ccw-05.svg │ │ ├── refresh-cw-01.svg │ │ ├── refresh-cw-02.svg │ │ ├── refresh-cw-03.svg │ │ ├── refresh-cw-04.svg │ │ ├── refresh-cw-05.svg │ │ ├── reverse-left.svg │ │ ├── reverse-right.svg │ │ ├── switch-horizontal-01.svg │ │ ├── switch-horizontal-02.svg │ │ ├── switch-vertical-01.svg │ │ └── switch-vertical-02.svg │ ├── Charts │ │ ├── bar-chart-01.svg │ │ ├── bar-chart-02.svg │ │ ├── bar-chart-03.svg │ │ ├── bar-chart-04.svg │ │ ├── bar-chart-05.svg │ │ ├── bar-chart-06.svg │ │ ├── bar-chart-07.svg │ │ ├── bar-chart-08.svg │ │ ├── bar-chart-09.svg │ │ ├── bar-chart-10.svg │ │ ├── bar-chart-11.svg │ │ ├── bar-chart-12.svg │ │ ├── bar-chart-circle-01.svg │ │ ├── bar-chart-circle-02.svg │ │ ├── bar-chart-circle-03.svg │ │ ├── bar-chart-square-01.svg │ │ ├── bar-chart-square-02.svg │ │ ├── bar-chart-square-03.svg │ │ ├── bar-chart-square-down.svg │ │ ├── bar-chart-square-minus.svg │ │ ├── bar-chart-square-plus.svg │ │ ├── bar-chart-square-up.svg │ │ ├── bar-line-chart.svg │ │ ├── chart-breakout-circle.svg │ │ ├── chart-breakout-square.svg │ │ ├── horizontal-bar-chart-01.svg │ │ ├── horizontal-bar-chart-02.svg │ │ ├── horizontal-bar-chart-03.svg │ │ ├── line-chart-down-01.svg │ │ ├── line-chart-down-02.svg │ │ ├── line-chart-down-03.svg │ │ ├── line-chart-down-04.svg │ │ ├── line-chart-down-05.svg │ │ ├── line-chart-up-01.svg │ │ ├── line-chart-up-02.svg │ │ ├── line-chart-up-03.svg │ │ ├── line-chart-up-04.svg │ │ ├── line-chart-up-05.svg │ │ ├── pie-chart-01.svg │ │ ├── pie-chart-02.svg │ │ ├── pie-chart-03.svg │ │ ├── pie-chart-04.svg │ │ ├── presentation-chart-01.svg │ │ ├── presentation-chart-02.svg │ │ ├── presentation-chart-03.svg │ │ ├── trend-down-01.svg │ │ ├── trend-down-02.svg │ │ ├── trend-up-01.svg │ │ └── trend-up-02.svg │ ├── Communication │ │ ├── annotation-alert.svg │ │ ├── annotation-check.svg │ │ ├── annotation-dots.svg │ │ ├── annotation-heart.svg │ │ ├── annotation-info.svg │ │ ├── annotation-plus.svg │ │ ├── annotation-question.svg │ │ ├── annotation-x.svg │ │ ├── annotation.svg │ │ ├── inbox-01.svg │ │ ├── inbox-02.svg │ │ ├── mail-01.svg │ │ ├── mail-02.svg │ │ ├── mail-03.svg │ │ ├── mail-04.svg │ │ ├── mail-05.svg │ │ ├── message-alert-circle.svg │ │ ├── message-alert-square.svg │ │ ├── message-chat-circle.svg │ │ ├── message-chat-square.svg │ │ ├── message-check-circle.svg │ │ ├── message-check-square.svg │ │ ├── message-circle-01.svg │ │ ├── message-circle-02.svg │ │ ├── message-dots-circle.svg │ │ ├── message-dots-square.svg │ │ ├── message-heart-circle.svg │ │ ├── message-heart-square.svg │ │ ├── message-notification-circle.svg │ │ ├── message-notification-square.svg │ │ ├── message-plus-circle.svg │ │ ├── message-plus-square.svg │ │ ├── message-question-circle.svg │ │ ├── message-question-square.svg │ │ ├── message-smile-circle.svg │ │ ├── message-smile-square.svg │ │ ├── message-square-01.svg │ │ ├── message-square-02.svg │ │ ├── message-text-circle-01.svg │ │ ├── message-text-circle-02.svg │ │ ├── message-text-square-01.svg │ │ ├── message-text-square-02.svg │ │ ├── message-x-circle.svg │ │ ├── message-x-square.svg │ │ ├── phone-call-01.svg │ │ ├── phone-call-02.svg │ │ ├── phone-hang-up.svg │ │ ├── phone-incoming-01.svg │ │ ├── phone-incoming-02.svg │ │ ├── phone-outgoing-01.svg │ │ ├── phone-outgoing-02.svg │ │ ├── phone-pause.svg │ │ ├── phone-plus.svg │ │ ├── phone-x.svg │ │ ├── phone.svg │ │ ├── send-01.svg │ │ ├── send-02.svg │ │ └── send-03.svg │ ├── Development │ │ ├── brackets-check.svg │ │ ├── brackets-ellipses.svg │ │ ├── brackets-minus.svg │ │ ├── brackets-plus.svg │ │ ├── brackets-slash.svg │ │ ├── brackets-x.svg │ │ ├── brackets.svg │ │ ├── browser.svg │ │ ├── code-01.svg │ │ ├── code-02.svg │ │ ├── code-browser.svg │ │ ├── code-circle-01.svg │ │ ├── code-circle-02.svg │ │ ├── code-circle-03.svg │ │ ├── code-square-01.svg │ │ ├── code-square-02.svg │ │ ├── codepen.svg │ │ ├── container.svg │ │ ├── cpu-chip-01.svg │ │ ├── cpu-chip-02.svg │ │ ├── data.svg │ │ ├── database-01.svg │ │ ├── database-02.svg │ │ ├── database-03.svg │ │ ├── dataflow-01.svg │ │ ├── dataflow-02.svg │ │ ├── dataflow-03.svg │ │ ├── dataflow-04.svg │ │ ├── file-code-01.svg │ │ ├── file-code-02.svg │ │ ├── folder-code.svg │ │ ├── git-branch-01.svg │ │ ├── git-branch-02.svg │ │ ├── git-commit.svg │ │ ├── git-merge.svg │ │ ├── git-pull-request.svg │ │ ├── package-check.svg │ │ ├── package-minus.svg │ │ ├── package-plus.svg │ │ ├── package-search.svg │ │ ├── package-x.svg │ │ ├── package.svg │ │ ├── puzzle-piece-02.svg │ │ ├── puzzle-piece.svg │ │ ├── qr-code-01.svg │ │ ├── qr-code-02.svg │ │ ├── server-01.svg │ │ ├── server-02.svg │ │ ├── server-03.svg │ │ ├── server-04.svg │ │ ├── server-05.svg │ │ ├── server-06.svg │ │ ├── terminal-browser.svg │ │ ├── terminal-circle.svg │ │ ├── terminal-square.svg │ │ ├── terminal.svg │ │ └── variable.svg │ ├── Editor │ │ ├── align-center.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── attachment-01.svg │ │ ├── attachment-02.svg │ │ ├── bezier-curve-01.svg │ │ ├── bezier-curve-02.svg │ │ ├── bezier-curve-03.svg │ │ ├── bold-01.svg │ │ ├── bold-02.svg │ │ ├── bold-square.svg │ │ ├── brush-01.svg │ │ ├── brush-02.svg │ │ ├── brush-03.svg │ │ ├── circle-cut.svg │ │ ├── code-snippet-01.svg │ │ ├── code-snippet-02.svg │ │ ├── colors.svg │ │ ├── command.svg │ │ ├── contrast-01.svg │ │ ├── contrast-02.svg │ │ ├── contrast-03.svg │ │ ├── crop-01.svg │ │ ├── crop-02.svg │ │ ├── cursor-01.svg │ │ ├── cursor-02.svg │ │ ├── cursor-03.svg │ │ ├── cursor-04.svg │ │ ├── cursor-box.svg │ │ ├── cursor-click-01.svg │ │ ├── cursor-click-02.svg │ │ ├── delete.svg │ │ ├── dotpoints-01.svg │ │ ├── dotpoints-02.svg │ │ ├── drop.svg │ │ ├── dropper.svg │ │ ├── eraser.svg │ │ ├── feather.svg │ │ ├── figma.svg │ │ ├── framer.svg │ │ ├── hand.svg │ │ ├── heading-01.svg │ │ ├── heading-02.svg │ │ ├── heading-square.svg │ │ ├── image-indent-left.svg │ │ ├── image-indent-right.svg │ │ ├── italic-01.svg │ │ ├── italic-02.svg │ │ ├── italic-square.svg │ │ ├── left-indent-01.svg │ │ ├── left-indent-02.svg │ │ ├── letter-spacing-01.svg │ │ ├── letter-spacing-02.svg │ │ ├── line-height.svg │ │ ├── magic-wand-01.svg │ │ ├── magic-wand-02.svg │ │ ├── move.svg │ │ ├── paint-pour.svg │ │ ├── paint.svg │ │ ├── palette.svg │ │ ├── paragraph-spacing.svg │ │ ├── paragraph-wrap.svg │ │ ├── pen-tool-01.svg │ │ ├── pen-tool-02.svg │ │ ├── pen-tool-minus.svg │ │ ├── pen-tool-plus.svg │ │ ├── pencil-01.svg │ │ ├── pencil-02.svg │ │ ├── pencil-line.svg │ │ ├── perspective-01.svg │ │ ├── perspective-02.svg │ │ ├── pilcrow-01.svg │ │ ├── pilcrow-02.svg │ │ ├── pilcrow-square.svg │ │ ├── reflect-01.svg │ │ ├── reflect-02.svg │ │ ├── right-indent-01.svg │ │ ├── right-indent-02.svg │ │ ├── roller-brush.svg │ │ ├── scale-01.svg │ │ ├── scale-02.svg │ │ ├── scale-03.svg │ │ ├── scissors-01.svg │ │ ├── scissors-02.svg │ │ ├── scissors-cut-01.svg │ │ ├── scissors-cut-02.svg │ │ ├── skew.svg │ │ ├── strikethrough-01.svg │ │ ├── strikethrough-02.svg │ │ ├── strikethrough-square.svg │ │ ├── subscript.svg │ │ ├── text-input.svg │ │ ├── transform.svg │ │ ├── type-01.svg │ │ ├── type-02.svg │ │ ├── type-square.svg │ │ ├── type-strikethrough-01.svg │ │ ├── type-strikethrough-02.svg │ │ ├── underline-01.svg │ │ ├── underline-02.svg │ │ ├── underline-square.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg │ ├── Education │ │ ├── atom-01.svg │ │ ├── atom-02.svg │ │ ├── award-01.svg │ │ ├── award-02.svg │ │ ├── award-03.svg │ │ ├── award-04.svg │ │ ├── award-05.svg │ │ ├── backpack.svg │ │ ├── beaker-01.svg │ │ ├── beaker-02.svg │ │ ├── book-closed.svg │ │ ├── book-open-01.svg │ │ ├── book-open-02.svg │ │ ├── briefcase-01.svg │ │ ├── briefcase-02.svg │ │ ├── calculator.svg │ │ ├── certificate-01.svg │ │ ├── certificate-02.svg │ │ ├── compass.svg │ │ ├── glasses-01.svg │ │ ├── glasses-02.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── graduation-hat-01.svg │ │ ├── graduation-hat-02.svg │ │ ├── microscope.svg │ │ ├── ruler.svg │ │ ├── stand.svg │ │ ├── telescope.svg │ │ ├── trophy-01.svg │ │ └── trophy-02.svg │ ├── Files │ │ ├── box.svg │ │ ├── clipboard-attachment.svg │ │ ├── clipboard-check.svg │ │ ├── clipboard-download.svg │ │ ├── clipboard-minus.svg │ │ ├── clipboard-plus.svg │ │ ├── clipboard-x.svg │ │ ├── clipboard.svg │ │ ├── file-01.svg │ │ ├── file-02.svg │ │ ├── file-03.svg │ │ ├── file-04.svg │ │ ├── file-05.svg │ │ ├── file-06.svg │ │ ├── file-07.svg │ │ ├── file-attachment-01.svg │ │ ├── file-attachment-02.svg │ │ ├── file-attachment-03.svg │ │ ├── file-attachment-04.svg │ │ ├── file-attachment-05.svg │ │ ├── file-check-01.svg │ │ ├── file-check-02.svg │ │ ├── file-check-03.svg │ │ ├── file-download-01.svg │ │ ├── file-download-02.svg │ │ ├── file-download-03.svg │ │ ├── file-heart-01.svg │ │ ├── file-heart-02.svg │ │ ├── file-heart-03.svg │ │ ├── file-minus-01.svg │ │ ├── file-minus-02.svg │ │ ├── file-minus-03.svg │ │ ├── file-plus-01.svg │ │ ├── file-plus-02.svg │ │ ├── file-plus-03.svg │ │ ├── file-question-01.svg │ │ ├── file-question-02.svg │ │ ├── file-question-03.svg │ │ ├── file-search-01.svg │ │ ├── file-search-02.svg │ │ ├── file-search-03.svg │ │ ├── file-x-01.svg │ │ ├── file-x-02.svg │ │ ├── file-x-03.svg │ │ ├── folder-check.svg │ │ ├── folder-closed.svg │ │ ├── folder-download.svg │ │ ├── folder-lock.svg │ │ ├── folder-minus.svg │ │ ├── folder-plus.svg │ │ ├── folder-question.svg │ │ ├── folder-search.svg │ │ ├── folder-x.svg │ │ ├── folder.svg │ │ ├── paperclip.svg │ │ ├── sticker-circle.svg │ │ └── sticker-square.svg │ ├── Finance & eCommerce │ │ ├── bank-note-01.svg │ │ ├── bank-note-02.svg │ │ ├── bank-note-03.svg │ │ ├── bank.svg │ │ ├── coins-01.svg │ │ ├── coins-02.svg │ │ ├── coins-03.svg │ │ ├── coins-04.svg │ │ ├── coins-hand.svg │ │ ├── coins-stacked-01.svg │ │ ├── coins-stacked-02.svg │ │ ├── coins-stacked-03.svg │ │ ├── coins-stacked-04.svg │ │ ├── coins-swap-01.svg │ │ ├── coins-swap-02.svg │ │ ├── credit-card-01.svg │ │ ├── credit-card-02.svg │ │ ├── credit-card-check.svg │ │ ├── credit-card-down.svg │ │ ├── credit-card-download.svg │ │ ├── credit-card-edit.svg │ │ ├── credit-card-lock.svg │ │ ├── credit-card-minus.svg │ │ ├── credit-card-plus.svg │ │ ├── credit-card-refresh.svg │ │ ├── credit-card-search.svg │ │ ├── credit-card-shield.svg │ │ ├── credit-card-up.svg │ │ ├── credit-card-upload.svg │ │ ├── credit-card-x.svg │ │ ├── cryptocurrency-01.svg │ │ ├── cryptocurrency-02.svg │ │ ├── cryptocurrency-03.svg │ │ ├── cryptocurrency-04.svg │ │ ├── currency-bitcoin-circle.svg │ │ ├── currency-bitcoin.svg │ │ ├── currency-dollar-circle.svg │ │ ├── currency-dollar.svg │ │ ├── currency-ethereum-circle.svg │ │ ├── currency-ethereum.svg │ │ ├── currency-euro-circle.svg │ │ ├── currency-euro.svg │ │ ├── currency-pound-circle.svg │ │ ├── currency-pound.svg │ │ ├── currency-ruble-circle.svg │ │ ├── currency-ruble.svg │ │ ├── currency-rupee-circle.svg │ │ ├── currency-rupee.svg │ │ ├── currency-yen-circle.svg │ │ ├── currency-yen.svg │ │ ├── diamond-01.svg │ │ ├── diamond-02.svg │ │ ├── gift-01.svg │ │ ├── gift-02.svg │ │ ├── piggy-bank-01.svg │ │ ├── piggy-bank-02.svg │ │ ├── receipt-check.svg │ │ ├── receipt.svg │ │ ├── safe.svg │ │ ├── sale-01.svg │ │ ├── sale-02.svg │ │ ├── sale-03.svg │ │ ├── sale-04.svg │ │ ├── scales-01.svg │ │ ├── scales-02.svg │ │ ├── shopping-bag-01.svg │ │ ├── shopping-bag-02.svg │ │ ├── shopping-bag-03.svg │ │ ├── shopping-cart-01.svg │ │ ├── shopping-cart-02.svg │ │ ├── shopping-cart-03.svg │ │ ├── tag-01.svg │ │ ├── tag-02.svg │ │ ├── tag-03.svg │ │ ├── wallet-01.svg │ │ ├── wallet-02.svg │ │ ├── wallet-03.svg │ │ ├── wallet-04.svg │ │ └── wallet-05.svg │ ├── General │ │ ├── activity-heart.svg │ │ ├── activity.svg │ │ ├── anchor.svg │ │ ├── archive.svg │ │ ├── asterisk-01.svg │ │ ├── asterisk-02.svg │ │ ├── at-sign.svg │ │ ├── bookmark-add.svg │ │ ├── bookmark-check.svg │ │ ├── bookmark-minus.svg │ │ ├── bookmark-x.svg │ │ ├── bookmark.svg │ │ ├── building-01.svg │ │ ├── building-02.svg │ │ ├── building-03.svg │ │ ├── building-04.svg │ │ ├── building-05.svg │ │ ├── building-06.svg │ │ ├── building-07.svg │ │ ├── building-08.svg │ │ ├── check-circle-broken.svg │ │ ├── check-circle.svg │ │ ├── check-done-01.svg │ │ ├── check-done-02.svg │ │ ├── check-heart.svg │ │ ├── check-square-broken.svg │ │ ├── check-square.svg │ │ ├── check-verified-01.svg │ │ ├── check-verified-02.svg │ │ ├── check-verified-03.svg │ │ ├── check.svg │ │ ├── cloud-blank-01.svg │ │ ├── cloud-blank-02.svg │ │ ├── copy-01.svg │ │ ├── copy-02.svg │ │ ├── copy-03.svg │ │ ├── copy-04.svg │ │ ├── copy-05.svg │ │ ├── copy-06.svg │ │ ├── copy-07.svg │ │ ├── divide-01.svg │ │ ├── divide-02.svg │ │ ├── divide-03.svg │ │ ├── dots-grid.svg │ │ ├── dots-horizontal.svg │ │ ├── dots-vertical.svg │ │ ├── download-01.svg │ │ ├── download-02.svg │ │ ├── download-03.svg │ │ ├── download-04.svg │ │ ├── download-cloud-01.svg │ │ ├── download-cloud-02.svg │ │ ├── edit-01.svg │ │ ├── edit-02.svg │ │ ├── edit-03.svg │ │ ├── edit-04.svg │ │ ├── edit-05.svg │ │ ├── equal-not.svg │ │ ├── equal.svg │ │ ├── eye-off.svg │ │ ├── eye.svg │ │ ├── filter-funnel-01.svg │ │ ├── filter-funnel-02.svg │ │ ├── filter-lines.svg │ │ ├── google-chrome.svg │ │ ├── hash-01.svg │ │ ├── hash-02.svg │ │ ├── heart-circle.svg │ │ ├── heart-hand.svg │ │ ├── heart-octagon.svg │ │ ├── heart-rounded.svg │ │ ├── heart-square.svg │ │ ├── heart.svg │ │ ├── hearts.svg │ │ ├── help-circle.svg │ │ ├── help-hexagon.svg │ │ ├── help-octagon-1.svg │ │ ├── help-octagon.svg │ │ ├── help-square.svg │ │ ├── home-01.svg │ │ ├── home-02.svg │ │ ├── home-03.svg │ │ ├── home-04.svg │ │ ├── home-05.svg │ │ ├── home-line.svg │ │ ├── home-smile.svg │ │ ├── info-circle.svg │ │ ├── info-hexagon.svg │ │ ├── info-octagon.svg │ │ ├── info-square.svg │ │ ├── life-buoy-01.svg │ │ ├── life-buoy-02.svg │ │ ├── link-01.svg │ │ ├── link-02.svg │ │ ├── link-03.svg │ │ ├── link-04.svg │ │ ├── link-05.svg │ │ ├── link-broken-01.svg │ │ ├── link-broken-02.svg │ │ ├── link-external-01.svg │ │ ├── link-external-02.svg │ │ ├── loading-01.svg │ │ ├── loading-02.svg │ │ ├── loading-03.svg │ │ ├── log-in-01.svg │ │ ├── log-in-02.svg │ │ ├── log-in-03.svg │ │ ├── log-in-04.svg │ │ ├── log-out-01.svg │ │ ├── log-out-02.svg │ │ ├── log-out-03.svg │ │ ├── log-out-04.svg │ │ ├── medical-circle.svg │ │ ├── medical-cross.svg │ │ ├── medical-square.svg │ │ ├── menu-01.svg │ │ ├── menu-02.svg │ │ ├── menu-03.svg │ │ ├── menu-04.svg │ │ ├── menu-05.svg │ │ ├── minus-circle.svg │ │ ├── minus-square.svg │ │ ├── minus.svg │ │ ├── percent-01.svg │ │ ├── percent-02.svg │ │ ├── percent-03.svg │ │ ├── pin-01.svg │ │ ├── pin-02.svg │ │ ├── placeholder.svg │ │ ├── plus-circle.svg │ │ ├── plus-square.svg │ │ ├── plus.svg │ │ ├── save-01.svg │ │ ├── save-02.svg │ │ ├── save-03.svg │ │ ├── search-lg.svg │ │ ├── search-md.svg │ │ ├── search-refraction.svg │ │ ├── search-sm.svg │ │ ├── settings-01.svg │ │ ├── settings-02.svg │ │ ├── settings-03.svg │ │ ├── settings-04.svg │ │ ├── share-01.svg │ │ ├── share-02.svg │ │ ├── share-03.svg │ │ ├── share-04.svg │ │ ├── share-05.svg │ │ ├── share-06.svg │ │ ├── share-07.svg │ │ ├── slash-circle-01.svg │ │ ├── slash-circle-02.svg │ │ ├── slash-divider.svg │ │ ├── slash-octagon.svg │ │ ├── speedometer-01.svg │ │ ├── speedometer-02.svg │ │ ├── speedometer-03.svg │ │ ├── speedometer-04.svg │ │ ├── target-01.svg │ │ ├── target-02.svg │ │ ├── target-03.svg │ │ ├── target-04.svg │ │ ├── target-05.svg │ │ ├── toggle-01-left.svg │ │ ├── toggle-01-right.svg │ │ ├── toggle-02-left.svg │ │ ├── toggle-02-right.svg │ │ ├── toggle-03-left.svg │ │ ├── toggle-03-right.svg │ │ ├── tool-01.svg │ │ ├── tool-02.svg │ │ ├── translate-01.svg │ │ ├── translate-02.svg │ │ ├── trash-01.svg │ │ ├── trash-02.svg │ │ ├── trash-03.svg │ │ ├── trash-04.svg │ │ ├── upload-01.svg │ │ ├── upload-02.svg │ │ ├── upload-03.svg │ │ ├── upload-04.svg │ │ ├── upload-cloud-01.svg │ │ ├── upload-cloud-02.svg │ │ ├── virus.svg │ │ ├── x-circle.svg │ │ ├── x-close.svg │ │ ├── x-square.svg │ │ ├── x.svg │ │ ├── zap-circle.svg │ │ ├── zap-fast.svg │ │ ├── zap-off.svg │ │ ├── zap-square.svg │ │ └── zap.svg │ ├── Images │ │ ├── camera-01.svg │ │ ├── camera-02.svg │ │ ├── camera-03.svg │ │ ├── camera-lens.svg │ │ ├── camera-off.svg │ │ ├── camera-plus.svg │ │ ├── colors.svg │ │ ├── flash-off.svg │ │ ├── flash.svg │ │ ├── image-01.svg │ │ ├── image-02.svg │ │ ├── image-03.svg │ │ ├── image-04.svg │ │ ├── image-05.svg │ │ ├── image-check.svg │ │ ├── image-down.svg │ │ ├── image-left.svg │ │ ├── image-plus.svg │ │ ├── image-right.svg │ │ ├── image-up.svg │ │ ├── image-user-check.svg │ │ ├── image-user-down.svg │ │ ├── image-user-left.svg │ │ ├── image-user-plus.svg │ │ ├── image-user-right.svg │ │ ├── image-user-up.svg │ │ ├── image-user-x.svg │ │ ├── image-user.svg │ │ └── image-x.svg │ ├── Layout │ │ ├── align-bottom-01.svg │ │ ├── align-bottom-02.svg │ │ ├── align-horizontal-centre-01.svg │ │ ├── align-horizontal-centre-02.svg │ │ ├── align-left-01.svg │ │ ├── align-left-02.svg │ │ ├── align-right-01.svg │ │ ├── align-right-02.svg │ │ ├── align-top-arrow-01.svg │ │ ├── align-top-arrow-02.svg │ │ ├── align-vertical-center-01.svg │ │ ├── align-vertical-center-02.svg │ │ ├── columns-02.svg │ │ ├── columns-03.svg │ │ ├── distribute-spacing-horizontal.svg │ │ ├── distribute-spacing-vertical.svg │ │ ├── divider.svg │ │ ├── flex-align-bottom.svg │ │ ├── flex-align-left.svg │ │ ├── flex-align-right.svg │ │ ├── flex-align-top.svg │ │ ├── grid-01.svg │ │ ├── grid-02.svg │ │ ├── grid-03.svg │ │ ├── grid-dots-blank.svg │ │ ├── grid-dots-bottom.svg │ │ ├── grid-dots-horizontal-center.svg │ │ ├── grid-dots-left.svg │ │ ├── grid-dots-outer.svg │ │ ├── grid-dots-right.svg │ │ ├── grid-dots-top.svg │ │ ├── grid-dots-vertical-center.svg │ │ ├── grid.svg │ │ ├── intersect-circle.svg │ │ ├── intersect-square.svg │ │ ├── layer-single.svg │ │ ├── layers-three-01.svg │ │ ├── layers-three-02.svg │ │ ├── layers-two-01.svg │ │ ├── layers-two-02.svg │ │ ├── layout-alt-01.svg │ │ ├── layout-alt-02.svg │ │ ├── layout-alt-03.svg │ │ ├── layout-alt-04.svg │ │ ├── layout-bottom.svg │ │ ├── layout-grid-01.svg │ │ ├── layout-grid-02.svg │ │ ├── layout-left.svg │ │ ├── layout-right.svg │ │ ├── layout-top.svg │ │ ├── list.svg │ │ ├── maximize-01.svg │ │ ├── maximize-02.svg │ │ ├── minimize-01.svg │ │ ├── minimize-02.svg │ │ ├── rows-01.svg │ │ ├── rows-02.svg │ │ ├── rows-03.svg │ │ ├── spacing-height-01.svg │ │ ├── spacing-height-02.svg │ │ ├── spacing-width-01.svg │ │ ├── spacing-width-02.svg │ │ └── table.svg │ ├── Maps & travel │ │ ├── bus.svg │ │ ├── compass-01.svg │ │ ├── compass-02.svg │ │ ├── compass-03.svg │ │ ├── flag-01.svg │ │ ├── flag-02.svg │ │ ├── flag-03.svg │ │ ├── flag-04.svg │ │ ├── flag-05.svg │ │ ├── flag-06.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── globe-03.svg │ │ ├── globe-04.svg │ │ ├── globe-05.svg │ │ ├── globe-06.svg │ │ ├── luggage-01.svg │ │ ├── luggage-02.svg │ │ ├── luggage-03.svg │ │ ├── map-01.svg │ │ ├── map-02.svg │ │ ├── mark.svg │ │ ├── marker-pin-01.svg │ │ ├── marker-pin-02.svg │ │ ├── marker-pin-03.svg │ │ ├── marker-pin-04.svg │ │ ├── marker-pin-05.svg │ │ ├── marker-pin-06.svg │ │ ├── navigation-pointer-01.svg │ │ ├── navigation-pointer-02.svg │ │ ├── navigation-pointer-off-01.svg │ │ ├── navigation-pointer-off-02.svg │ │ ├── passport.svg │ │ ├── plane.svg │ │ ├── rocket-01.svg │ │ ├── rocket-02.svg │ │ ├── route.svg │ │ ├── ticket-01.svg │ │ ├── ticket-02.svg │ │ ├── train.svg │ │ ├── tram.svg │ │ ├── truck-01.svg │ │ └── truck-02.svg │ ├── Media & devices │ │ ├── airplay.svg │ │ ├── airpods.svg │ │ ├── battery-charging-01.svg │ │ ├── battery-charging-02.svg │ │ ├── battery-empty.svg │ │ ├── battery-full.svg │ │ ├── battery-low.svg │ │ ├── battery-mid.svg │ │ ├── bluetooth-connect.svg │ │ ├── bluetooth-on.svg │ │ ├── bluetooth-signal.svg │ │ ├── bluetooth.svg │ │ ├── chrome-cast.svg │ │ ├── clapperboard.svg │ │ ├── disc-01.svg │ │ ├── disc-02.svg │ │ ├── fast-backward.svg │ │ ├── fast-forward.svg │ │ ├── film-01.svg │ │ ├── film-02.svg │ │ ├── film-03.svg │ │ ├── gaming-pad-01.svg │ │ ├── gaming-pad-02.svg │ │ ├── hard-drive.svg │ │ ├── headphones-01.svg │ │ ├── headphones-02.svg │ │ ├── keyboard-01.svg │ │ ├── keyboard-02.svg │ │ ├── laptop-01.svg │ │ ├── laptop-02.svg │ │ ├── lightbulb-01.svg │ │ ├── lightbulb-02.svg │ │ ├── lightbulb-03.svg │ │ ├── lightbulb-04.svg │ │ ├── lightbulb-05.svg │ │ ├── microphone-01.svg │ │ ├── microphone-02.svg │ │ ├── microphone-off-01.svg │ │ ├── microphone-off-02.svg │ │ ├── modem-01.svg │ │ ├── modem-02.svg │ │ ├── monitor-01.svg │ │ ├── monitor-02.svg │ │ ├── monitor-03.svg │ │ ├── monitor-04.svg │ │ ├── monitor-05.svg │ │ ├── mouse.svg │ │ ├── music-note-01.svg │ │ ├── music-note-02.svg │ │ ├── music.svg │ │ ├── pause-circle.svg │ │ ├── pause-square.svg │ │ ├── pause.svg │ │ ├── phone-01.svg │ │ ├── phone-02.svg │ │ ├── play-circle.svg │ │ ├── play-square.svg │ │ ├── play.svg │ │ ├── podcast.svg │ │ ├── power-01.svg │ │ ├── power-02.svg │ │ ├── power-03.svg │ │ ├── printer.svg │ │ ├── recording-01.svg │ │ ├── recording-02.svg │ │ ├── recording-03.svg │ │ ├── repeat-01.svg │ │ ├── repeat-02.svg │ │ ├── repeat-03.svg │ │ ├── repeat-04.svg │ │ ├── rss-01.svg │ │ ├── rss-02.svg │ │ ├── shuffle-01.svg │ │ ├── shuffle-02.svg │ │ ├── signal-01.svg │ │ ├── signal-02.svg │ │ ├── signal-03.svg │ │ ├── simcard.svg │ │ ├── skip-back.svg │ │ ├── skip-forward.svg │ │ ├── sliders-01.svg │ │ ├── sliders-02.svg │ │ ├── sliders-03.svg │ │ ├── sliders-04.svg │ │ ├── speaker-01.svg │ │ ├── speaker-02.svg │ │ ├── speaker-03.svg │ │ ├── stop-circle.svg │ │ ├── stop-square.svg │ │ ├── stop.svg │ │ ├── tablet-01.svg │ │ ├── tablet-02.svg │ │ ├── tv-01.svg │ │ ├── tv-02.svg │ │ ├── tv-03.svg │ │ ├── usb-flash-drive.svg │ │ ├── video-recorder-off.svg │ │ ├── video-recorder.svg │ │ ├── voicemail.svg │ │ ├── volume-max.svg │ │ ├── volume-min.svg │ │ ├── volume-minus.svg │ │ ├── volume-plus.svg │ │ ├── volume-x.svg │ │ ├── webcam-01.svg │ │ ├── webcam-02.svg │ │ ├── wifi-off.svg │ │ ├── wifi.svg │ │ └── youtube.svg │ ├── Security │ │ ├── face-id-square.svg │ │ ├── face-id.svg │ │ ├── file-lock-01.svg │ │ ├── file-lock-02.svg │ │ ├── file-lock-03.svg │ │ ├── file-shield-01.svg │ │ ├── file-shield-02.svg │ │ ├── file-shield-03.svg │ │ ├── fingerprint-01.svg │ │ ├── fingerprint-02.svg │ │ ├── fingerprint-03.svg │ │ ├── fingerprint-04.svg │ │ ├── folder-shield.svg │ │ ├── key-01.svg │ │ ├── key-02.svg │ │ ├── lock-01.svg │ │ ├── lock-02.svg │ │ ├── lock-03.svg │ │ ├── lock-04.svg │ │ ├── lock-keyhole-circle.svg │ │ ├── lock-keyhole-square.svg │ │ ├── lock-unlocked-01.svg │ │ ├── lock-unlocked-02.svg │ │ ├── lock-unlocked-03.svg │ │ ├── lock-unlocked-04.svg │ │ ├── passcode-lock.svg │ │ ├── passcode.svg │ │ ├── scan.svg │ │ ├── shield-01.svg │ │ ├── shield-02.svg │ │ ├── shield-03.svg │ │ ├── shield-dollar.svg │ │ ├── shield-off.svg │ │ ├── shield-plus.svg │ │ ├── shield-tick.svg │ │ └── shield-zap.svg │ ├── Shapes │ │ ├── circle.svg │ │ ├── cube-01.svg │ │ ├── cube-02.svg │ │ ├── cube-03.svg │ │ ├── cube-04.svg │ │ ├── cube-outline.svg │ │ ├── dice-1.svg │ │ ├── dice-2.svg │ │ ├── dice-3.svg │ │ ├── dice-4.svg │ │ ├── dice-5.svg │ │ ├── dice-6.svg │ │ ├── hexagon-01.svg │ │ ├── hexagon-02.svg │ │ ├── octagon.svg │ │ ├── pentagon.svg │ │ ├── square.svg │ │ ├── star-01.svg │ │ ├── star-02.svg │ │ ├── star-03.svg │ │ ├── star-04.svg │ │ ├── star-05.svg │ │ ├── star-06.svg │ │ ├── star-07.svg │ │ └── triangle.svg │ ├── Time │ │ ├── alarm-clock-check.svg │ │ ├── alarm-clock-minus.svg │ │ ├── alarm-clock-off.svg │ │ ├── alarm-clock-plus.svg │ │ ├── alarm-clock.svg │ │ ├── calendar-check-01.svg │ │ ├── calendar-check-02.svg │ │ ├── calendar-date.svg │ │ ├── calendar-heart-01.svg │ │ ├── calendar-heart-02.svg │ │ ├── calendar-minus-01.svg │ │ ├── calendar-minus-02.svg │ │ ├── calendar-plus-01.svg │ │ ├── calendar-plus-02.svg │ │ ├── calendar.svg │ │ ├── clock-check.svg │ │ ├── clock-fast-forward.svg │ │ ├── clock-plus.svg │ │ ├── clock-refresh.svg │ │ ├── clock-rewind.svg │ │ ├── clock-snooze.svg │ │ ├── clock-stopwatch.svg │ │ ├── clock.svg │ │ ├── hourglass-01.svg │ │ ├── hourglass-02.svg │ │ ├── hourglass-03.svg │ │ ├── watch-circle.svg │ │ └── watch-square.svg │ ├── Users │ │ ├── face-content.svg │ │ ├── face-frown.svg │ │ ├── face-happy.svg │ │ ├── face-neutral.svg │ │ ├── face-sad.svg │ │ ├── face-smile.svg │ │ ├── face-wink.svg │ │ ├── user-01.svg │ │ ├── user-02.svg │ │ ├── user-03.svg │ │ ├── user-check-01.svg │ │ ├── user-check-02.svg │ │ ├── user-circle.svg │ │ ├── user-down-01.svg │ │ ├── user-down-02.svg │ │ ├── user-edit.svg │ │ ├── user-left-01.svg │ │ ├── user-left-02.svg │ │ ├── user-minus-01.svg │ │ ├── user-minus-02.svg │ │ ├── user-plus-01.svg │ │ ├── user-plus-02.svg │ │ ├── user-right-01.svg │ │ ├── user-right-02.svg │ │ ├── user-square.svg │ │ ├── user-up-01.svg │ │ ├── user-up-02.svg │ │ ├── user-x-01.svg │ │ ├── user-x-02.svg │ │ ├── users-01.svg │ │ ├── users-02.svg │ │ ├── users-03.svg │ │ ├── users-check.svg │ │ ├── users-down.svg │ │ ├── users-edit.svg │ │ ├── users-left.svg │ │ ├── users-minus.svg │ │ ├── users-plus.svg │ │ ├── users-right.svg │ │ ├── users-up.svg │ │ └── users-x.svg │ └── Weather │ │ ├── cloud-01.svg │ │ ├── cloud-02.svg │ │ ├── cloud-03.svg │ │ ├── cloud-lightning.svg │ │ ├── cloud-moon.svg │ │ ├── cloud-off.svg │ │ ├── cloud-raining-01.svg │ │ ├── cloud-raining-02.svg │ │ ├── cloud-raining-03.svg │ │ ├── cloud-raining-04.svg │ │ ├── cloud-raining-05.svg │ │ ├── cloud-raining-06.svg │ │ ├── cloud-snowing-01.svg │ │ ├── cloud-snowing-02.svg │ │ ├── cloud-sun-01.svg │ │ ├── cloud-sun-02.svg │ │ ├── cloud-sun-03.svg │ │ ├── droplets-01.svg │ │ ├── droplets-02.svg │ │ ├── droplets-03.svg │ │ ├── hurricane-01.svg │ │ ├── hurricane-02.svg │ │ ├── hurricane-03.svg │ │ ├── lightning-01.svg │ │ ├── lightning-02.svg │ │ ├── moon-01.svg │ │ ├── moon-02.svg │ │ ├── moon-eclipse.svg │ │ ├── moon-star.svg │ │ ├── snowflake-01.svg │ │ ├── snowflake-02.svg │ │ ├── stars-01.svg │ │ ├── stars-02.svg │ │ ├── stars-03.svg │ │ ├── sun-setting-01.svg │ │ ├── sun-setting-02.svg │ │ ├── sun-setting-03.svg │ │ ├── sun.svg │ │ ├── sunrise.svg │ │ ├── sunset.svg │ │ ├── thermometer-01.svg │ │ ├── thermometer-02.svg │ │ ├── thermometer-03.svg │ │ ├── thermometer-cold.svg │ │ ├── thermometer-warm.svg │ │ ├── umbrella-01.svg │ │ ├── umbrella-02.svg │ │ ├── umbrella-03.svg │ │ ├── waves.svg │ │ ├── wind-01.svg │ │ ├── wind-02.svg │ │ └── wind-03.svg ├── Other │ ├── blur-1.svg │ ├── blur-2.svg │ └── blur-3.svg ├── Solid icons │ ├── Alerts & feedback │ │ ├── alert-circle.svg │ │ ├── alert-hexagon.svg │ │ ├── alert-octagon.svg │ │ ├── alert-square.svg │ │ ├── alert-triangle.svg │ │ ├── announcement-01.svg │ │ ├── announcement-02.svg │ │ ├── announcement-03.svg │ │ ├── bell-01.svg │ │ ├── bell-02.svg │ │ ├── bell-03.svg │ │ ├── bell-04.svg │ │ ├── bell-minus.svg │ │ ├── bell-off-01.svg │ │ ├── bell-off-02.svg │ │ ├── bell-off-03.svg │ │ ├── bell-plus.svg │ │ ├── bell-ringing-01.svg │ │ ├── bell-ringing-02.svg │ │ ├── bell-ringing-03.svg │ │ ├── bell-ringing-04.svg │ │ ├── message-notification-square.svg │ │ ├── notification-box.svg │ │ ├── notification-text.svg │ │ ├── thumbs-down.svg │ │ └── thumbs-up.svg │ ├── Arrows │ │ ├── arrow-block-down.svg │ │ ├── arrow-block-left.svg │ │ ├── arrow-block-right.svg │ │ ├── arrow-block-up.svg │ │ ├── arrow-circle-broken-down-left.svg │ │ ├── arrow-circle-broken-down-right.svg │ │ ├── arrow-circle-broken-down.svg │ │ ├── arrow-circle-broken-left.svg │ │ ├── arrow-circle-broken-right.svg │ │ ├── arrow-circle-broken-up-left.svg │ │ ├── arrow-circle-broken-up-right.svg │ │ ├── arrow-circle-broken-up.svg │ │ ├── arrow-circle-down-left.svg │ │ ├── arrow-circle-down-right.svg │ │ ├── arrow-circle-down.svg │ │ ├── arrow-circle-left.svg │ │ ├── arrow-circle-right.svg │ │ ├── arrow-circle-up-left.svg │ │ ├── arrow-circle-up-right.svg │ │ ├── arrow-circle-up.svg │ │ ├── arrow-down-left.svg │ │ ├── arrow-down-right.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-narrow-down-left.svg │ │ ├── arrow-narrow-down-right.svg │ │ ├── arrow-narrow-down.svg │ │ ├── arrow-narrow-left.svg │ │ ├── arrow-narrow-right.svg │ │ ├── arrow-narrow-up-left.svg │ │ ├── arrow-narrow-up-right.svg │ │ ├── arrow-narrow-up.svg │ │ ├── arrow-right.svg │ │ ├── arrow-square-down-left.svg │ │ ├── arrow-square-down-right.svg │ │ ├── arrow-square-down.svg │ │ ├── arrow-square-left.svg │ │ ├── arrow-square-right.svg │ │ ├── arrow-square-up-left.svg │ │ ├── arrow-square-up-right.svg │ │ ├── arrow-square-up.svg │ │ ├── arrow-up-left.svg │ │ ├── arrow-up-right.svg │ │ ├── arrow-up.svg │ │ ├── arrows-down.svg │ │ ├── arrows-left.svg │ │ ├── arrows-right.svg │ │ ├── arrows-triangle.svg │ │ ├── arrows-up.svg │ │ ├── chevron-down-double.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left-double.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right-double.svg │ │ ├── chevron-right.svg │ │ ├── chevron-selector-horizontal.svg │ │ ├── chevron-selector-vertical.svg │ │ ├── chevron-up-double.svg │ │ ├── chevron-up.svg │ │ ├── corner-down-left.svg │ │ ├── corner-down-right.svg │ │ ├── corner-left-down.svg │ │ ├── corner-left-up.svg │ │ ├── corner-right-down.svg │ │ ├── corner-right-up.svg │ │ ├── corner-up-left.svg │ │ ├── corner-up-right.svg │ │ ├── expand-01.svg │ │ ├── expand-02.svg │ │ ├── expand-03.svg │ │ ├── expand-04.svg │ │ ├── expand-05.svg │ │ ├── expand-06.svg │ │ ├── flip-backward.svg │ │ ├── flip-forward.svg │ │ ├── infinity.svg │ │ ├── refresh-ccw-01.svg │ │ ├── refresh-ccw-02.svg │ │ ├── refresh-ccw-03.svg │ │ ├── refresh-ccw-04.svg │ │ ├── refresh-ccw-05.svg │ │ ├── refresh-cw-01.svg │ │ ├── refresh-cw-02.svg │ │ ├── refresh-cw-03.svg │ │ ├── refresh-cw-04.svg │ │ ├── refresh-cw-05.svg │ │ ├── reverse-left.svg │ │ ├── reverse-right.svg │ │ ├── switch-horizontal-01.svg │ │ ├── switch-horizontal-02.svg │ │ ├── switch-vertical-01.svg │ │ └── switch-vertical-02.svg │ ├── Charts │ │ ├── bar-chart-01.svg │ │ ├── bar-chart-02.svg │ │ ├── bar-chart-03.svg │ │ ├── bar-chart-04.svg │ │ ├── bar-chart-05.svg │ │ ├── bar-chart-06.svg │ │ ├── bar-chart-07.svg │ │ ├── bar-chart-08.svg │ │ ├── bar-chart-09.svg │ │ ├── bar-chart-10.svg │ │ ├── bar-chart-11.svg │ │ ├── bar-chart-12.svg │ │ ├── bar-chart-circle-01.svg │ │ ├── bar-chart-circle-02.svg │ │ ├── bar-chart-circle-03.svg │ │ ├── bar-chart-square-01.svg │ │ ├── bar-chart-square-02.svg │ │ ├── bar-chart-square-03.svg │ │ ├── bar-chart-square-down.svg │ │ ├── bar-chart-square-minus.svg │ │ ├── bar-chart-square-plus.svg │ │ ├── bar-chart-square-up.svg │ │ ├── bar-line-chart.svg │ │ ├── chart-breakout-circle.svg │ │ ├── chart-breakout-square.svg │ │ ├── horizontal-bar-chart-01.svg │ │ ├── horizontal-bar-chart-02.svg │ │ ├── horizontal-bar-chart-03.svg │ │ ├── line-chart-down-01.svg │ │ ├── line-chart-down-02.svg │ │ ├── line-chart-down-03.svg │ │ ├── line-chart-down-04.svg │ │ ├── line-chart-down-05.svg │ │ ├── line-chart-up-01.svg │ │ ├── line-chart-up-02.svg │ │ ├── line-chart-up-03.svg │ │ ├── line-chart-up-04.svg │ │ ├── line-chart-up-05.svg │ │ ├── pie-chart-01.svg │ │ ├── pie-chart-02.svg │ │ ├── pie-chart-03.svg │ │ ├── pie-chart-04.svg │ │ ├── presentation-chart-01.svg │ │ ├── presentation-chart-02.svg │ │ ├── presentation-chart-03.svg │ │ ├── trend-down-01.svg │ │ ├── trend-down-02.svg │ │ ├── trend-up-01.svg │ │ └── trend-up-02.svg │ ├── Communication │ │ ├── annotation-alert.svg │ │ ├── annotation-check.svg │ │ ├── annotation-dots.svg │ │ ├── annotation-heart.svg │ │ ├── annotation-info.svg │ │ ├── annotation-plus.svg │ │ ├── annotation-question.svg │ │ ├── annotation-x.svg │ │ ├── annotation.svg │ │ ├── inbox-01.svg │ │ ├── inbox-02.svg │ │ ├── mail-01.svg │ │ ├── mail-02.svg │ │ ├── mail-03.svg │ │ ├── mail-04.svg │ │ ├── mail-05.svg │ │ ├── message-alert-circle.svg │ │ ├── message-alert-square.svg │ │ ├── message-chat-circle.svg │ │ ├── message-chat-square.svg │ │ ├── message-check-circle.svg │ │ ├── message-check-square.svg │ │ ├── message-circle-01.svg │ │ ├── message-circle-02.svg │ │ ├── message-dots-circle.svg │ │ ├── message-dots-square.svg │ │ ├── message-heart-circle.svg │ │ ├── message-heart-square.svg │ │ ├── message-notification-circle.svg │ │ ├── message-notification-square.svg │ │ ├── message-plus-circle.svg │ │ ├── message-plus-square.svg │ │ ├── message-question-circle.svg │ │ ├── message-question-square.svg │ │ ├── message-smile-circle.svg │ │ ├── message-smile-square.svg │ │ ├── message-square-01.svg │ │ ├── message-square-02.svg │ │ ├── message-text-circle-01.svg │ │ ├── message-text-circle-02.svg │ │ ├── message-text-square-01.svg │ │ ├── message-text-square-02.svg │ │ ├── message-x-circle.svg │ │ ├── message-x-square.svg │ │ ├── phone-call-01.svg │ │ ├── phone-call-02.svg │ │ ├── phone-hang-up.svg │ │ ├── phone-incoming-01.svg │ │ ├── phone-incoming-02.svg │ │ ├── phone-outgoing-01.svg │ │ ├── phone-outgoing-02.svg │ │ ├── phone-pause.svg │ │ ├── phone-plus.svg │ │ ├── phone-x.svg │ │ ├── phone.svg │ │ ├── send-01.svg │ │ ├── send-02.svg │ │ └── send-03.svg │ ├── Development │ │ ├── brackets-check.svg │ │ ├── brackets-ellipses.svg │ │ ├── brackets-minus.svg │ │ ├── brackets-plus.svg │ │ ├── brackets-slash.svg │ │ ├── brackets-x.svg │ │ ├── brackets.svg │ │ ├── browser.svg │ │ ├── code-01.svg │ │ ├── code-02.svg │ │ ├── code-browser.svg │ │ ├── code-circle-01.svg │ │ ├── code-circle-02.svg │ │ ├── code-circle-03.svg │ │ ├── code-square-01.svg │ │ ├── code-square-02.svg │ │ ├── codepen.svg │ │ ├── container.svg │ │ ├── cpu-chip-01.svg │ │ ├── cpu-chip-02.svg │ │ ├── data.svg │ │ ├── database-01.svg │ │ ├── database-02.svg │ │ ├── database-03.svg │ │ ├── dataflow-01.svg │ │ ├── dataflow-02.svg │ │ ├── dataflow-03.svg │ │ ├── dataflow-04.svg │ │ ├── file-code-01.svg │ │ ├── file-code-02.svg │ │ ├── folder-code.svg │ │ ├── git-branch-01.svg │ │ ├── git-branch-02.svg │ │ ├── git-commit.svg │ │ ├── git-merge.svg │ │ ├── git-pull-request.svg │ │ ├── package-check.svg │ │ ├── package-minus.svg │ │ ├── package-plus.svg │ │ ├── package-search.svg │ │ ├── package-x.svg │ │ ├── package.svg │ │ ├── puzzle-piece-01.svg │ │ ├── puzzle-piece-02.svg │ │ ├── qr-code-01.svg │ │ ├── qr-code-02.svg │ │ ├── server-01.svg │ │ ├── server-02.svg │ │ ├── server-03.svg │ │ ├── server-04.svg │ │ ├── server-05.svg │ │ ├── server-06.svg │ │ ├── terminal-browser.svg │ │ ├── terminal-circle.svg │ │ ├── terminal-square.svg │ │ ├── terminal.svg │ │ └── variable.svg │ ├── Editor │ │ ├── align-center.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── attachment-01.svg │ │ ├── attachment-02.svg │ │ ├── bezier-curve-01.svg │ │ ├── bezier-curve-02.svg │ │ ├── bezier-curve-03.svg │ │ ├── bold-01.svg │ │ ├── bold-02.svg │ │ ├── bold-square.svg │ │ ├── brush-01.svg │ │ ├── brush-02.svg │ │ ├── brush-03.svg │ │ ├── circle-cut.svg │ │ ├── code-snippet-01.svg │ │ ├── code-snippet-02.svg │ │ ├── colors.svg │ │ ├── command.svg │ │ ├── contrast-01.svg │ │ ├── contrast-02.svg │ │ ├── contrast-03.svg │ │ ├── crop-01.svg │ │ ├── crop-02.svg │ │ ├── cursor-01.svg │ │ ├── cursor-02.svg │ │ ├── cursor-03.svg │ │ ├── cursor-04.svg │ │ ├── cursor-box.svg │ │ ├── cursor-click-01.svg │ │ ├── cursor-click-02.svg │ │ ├── delete.svg │ │ ├── dotpoints-01.svg │ │ ├── dotpoints-02.svg │ │ ├── drop.svg │ │ ├── dropper.svg │ │ ├── eraser.svg │ │ ├── feather.svg │ │ ├── figma.svg │ │ ├── framer.svg │ │ ├── hand.svg │ │ ├── heading-01.svg │ │ ├── heading-02.svg │ │ ├── heading-square.svg │ │ ├── image-indent-left.svg │ │ ├── image-indent-right.svg │ │ ├── italic-01.svg │ │ ├── italic-02.svg │ │ ├── italic-square.svg │ │ ├── left-indent-01.svg │ │ ├── left-indent-02.svg │ │ ├── letter-spacing-01.svg │ │ ├── letter-spacing-02.svg │ │ ├── line-height.svg │ │ ├── magic-wand-01.svg │ │ ├── magic-wand-02.svg │ │ ├── move.svg │ │ ├── paint-pour.svg │ │ ├── paint.svg │ │ ├── palette.svg │ │ ├── paragraph-spacing.svg │ │ ├── paragraph-wrap.svg │ │ ├── pen-tool-01.svg │ │ ├── pen-tool-02.svg │ │ ├── pen-tool-minus.svg │ │ ├── pen-tool-plus.svg │ │ ├── pencil-01.svg │ │ ├── pencil-02.svg │ │ ├── pencil-line.svg │ │ ├── perspective-01.svg │ │ ├── perspective-02.svg │ │ ├── pilcrow-01.svg │ │ ├── pilcrow-02.svg │ │ ├── pilcrow-square.svg │ │ ├── reflect-01.svg │ │ ├── reflect-02.svg │ │ ├── right-indent-01.svg │ │ ├── right-indent-02.svg │ │ ├── roller-brush.svg │ │ ├── scale-01.svg │ │ ├── scale-02.svg │ │ ├── scale-03.svg │ │ ├── scissors-01.svg │ │ ├── scissors-02.svg │ │ ├── scissors-cut-01.svg │ │ ├── scissors-cut-02.svg │ │ ├── skew.svg │ │ ├── strikethrough-01.svg │ │ ├── strikethrough-02.svg │ │ ├── strikethrough-square.svg │ │ ├── subscript.svg │ │ ├── text-input.svg │ │ ├── transform.svg │ │ ├── type-01.svg │ │ ├── type-02.svg │ │ ├── type-square.svg │ │ ├── type-strikethrough-01.svg │ │ ├── type-strikethrough-02.svg │ │ ├── underline-01.svg │ │ ├── underline-02.svg │ │ ├── underline-square.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg │ ├── Education │ │ ├── atom-01.svg │ │ ├── atom-02.svg │ │ ├── award-01.svg │ │ ├── award-02.svg │ │ ├── award-03.svg │ │ ├── award-04.svg │ │ ├── award-05.svg │ │ ├── backpack.svg │ │ ├── beaker-01.svg │ │ ├── beaker-02.svg │ │ ├── book-closed.svg │ │ ├── book-open-01.svg │ │ ├── book-open-02.svg │ │ ├── briefcase-01.svg │ │ ├── briefcase-02.svg │ │ ├── calculator.svg │ │ ├── certificate-01.svg │ │ ├── certificate-02.svg │ │ ├── compass.svg │ │ ├── glasses-01.svg │ │ ├── glasses-02.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── graduation-hat-01.svg │ │ ├── graduation-hat-02.svg │ │ ├── microscope.svg │ │ ├── ruler.svg │ │ ├── stand.svg │ │ ├── telescope.svg │ │ ├── trophy-01.svg │ │ └── trophy-02.svg │ ├── Files │ │ ├── box.svg │ │ ├── clipboard-attachment.svg │ │ ├── clipboard-check.svg │ │ ├── clipboard-download.svg │ │ ├── clipboard-minus.svg │ │ ├── clipboard-plus.svg │ │ ├── clipboard-x.svg │ │ ├── clipboard.svg │ │ ├── file-01.svg │ │ ├── file-02.svg │ │ ├── file-03.svg │ │ ├── file-04.svg │ │ ├── file-05.svg │ │ ├── file-06.svg │ │ ├── file-07.svg │ │ ├── file-attachment-01.svg │ │ ├── file-attachment-02.svg │ │ ├── file-attachment-03.svg │ │ ├── file-attachment-04.svg │ │ ├── file-attachment-05.svg │ │ ├── file-check-01.svg │ │ ├── file-check-02.svg │ │ ├── file-check-03.svg │ │ ├── file-download-01.svg │ │ ├── file-download-02.svg │ │ ├── file-download-03.svg │ │ ├── file-heart-01.svg │ │ ├── file-heart-02.svg │ │ ├── file-heart-03.svg │ │ ├── file-minus-01.svg │ │ ├── file-minus-02.svg │ │ ├── file-minus-03.svg │ │ ├── file-plus-01.svg │ │ ├── file-plus-02.svg │ │ ├── file-plus-03.svg │ │ ├── file-question-01.svg │ │ ├── file-question-02.svg │ │ ├── file-question-03.svg │ │ ├── file-search-01.svg │ │ ├── file-search-02.svg │ │ ├── file-search-03.svg │ │ ├── file-x-01.svg │ │ ├── file-x-02.svg │ │ ├── file-x-03.svg │ │ ├── folder-check.svg │ │ ├── folder-closed.svg │ │ ├── folder-download.svg │ │ ├── folder-lock.svg │ │ ├── folder-minus.svg │ │ ├── folder-plus.svg │ │ ├── folder-question.svg │ │ ├── folder-search.svg │ │ ├── folder-x.svg │ │ ├── folder.svg │ │ ├── paperclip.svg │ │ ├── sticker-circle.svg │ │ └── sticker-square.svg │ ├── Finance & eCommerce │ │ ├── bank-note-01.svg │ │ ├── bank-note-02.svg │ │ ├── bank-note-03.svg │ │ ├── bank.svg │ │ ├── coins-01.svg │ │ ├── coins-02.svg │ │ ├── coins-03.svg │ │ ├── coins-04.svg │ │ ├── coins-hand.svg │ │ ├── coins-stacked-01.svg │ │ ├── coins-stacked-02.svg │ │ ├── coins-stacked-03.svg │ │ ├── coins-stacked-04.svg │ │ ├── coins-swap-01.svg │ │ ├── coins-swap-02.svg │ │ ├── credit-card-01.svg │ │ ├── credit-card-02.svg │ │ ├── credit-card-check.svg │ │ ├── credit-card-down.svg │ │ ├── credit-card-download.svg │ │ ├── credit-card-edit.svg │ │ ├── credit-card-lock.svg │ │ ├── credit-card-minus.svg │ │ ├── credit-card-plus.svg │ │ ├── credit-card-refresh.svg │ │ ├── credit-card-search.svg │ │ ├── credit-card-shield.svg │ │ ├── credit-card-up.svg │ │ ├── credit-card-upload.svg │ │ ├── credit-card-x.svg │ │ ├── cryptocurrency-01.svg │ │ ├── cryptocurrency-02.svg │ │ ├── cryptocurrency-03.svg │ │ ├── cryptocurrency-04.svg │ │ ├── currency-bitcoin-circle.svg │ │ ├── currency-bitcoin.svg │ │ ├── currency-dollar-circle.svg │ │ ├── currency-dollar.svg │ │ ├── currency-ethereum-circle.svg │ │ ├── currency-ethereum.svg │ │ ├── currency-euro-circle.svg │ │ ├── currency-euro.svg │ │ ├── currency-pound-circle.svg │ │ ├── currency-pound.svg │ │ ├── currency-ruble-circle.svg │ │ ├── currency-ruble.svg │ │ ├── currency-rupee-circle.svg │ │ ├── currency-rupee.svg │ │ ├── currency-yen-circle.svg │ │ ├── currency-yen.svg │ │ ├── diamond-01.svg │ │ ├── diamond-02.svg │ │ ├── gift-01.svg │ │ ├── gift-02.svg │ │ ├── piggy-bank-01.svg │ │ ├── piggy-bank-02.svg │ │ ├── receipt-check.svg │ │ ├── receipt.svg │ │ ├── safe.svg │ │ ├── sale-01.svg │ │ ├── sale-02.svg │ │ ├── sale-03.svg │ │ ├── sale-04.svg │ │ ├── scales-01.svg │ │ ├── scales-02.svg │ │ ├── shopping-bag-01.svg │ │ ├── shopping-bag-02.svg │ │ ├── shopping-bag-03.svg │ │ ├── shopping-cart-01.svg │ │ ├── shopping-cart-02.svg │ │ ├── shopping-cart-03.svg │ │ ├── tag-01.svg │ │ ├── tag-02.svg │ │ ├── tag-03.svg │ │ ├── wallet-01.svg │ │ ├── wallet-02.svg │ │ ├── wallet-03.svg │ │ ├── wallet-04.svg │ │ └── wallet-05.svg │ ├── General │ │ ├── activity-heart.svg │ │ ├── activity.svg │ │ ├── anchor.svg │ │ ├── archive.svg │ │ ├── asterisk-01.svg │ │ ├── asterisk-02.svg │ │ ├── at-sign.svg │ │ ├── bookmark-add.svg │ │ ├── bookmark-check.svg │ │ ├── bookmark-minus.svg │ │ ├── bookmark-x.svg │ │ ├── bookmark.svg │ │ ├── building-01.svg │ │ ├── building-02.svg │ │ ├── building-03.svg │ │ ├── building-04.svg │ │ ├── building-05.svg │ │ ├── building-06.svg │ │ ├── building-07.svg │ │ ├── building-08.svg │ │ ├── check-circle-broken.svg │ │ ├── check-circle.svg │ │ ├── check-done-01.svg │ │ ├── check-done-02.svg │ │ ├── check-heart.svg │ │ ├── check-square-broken.svg │ │ ├── check-square.svg │ │ ├── check-verified-01.svg │ │ ├── check-verified-02.svg │ │ ├── check-verified-03.svg │ │ ├── check.svg │ │ ├── cloud-blank-01.svg │ │ ├── cloud-blank-02.svg │ │ ├── copy-01.svg │ │ ├── copy-02.svg │ │ ├── copy-03.svg │ │ ├── copy-04.svg │ │ ├── copy-05.svg │ │ ├── copy-06.svg │ │ ├── copy-07.svg │ │ ├── divide-01.svg │ │ ├── divide-02.svg │ │ ├── divide-03.svg │ │ ├── dots-grid.svg │ │ ├── dots-horizontal.svg │ │ ├── dots-vertical.svg │ │ ├── download-01-alt.svg │ │ ├── download-01.svg │ │ ├── download-02.svg │ │ ├── download-03.svg │ │ ├── download-04.svg │ │ ├── download-cloud-01.svg │ │ ├── download-cloud-02.svg │ │ ├── edit-01.svg │ │ ├── edit-02.svg │ │ ├── edit-03.svg │ │ ├── edit-04.svg │ │ ├── edit-05.svg │ │ ├── equal-not.svg │ │ ├── equal.svg │ │ ├── eye-off.svg │ │ ├── eye.svg │ │ ├── filter-funnel-01.svg │ │ ├── filter-funnel-02.svg │ │ ├── filter-lines.svg │ │ ├── google-chrome.svg │ │ ├── hash-01.svg │ │ ├── hash-02.svg │ │ ├── heart-circle.svg │ │ ├── heart-hand.svg │ │ ├── heart-hexagon.svg │ │ ├── heart-octagon.svg │ │ ├── heart-rounded.svg │ │ ├── heart-square.svg │ │ ├── heart.svg │ │ ├── hearts.svg │ │ ├── help-circle.svg │ │ ├── help-hexagon.svg │ │ ├── help-octagon.svg │ │ ├── help-square.svg │ │ ├── home-01.svg │ │ ├── home-02.svg │ │ ├── home-03.svg │ │ ├── home-04.svg │ │ ├── home-05.svg │ │ ├── home-line.svg │ │ ├── home-smile.svg │ │ ├── info-circle.svg │ │ ├── info-hexagon.svg │ │ ├── info-octagon.svg │ │ ├── info-square.svg │ │ ├── life-buoy-01.svg │ │ ├── life-buoy-02.svg │ │ ├── link-01.svg │ │ ├── link-02.svg │ │ ├── link-03.svg │ │ ├── link-04.svg │ │ ├── link-05.svg │ │ ├── link-broken-01.svg │ │ ├── link-broken-02.svg │ │ ├── link-external-01-alt.svg │ │ ├── link-external-01.svg │ │ ├── link-external-02.svg │ │ ├── loading-01.svg │ │ ├── loading-02.svg │ │ ├── loading-03.svg │ │ ├── log-in-01-alt.svg │ │ ├── log-in-01.svg │ │ ├── log-in-02-alt.svg │ │ ├── log-in-02.svg │ │ ├── log-in-03-alt.svg │ │ ├── log-in-03.svg │ │ ├── log-in-04-alt.svg │ │ ├── log-in-04.svg │ │ ├── log-out-01-alt.svg │ │ ├── log-out-01.svg │ │ ├── log-out-02-alt.svg │ │ ├── log-out-02.svg │ │ ├── log-out-03-alt.svg │ │ ├── log-out-03.svg │ │ ├── log-out-04-alt.svg │ │ ├── log-out-04.svg │ │ ├── medical-circle.svg │ │ ├── medical-cross.svg │ │ ├── medical-square.svg │ │ ├── menu-01.svg │ │ ├── menu-02.svg │ │ ├── menu-03.svg │ │ ├── menu-04.svg │ │ ├── menu-05.svg │ │ ├── minus-circle.svg │ │ ├── minus-square.svg │ │ ├── minus.svg │ │ ├── percent-01.svg │ │ ├── percent-02.svg │ │ ├── percent-03.svg │ │ ├── pin-01.svg │ │ ├── pin-02.svg │ │ ├── placeholder.svg │ │ ├── plus-circle.svg │ │ ├── plus-square.svg │ │ ├── plus.svg │ │ ├── save-01.svg │ │ ├── save-02.svg │ │ ├── save-03.svg │ │ ├── search-lg.svg │ │ ├── search-md.svg │ │ ├── search-refraction.svg │ │ ├── search-sm.svg │ │ ├── settings-01.svg │ │ ├── settings-02.svg │ │ ├── settings-03.svg │ │ ├── settings-04.svg │ │ ├── share-01-alt.svg │ │ ├── share-01.svg │ │ ├── share-02-alt.svg │ │ ├── share-02.svg │ │ ├── share-03.svg │ │ ├── share-04-alt.svg │ │ ├── share-04.svg │ │ ├── share-05.svg │ │ ├── share-06.svg │ │ ├── share-07.svg │ │ ├── slash-circle-01.svg │ │ ├── slash-circle-02.svg │ │ ├── slash-divider.svg │ │ ├── slash-octagon.svg │ │ ├── speedometer-01.svg │ │ ├── speedometer-02.svg │ │ ├── speedometer-03.svg │ │ ├── speedometer-04.svg │ │ ├── target-01.svg │ │ ├── target-02.svg │ │ ├── target-03.svg │ │ ├── target-04.svg │ │ ├── target-05.svg │ │ ├── toggle-01-left.svg │ │ ├── toggle-01-right.svg │ │ ├── toggle-02-left.svg │ │ ├── toggle-02-right.svg │ │ ├── toggle-03-left.svg │ │ ├── toggle-03-right.svg │ │ ├── tool-01.svg │ │ ├── tool-02.svg │ │ ├── translate-01.svg │ │ ├── translate-02.svg │ │ ├── trash-01.svg │ │ ├── trash-02.svg │ │ ├── trash-03.svg │ │ ├── trash-04.svg │ │ ├── upload-01-alt.svg │ │ ├── upload-01.svg │ │ ├── upload-02.svg │ │ ├── upload-03.svg │ │ ├── upload-04.svg │ │ ├── upload-cloud-01.svg │ │ ├── upload-cloud-02.svg │ │ ├── virus.svg │ │ ├── x-circle.svg │ │ ├── x-close.svg │ │ ├── x-square.svg │ │ ├── x.svg │ │ ├── zap-circle.svg │ │ ├── zap-fast.svg │ │ ├── zap-off.svg │ │ ├── zap-square.svg │ │ └── zap.svg │ ├── Images │ │ ├── camera-01.svg │ │ ├── camera-02.svg │ │ ├── camera-03.svg │ │ ├── camera-lens.svg │ │ ├── camera-off.svg │ │ ├── camera-plus.svg │ │ ├── colors.svg │ │ ├── flash-off.svg │ │ ├── flash.svg │ │ ├── image-01.svg │ │ ├── image-02.svg │ │ ├── image-03.svg │ │ ├── image-04.svg │ │ ├── image-05.svg │ │ ├── image-check.svg │ │ ├── image-down.svg │ │ ├── image-left.svg │ │ ├── image-plus.svg │ │ ├── image-right.svg │ │ ├── image-up.svg │ │ ├── image-user-check.svg │ │ ├── image-user-down.svg │ │ ├── image-user-left.svg │ │ ├── image-user-plus.svg │ │ ├── image-user-right.svg │ │ ├── image-user-up.svg │ │ ├── image-user-x.svg │ │ ├── image-user.svg │ │ └── image-x.svg │ ├── Layout │ │ ├── align-bottom-01.svg │ │ ├── align-bottom-02.svg │ │ ├── align-horizontal-centre-01.svg │ │ ├── align-horizontal-centre-02.svg │ │ ├── align-left-01.svg │ │ ├── align-left-02.svg │ │ ├── align-right-01.svg │ │ ├── align-right-02.svg │ │ ├── align-top-arrow-01.svg │ │ ├── align-top-arrow-02.svg │ │ ├── align-vertical-center-01.svg │ │ ├── align-vertical-center-02.svg │ │ ├── columns-02.svg │ │ ├── columns-03.svg │ │ ├── distribute-spacing-horizontal.svg │ │ ├── distribute-spacing-vertical.svg │ │ ├── divider.svg │ │ ├── flex-align-bottom.svg │ │ ├── flex-align-left.svg │ │ ├── flex-align-right.svg │ │ ├── flex-align-top.svg │ │ ├── grid-01.svg │ │ ├── grid-02.svg │ │ ├── grid-03.svg │ │ ├── grid-dots-blank.svg │ │ ├── grid-dots-bottom.svg │ │ ├── grid-dots-horizontal-center.svg │ │ ├── grid-dots-left.svg │ │ ├── grid-dots-outer.svg │ │ ├── grid-dots-right.svg │ │ ├── grid-dots-top.svg │ │ ├── grid-dots-vertical-center.svg │ │ ├── grid.svg │ │ ├── intersect-circle.svg │ │ ├── intersect-square.svg │ │ ├── layer-single.svg │ │ ├── layers-three-01.svg │ │ ├── layers-three-02.svg │ │ ├── layers-two-01.svg │ │ ├── layers-two-02.svg │ │ ├── layout-alt-01.svg │ │ ├── layout-alt-02.svg │ │ ├── layout-alt-03.svg │ │ ├── layout-alt-04.svg │ │ ├── layout-bottom.svg │ │ ├── layout-grid-01.svg │ │ ├── layout-grid-02.svg │ │ ├── layout-left.svg │ │ ├── layout-right.svg │ │ ├── layout-top.svg │ │ ├── list.svg │ │ ├── maximize-01.svg │ │ ├── maximize-02.svg │ │ ├── minimize-01.svg │ │ ├── minimize-02.svg │ │ ├── rows-01.svg │ │ ├── rows-02.svg │ │ ├── rows-03.svg │ │ ├── spacing-height-01.svg │ │ ├── spacing-height-02.svg │ │ ├── spacing-width-01.svg │ │ ├── spacing-width-02.svg │ │ └── table.svg │ ├── Maps & travel │ │ ├── bus.svg │ │ ├── compass-01.svg │ │ ├── compass-02.svg │ │ ├── compass-03.svg │ │ ├── flag-01.svg │ │ ├── flag-02.svg │ │ ├── flag-03.svg │ │ ├── flag-04.svg │ │ ├── flag-05.svg │ │ ├── flag-06.svg │ │ ├── globe-01.svg │ │ ├── globe-02.svg │ │ ├── globe-03.svg │ │ ├── globe-04.svg │ │ ├── globe-05.svg │ │ ├── globe-06.svg │ │ ├── luggage-01.svg │ │ ├── luggage-02.svg │ │ ├── luggage-03.svg │ │ ├── map-01.svg │ │ ├── map-02.svg │ │ ├── mark.svg │ │ ├── marker-pin-01.svg │ │ ├── marker-pin-02.svg │ │ ├── marker-pin-03.svg │ │ ├── marker-pin-04.svg │ │ ├── marker-pin-05.svg │ │ ├── marker-pin-06.svg │ │ ├── navigation-pointer-01.svg │ │ ├── navigation-pointer-02.svg │ │ ├── navigation-pointer-off-01.svg │ │ ├── navigation-pointer-off-02.svg │ │ ├── passport.svg │ │ ├── plane.svg │ │ ├── rocket-01.svg │ │ ├── rocket-02.svg │ │ ├── route.svg │ │ ├── ticket-01.svg │ │ ├── ticket-02.svg │ │ ├── train.svg │ │ ├── tram.svg │ │ ├── truck-01.svg │ │ └── truck-02.svg │ ├── Media & devices │ │ ├── airplay.svg │ │ ├── airpods.svg │ │ ├── battery-charging-01.svg │ │ ├── battery-charging-02.svg │ │ ├── battery-empty.svg │ │ ├── battery-full.svg │ │ ├── battery-low.svg │ │ ├── battery-mid.svg │ │ ├── bluetooth-connect.svg │ │ ├── bluetooth-on.svg │ │ ├── bluetooth-signal.svg │ │ ├── bluetooth.svg │ │ ├── chrome-cast.svg │ │ ├── clapperboard.svg │ │ ├── disc-01.svg │ │ ├── disc-02.svg │ │ ├── fast-backward.svg │ │ ├── fast-forward.svg │ │ ├── film-01.svg │ │ ├── film-02.svg │ │ ├── film-03.svg │ │ ├── gaming-pad-01.svg │ │ ├── gaming-pad-02.svg │ │ ├── hard-drive.svg │ │ ├── headphones-01.svg │ │ ├── headphones-02.svg │ │ ├── keyboard-01.svg │ │ ├── keyboard-02.svg │ │ ├── laptop-01.svg │ │ ├── laptop-02.svg │ │ ├── lightbulb-01.svg │ │ ├── lightbulb-02.svg │ │ ├── lightbulb-03.svg │ │ ├── lightbulb-04.svg │ │ ├── lightbulb-05.svg │ │ ├── microphone-01.svg │ │ ├── microphone-02.svg │ │ ├── microphone-off-01.svg │ │ ├── microphone-off-02.svg │ │ ├── modem-01.svg │ │ ├── modem-02.svg │ │ ├── monitor-01.svg │ │ ├── monitor-02.svg │ │ ├── monitor-03.svg │ │ ├── monitor-04.svg │ │ ├── monitor-05.svg │ │ ├── mouse.svg │ │ ├── music-note-01.svg │ │ ├── music-note-02.svg │ │ ├── music.svg │ │ ├── pause-circle.svg │ │ ├── pause-square.svg │ │ ├── phone-01.svg │ │ ├── phone-02.svg │ │ ├── play-circle.svg │ │ ├── play-square.svg │ │ ├── play.svg │ │ ├── podcast.svg │ │ ├── power-01.svg │ │ ├── power-02.svg │ │ ├── power-03.svg │ │ ├── printer.svg │ │ ├── recording-01.svg │ │ ├── recording-02.svg │ │ ├── recording-03.svg │ │ ├── repeat-01.svg │ │ ├── repeat-02.svg │ │ ├── repeat-03.svg │ │ ├── repeat-04.svg │ │ ├── rss-01.svg │ │ ├── rss-02.svg │ │ ├── shuffle-01.svg │ │ ├── shuffle-02.svg │ │ ├── signal-01.svg │ │ ├── signal-02.svg │ │ ├── signal-03.svg │ │ ├── simcard.svg │ │ ├── skip-back.svg │ │ ├── skip-forward.svg │ │ ├── sliders-01.svg │ │ ├── sliders-02.svg │ │ ├── sliders-03.svg │ │ ├── sliders-04.svg │ │ ├── speaker-01.svg │ │ ├── speaker-02.svg │ │ ├── speaker-03.svg │ │ ├── stop-circle.svg │ │ ├── stop-square.svg │ │ ├── stop.svg │ │ ├── tablet-01.svg │ │ ├── tablet-02.svg │ │ ├── tv-01.svg │ │ ├── tv-02.svg │ │ ├── tv-03.svg │ │ ├── usb-flash-drive.svg │ │ ├── video-recorder-off.svg │ │ ├── video-recorder.svg │ │ ├── voicemail.svg │ │ ├── volume-max.svg │ │ ├── volume-min.svg │ │ ├── volume-minus.svg │ │ ├── volume-plus.svg │ │ ├── volume-x.svg │ │ ├── webcam-01.svg │ │ ├── webcam-02.svg │ │ ├── wifi-off.svg │ │ ├── wifi.svg │ │ └── youtube.svg │ ├── Security │ │ ├── face-id-square.svg │ │ ├── face-id.svg │ │ ├── file-lock-01.svg │ │ ├── file-lock-02.svg │ │ ├── file-lock-03.svg │ │ ├── file-shield-01.svg │ │ ├── file-shield-02.svg │ │ ├── file-shield-03.svg │ │ ├── fingerprint-01.svg │ │ ├── fingerprint-02.svg │ │ ├── fingerprint-03.svg │ │ ├── fingerprint-04.svg │ │ ├── folder-shield.svg │ │ ├── key-01.svg │ │ ├── key-02.svg │ │ ├── lock-01.svg │ │ ├── lock-02.svg │ │ ├── lock-03.svg │ │ ├── lock-04.svg │ │ ├── lock-keyhole-circle.svg │ │ ├── lock-keyhole-square.svg │ │ ├── lock-unlocked-01.svg │ │ ├── lock-unlocked-02.svg │ │ ├── lock-unlocked-03.svg │ │ ├── lock-unlocked-04.svg │ │ ├── passcode-lock.svg │ │ ├── passcode.svg │ │ ├── scan.svg │ │ ├── shield-01.svg │ │ ├── shield-02.svg │ │ ├── shield-03.svg │ │ ├── shield-dollar.svg │ │ ├── shield-off.svg │ │ ├── shield-plus.svg │ │ ├── shield-tick.svg │ │ └── shield-zap.svg │ ├── Shapes │ │ ├── circle.svg │ │ ├── cube-01.svg │ │ ├── cube-02.svg │ │ ├── cube-03.svg │ │ ├── cube-04.svg │ │ ├── cube-outline.svg │ │ ├── dice-1.svg │ │ ├── dice-2.svg │ │ ├── dice-3.svg │ │ ├── dice-4.svg │ │ ├── dice-5.svg │ │ ├── dice-6.svg │ │ ├── hexagon-01.svg │ │ ├── hexagon-02.svg │ │ ├── octagon.svg │ │ ├── pentagon.svg │ │ ├── square.svg │ │ ├── star-01.svg │ │ ├── star-02.svg │ │ ├── star-03.svg │ │ ├── star-04.svg │ │ ├── star-05.svg │ │ ├── star-06.svg │ │ ├── star-07.svg │ │ └── triangle.svg │ ├── Time │ │ ├── alarm-clock-check.svg │ │ ├── alarm-clock-minus.svg │ │ ├── alarm-clock-off.svg │ │ ├── alarm-clock-plus.svg │ │ ├── alarm-clock.svg │ │ ├── calendar-check-01.svg │ │ ├── calendar-check-02.svg │ │ ├── calendar-date.svg │ │ ├── calendar-heart-01.svg │ │ ├── calendar-heart-02.svg │ │ ├── calendar-minus-01.svg │ │ ├── calendar-minus-02.svg │ │ ├── calendar-plus-01.svg │ │ ├── calendar-plus-02.svg │ │ ├── calendar.svg │ │ ├── clock-check.svg │ │ ├── clock-fast-forward.svg │ │ ├── clock-plus.svg │ │ ├── clock-refresh.svg │ │ ├── clock-rewind.svg │ │ ├── clock-snooze.svg │ │ ├── clock-stopwatch.svg │ │ ├── clock.svg │ │ ├── hourglass-01.svg │ │ ├── hourglass-02.svg │ │ ├── hourglass-03.svg │ │ ├── watch-circle.svg │ │ └── watch-square.svg │ ├── Users │ │ ├── face-content.svg │ │ ├── face-frown.svg │ │ ├── face-happy.svg │ │ ├── face-neutral.svg │ │ ├── face-sad.svg │ │ ├── face-smile.svg │ │ ├── face-wink.svg │ │ ├── user-01.svg │ │ ├── user-02.svg │ │ ├── user-03.svg │ │ ├── user-check-01.svg │ │ ├── user-check-02.svg │ │ ├── user-circle.svg │ │ ├── user-down-01.svg │ │ ├── user-down-02.svg │ │ ├── user-edit.svg │ │ ├── user-left-01.svg │ │ ├── user-left-02.svg │ │ ├── user-minus-01.svg │ │ ├── user-minus-02.svg │ │ ├── user-plus-01.svg │ │ ├── user-plus-02.svg │ │ ├── user-right-01.svg │ │ ├── user-right-02.svg │ │ ├── user-square.svg │ │ ├── user-up-01.svg │ │ ├── user-up-02.svg │ │ ├── user-x-01.svg │ │ ├── user-x-02.svg │ │ ├── users-01.svg │ │ ├── users-02.svg │ │ ├── users-03.svg │ │ ├── users-check.svg │ │ ├── users-down.svg │ │ ├── users-edit.svg │ │ ├── users-left.svg │ │ ├── users-minus.svg │ │ ├── users-plus.svg │ │ ├── users-right.svg │ │ ├── users-up.svg │ │ └── users-x.svg │ └── Weather │ │ ├── cloud-01.svg │ │ ├── cloud-02.svg │ │ ├── cloud-03.svg │ │ ├── cloud-lightning.svg │ │ ├── cloud-moon.svg │ │ ├── cloud-off.svg │ │ ├── cloud-raining-01.svg │ │ ├── cloud-raining-02.svg │ │ ├── cloud-raining-03.svg │ │ ├── cloud-raining-04.svg │ │ ├── cloud-raining-05.svg │ │ ├── cloud-raining-06.svg │ │ ├── cloud-snowing-01.svg │ │ ├── cloud-snowing-02.svg │ │ ├── cloud-sun-01.svg │ │ ├── cloud-sun-02.svg │ │ ├── cloud-sun-03.svg │ │ ├── droplets-01.svg │ │ ├── droplets-02.svg │ │ ├── droplets-03.svg │ │ ├── hurricane-01.svg │ │ ├── hurricane-02.svg │ │ ├── hurricane-03.svg │ │ ├── lightning-01.svg │ │ ├── lightning-02.svg │ │ ├── moon-01.svg │ │ ├── moon-02.svg │ │ ├── moon-eclipse.svg │ │ ├── moon-star.svg │ │ ├── snowflake-01.svg │ │ ├── snowflake-02.svg │ │ ├── stars-01.svg │ │ ├── stars-02.svg │ │ ├── stars-03.svg │ │ ├── sun-setting-01.svg │ │ ├── sun-setting-02.svg │ │ ├── sun-setting-03.svg │ │ ├── sun.svg │ │ ├── sunrise.svg │ │ ├── sunset.svg │ │ ├── thermometer-01.svg │ │ ├── thermometer-02.svg │ │ ├── thermometer-03.svg │ │ ├── thermometer-cold.svg │ │ ├── thermometer-warm.svg │ │ ├── umbrella-01.svg │ │ ├── umbrella-02.svg │ │ ├── umbrella-03.svg │ │ ├── waves.svg │ │ ├── wind-01.svg │ │ ├── wind-02.svg │ │ └── wind-03.svg ├── StemstrIcon.js ├── collection.svg ├── electric-squirrel.svg ├── premium.svg ├── remix.svg ├── repost.svg ├── shaka.svg ├── stem.svg └── verified.svg ├── jest.config.js ├── jest.setup.ts ├── ndk ├── NDKEventProvider.tsx ├── NDKProvider.tsx ├── NostrNotificationsProvider.tsx ├── hooks │ ├── useContactList.tsx │ ├── useEventReplies.tsx │ ├── useFeed.tsx │ ├── useFeedWithEose.ts │ ├── useFollowers.tsx │ ├── useFooterHeight.tsx │ ├── useHomeFeedPubkeys.ts │ ├── useLoadCache.tsx │ ├── useNip05.tsx │ ├── usePreloadProfileCache.ts │ ├── useProfileFeed.tsx │ ├── useProfilePicSrc.tsx │ ├── useThread.tsx │ ├── useUser.tsx │ └── useUsers.tsx ├── inMemoryCacheAdapter.ts ├── types │ └── note.tsx └── utils.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── discover.tsx ├── index.tsx ├── login.tsx ├── notifications.tsx ├── profile.js ├── settings │ ├── index.tsx │ └── nsec.tsx ├── signup.js ├── tag │ └── [tag].tsx ├── thread │ └── [noteId].tsx └── user │ ├── [hexOrNpub] │ ├── contacts │ │ └── [tab].tsx │ └── index.tsx │ └── edit.tsx ├── public ├── .well-known │ └── nostr.json ├── apple-touch-icon.png ├── default-banner.png ├── favicon-512x512.png ├── favicon.svg ├── fonts │ ├── OnestBlack1602-hint.woff │ ├── OnestBold1602-hint.woff │ ├── OnestExtraBold1602-hint.woff │ ├── OnestLight1602-hint.woff │ ├── OnestMedium1602-hint.woff │ ├── OnestRegular1602-hint.woff │ └── OnestThin1602-hint.woff ├── img │ ├── check-success.svg │ ├── copied-to-clipboard.svg │ ├── drag-stem.svg │ └── subscription-hero.png ├── logo.svg └── manifest.json ├── store ├── Auth.ts ├── Events.ts ├── Nip05.ts ├── Notes.ts ├── Relays.ts ├── SearchHistory.ts ├── Sheets.ts ├── Store.ts ├── UserPreferences.ts └── Users.ts ├── theme ├── CustomFonts.tsx └── Theme.tsx ├── tsconfig.json ├── utils ├── common.ts ├── hoc │ └── withStopClickPropagation.tsx ├── lightning.ts ├── media.ts └── userPreferences.ts ├── webln-types.d.ts └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_STEMSTR_RELAY= 2 | NEXT_PUBLIC_STEMSTR_API= 3 | NEXT_PUBLIC_MAX_UPLOAD_DURATION=300 # in seconds -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /components/ContactsTray/FollowersPanel.tsx: -------------------------------------------------------------------------------- 1 | import { Tabs } from "@mantine/core"; 2 | 3 | export default function FollowersPanel() { 4 | return ( 5 | 6 | Coming Soon™️ 7 | 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /components/ContactsTray/RelaysPanel.tsx: -------------------------------------------------------------------------------- 1 | import { Tabs } from "@mantine/core"; 2 | 3 | export default function RelaysPanel() { 4 | return ( 5 | 6 | Relays 7 | 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /components/Drawer/DrawerHandle.tsx: -------------------------------------------------------------------------------- 1 | import { Box, Flex, type FlexProps } from "@mantine/core"; 2 | 3 | const DrawerHandle = (props: FlexProps) => ( 4 | 5 | 6 | 7 | ); 8 | 9 | export default DrawerHandle; 10 | -------------------------------------------------------------------------------- /components/Feed/Feed.styles.js: -------------------------------------------------------------------------------- 1 | import { createStyles } from "@mantine/core"; 2 | 3 | const useStyles = createStyles((theme, _params, getRef) => ({ 4 | feed: { 5 | "*": { 6 | msOverflowStyle: "none", 7 | scrollbarWidth: "none", 8 | "&::-webkit-scrollbar": { 9 | display: "none", 10 | }, 11 | }, 12 | }, 13 | })); 14 | 15 | export default useStyles; 16 | -------------------------------------------------------------------------------- /components/Feed/MaxWidthContainer.tsx: -------------------------------------------------------------------------------- 1 | import { type PropsWithChildren } from "react"; 2 | import { Box, DefaultProps } from "@mantine/core"; 3 | 4 | export function MaxWidthContainer({ 5 | children, 6 | ...rest 7 | }: PropsWithChildren) { 8 | return ( 9 | 10 | {children} 11 | 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /components/Feed/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Feed"; 2 | export * from "./MaxWidthContainer"; 3 | -------------------------------------------------------------------------------- /components/FieldGroups/AboutFieldGroup.js: -------------------------------------------------------------------------------- 1 | import AboutField from "../Fields/AboutField/AboutField"; 2 | import FieldGroup from "./FieldGroup"; 3 | 4 | export default function AboutFieldGroup(props) { 5 | return ( 6 | 7 | 8 | 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /components/FieldGroups/CommentFieldGroup.js: -------------------------------------------------------------------------------- 1 | import FieldGroup from "./FieldGroup"; 2 | import { CommentIcon } from "../../icons/StemstrIcon"; 3 | import CommentField from "../Fields/CommentField/CommentField"; 4 | 5 | export default function CommentFieldGroup(props) { 6 | return ( 7 | 8 | 9 | 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /components/FieldGroups/DisplayNameFieldGroup.js: -------------------------------------------------------------------------------- 1 | import DisplayNameField from "../Fields/DisplayNameField/DisplayNameField"; 2 | import FieldGroup from "./FieldGroup"; 3 | 4 | export default function DisplayNameFieldGroup(props) { 5 | return ( 6 | 7 | 8 | 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /components/FieldGroups/NameFieldGroup.js: -------------------------------------------------------------------------------- 1 | import NameField from "../Fields/NameField/NameField"; 2 | import FieldGroup from "./FieldGroup"; 3 | 4 | export default function NameFieldGroup(props) { 5 | return ( 6 | 7 | 8 | 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /components/FieldGroups/TagsFieldGroup.js: -------------------------------------------------------------------------------- 1 | import FieldGroup from "./FieldGroup"; 2 | import { TagsIcon } from "../../icons/StemstrIcon"; 3 | import TagsField from "../Fields/TagsField/TagsField"; 4 | 5 | export default function TagsFieldGroup(props) { 6 | return ( 7 | 8 | 9 | 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /components/NoteContent/NoteContent.styles.ts: -------------------------------------------------------------------------------- 1 | import { createStyles } from "@mantine/core"; 2 | 3 | const useStyles = createStyles((theme) => ({ 4 | anchor: { 5 | color: theme.colors.purple[4], 6 | textDecoration: "none", 7 | "&:hover": { 8 | textDecoration: "underline", 9 | }, 10 | }, 11 | })); 12 | 13 | export default useStyles; 14 | -------------------------------------------------------------------------------- /components/Settings/Settings.styles.js: -------------------------------------------------------------------------------- 1 | import { createStyles } from "@mantine/core"; 2 | 3 | const useStyles = createStyles((theme, _params, getRef) => ({ 4 | settingsItem: { 5 | borderWidth: 1, 6 | borderStyle: "solid", 7 | borderColor: theme.colors.gray[4], 8 | padding: theme.spacing.md, 9 | borderRadius: 12, 10 | width: "100%", 11 | }, 12 | })); 13 | 14 | export default useStyles; 15 | -------------------------------------------------------------------------------- /components/Welcome/Welcome.story.tsx: -------------------------------------------------------------------------------- 1 | import { Welcome } from './Welcome'; 2 | 3 | export default { 4 | title: 'Welcome', 5 | }; 6 | 7 | export const Usage = () => ; 8 | -------------------------------------------------------------------------------- /components/Welcome/Welcome.test.tsx: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import { Welcome } from './Welcome'; 3 | 4 | describe('Welcome component', () => { 5 | it('has correct Next.js theming section link', () => { 6 | render(); 7 | expect(screen.getByText('this guide')).toHaveAttribute( 8 | 'href', 9 | 'https://mantine.dev/guides/next/' 10 | ); 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /components/ZapWizard/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ZapWizard"; 2 | export * from "./ZapWizardProvider"; 3 | -------------------------------------------------------------------------------- /constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nostr"; 2 | -------------------------------------------------------------------------------- /constants/styles.ts: -------------------------------------------------------------------------------- 1 | export const PWA_BOTTOM_BUFFER = 32; 2 | -------------------------------------------------------------------------------- /enums/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./routes"; 2 | -------------------------------------------------------------------------------- /hooks/useCurrentUser.tsx: -------------------------------------------------------------------------------- 1 | import { useSelector } from "react-redux"; 2 | import { AppState } from "../store/Store"; 3 | import { useUser } from "../ndk/hooks/useUser"; 4 | 5 | export default function useCurrentUser() { 6 | const authState = useSelector((state: AppState) => state.auth); 7 | 8 | return useUser(authState.pk); 9 | } 10 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-narrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrows-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrows-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrows-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/arrows-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-down-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-left-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-right-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-selector-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-selector-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-up-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/expand-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/expand-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/infinity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/switch-horizontal-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/switch-horizontal-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/switch-vertical-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Arrows/switch-vertical-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/bar-chart-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/bar-chart-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/bar-chart-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/bar-chart-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/bar-chart-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/bar-chart-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/trend-down-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Charts/trend-up-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Development/code-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Development/code-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Development/puzzle-piece-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Development/terminal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/bold-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/code-snippet-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/code-snippet-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/framer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/heading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/heading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/italic-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/italic-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/letter-spacing-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Editor/pilcrow-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Finance & eCommerce/currency-rupee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/asterisk-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/download-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/equal-not.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/equal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/filter-lines.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/hash-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/hash-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/menu-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/menu-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/menu-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/menu-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/menu-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/slash-divider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/upload-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/x-close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/x-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/General/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Layout/align-bottom-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Layout/align-left-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Layout/align-right-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Layout/align-top-arrow-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Layout/maximize-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Layout/minimize-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Layout/spacing-width-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Maps & travel/map-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Media & devices/bluetooth-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Media & devices/recording-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Media & devices/recording-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Media & devices/tv-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Shapes/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duocolor icons/Weather/hurricane-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-narrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrows-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrows-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrows-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/arrows-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-down-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-left-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-right-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-selector-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-selector-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-up-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-left-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-left-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-right-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-right-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/corner-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/expand-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/expand-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/expand-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/expand-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/flip-backward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/flip-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/refresh-ccw-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/refresh-cw-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/reverse-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/reverse-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/switch-horizontal-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/switch-horizontal-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/switch-vertical-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Arrows/switch-vertical-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-08.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/bar-chart-09.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/trend-down-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Charts/trend-up-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Development/code-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Development/code-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Development/terminal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/bold-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/code-snippet-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/code-snippet-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/framer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/heading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/heading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/italic-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/italic-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/letter-spacing-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/magic-wand-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/paragraph-spacing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/pilcrow-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/pilcrow-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/reflect-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/strikethrough-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Editor/underline-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Finance & eCommerce/currency-euro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Finance & eCommerce/currency-pound.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Finance & eCommerce/currency-ruble.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Finance & eCommerce/currency-rupee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Finance & eCommerce/currency-yen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/asterisk-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/asterisk-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/download-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/equal-not.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/equal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/filter-lines.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/hash-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/hash-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/link-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/link-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/loading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/loading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/menu-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/menu-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/menu-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/menu-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/menu-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/slash-divider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/upload-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/x-close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/General/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/align-bottom-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/align-horizontal-centre-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/align-left-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/align-right-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/align-top-arrow-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/align-vertical-center-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/maximize-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/minimize-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/spacing-height-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/spacing-height-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/spacing-width-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Layout/spacing-width-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Maps & travel/map-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Media & devices/bluetooth-connect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Media & devices/bluetooth-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Media & devices/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Duotone icons/Media & devices/recording-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Media & devices/recording-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Media & devices/shuffle-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Media & devices/sliders-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Weather/hurricane-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Duotone icons/Weather/snowflake-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Alerts & feedback/alert-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-circle-broken-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-circle-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-circle-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-circle-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-circle-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-narrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrows-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrows-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrows-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/arrows-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-down-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-left-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-right-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-selector-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-selector-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-up-double.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-left-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-left-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-right-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-right-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/corner-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/expand-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/expand-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/expand-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/expand-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/flip-backward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/flip-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/infinity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/refresh-ccw-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/refresh-cw-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/reverse-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/reverse-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/switch-horizontal-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/switch-horizontal-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/switch-vertical-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Arrows/switch-vertical-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-08.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-09.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-circle-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-circle-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/bar-chart-circle-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/trend-down-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Charts/trend-up-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/code-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/code-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/code-circle-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/code-circle-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/code-circle-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/git-commit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/puzzle-piece-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/terminal-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Development/terminal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/bold-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/bold-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/code-snippet-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/code-snippet-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/cursor-click-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/framer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/heading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/heading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/italic-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/italic-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/letter-spacing-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/magic-wand-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/paragraph-spacing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/pilcrow-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/pilcrow-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/reflect-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/strikethrough-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/underline-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/underline-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Editor/zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Finance & eCommerce/currency-ethereum.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Finance & eCommerce/currency-euro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Finance & eCommerce/currency-pound.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Finance & eCommerce/currency-ruble.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Finance & eCommerce/currency-rupee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Finance & eCommerce/currency-yen-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Finance & eCommerce/currency-yen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/asterisk-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/asterisk-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/check-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/download-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/download-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/equal-not.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/equal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/filter-lines.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/hash-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/hash-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/info-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/link-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/link-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/loading-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/loading-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/log-in-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/log-out-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/menu-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/menu-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/menu-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/menu-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/menu-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/plus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/search-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/search-md.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/search-refraction.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/search-sm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/slash-circle-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/slash-circle-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/slash-divider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/target-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/target-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/toggle-01-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/toggle-01-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/upload-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/upload-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/x-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/x-close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/General/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/align-bottom-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/align-horizontal-centre-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/align-left-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/align-right-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/align-top-arrow-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/align-vertical-center-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/maximize-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/minimize-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/spacing-height-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/spacing-height-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/spacing-width-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Layout/spacing-width-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Maps & travel/flag-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Maps & travel/flag-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Maps & travel/map-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/bluetooth-connect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/bluetooth-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/mouse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/pause-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/power-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/recording-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/recording-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/recording-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/repeat-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/shuffle-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Media & devices/sliders-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Security/lock-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Shapes/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Time/clock-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Time/clock-rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Time/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Weather/hurricane-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Weather/snowflake-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Weather/sun-setting-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Weather/sun-setting-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Weather/sunrise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Line icons/Weather/sunset.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Solid icons/General/cloud-blank-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Solid icons/General/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Solid icons/General/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Solid icons/Shapes/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Solid icons/Weather/cloud-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Solid icons/Weather/cloud-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/Solid icons/Weather/cloud-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /icons/stem.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom/extend-expect"; 2 | -------------------------------------------------------------------------------- /ndk/types/note.tsx: -------------------------------------------------------------------------------- 1 | import { NDKEvent } from "@nostr-dev-kit/ndk"; 2 | 3 | export type NoteTreeNode = { 4 | event: NDKEvent; 5 | children: NoteTreeNode[]; 6 | }; 7 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- 1 | import Document from 'next/document'; 2 | import { createGetInitialProps } from '@mantine/next'; 3 | 4 | const getInitialProps = createGetInitialProps(); 5 | 6 | export default class _Document extends Document { 7 | static getInitialProps = getInitialProps; 8 | } 9 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import Discover from "./discover"; 2 | 3 | export default Discover; 4 | -------------------------------------------------------------------------------- /public/.well-known/nostr.json: -------------------------------------------------------------------------------- 1 | { 2 | "names": { 3 | "_": "82f3b82c7f855340fc1905b20ac50b95d64c700d2b9546507415088e81535425", 4 | "stemstr": "82f3b82c7f855340fc1905b20ac50b95d64c700d2b9546507415088e81535425", 5 | "nothenry": "3335d373e6c1b5bc669b4b1220c08728ea8ce622e5a7cfeeb4c0001d91ded1de", 6 | "justinbieber": "604e96e099936a104883958b040b47672e0f048c98ac793f37ffe4c720279eb2" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/default-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/default-banner.png -------------------------------------------------------------------------------- /public/favicon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/favicon-512x512.png -------------------------------------------------------------------------------- /public/fonts/OnestBlack1602-hint.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/fonts/OnestBlack1602-hint.woff -------------------------------------------------------------------------------- /public/fonts/OnestBold1602-hint.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/fonts/OnestBold1602-hint.woff -------------------------------------------------------------------------------- /public/fonts/OnestExtraBold1602-hint.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/fonts/OnestExtraBold1602-hint.woff -------------------------------------------------------------------------------- /public/fonts/OnestLight1602-hint.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/fonts/OnestLight1602-hint.woff -------------------------------------------------------------------------------- /public/fonts/OnestMedium1602-hint.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/fonts/OnestMedium1602-hint.woff -------------------------------------------------------------------------------- /public/fonts/OnestRegular1602-hint.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/fonts/OnestRegular1602-hint.woff -------------------------------------------------------------------------------- /public/fonts/OnestThin1602-hint.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/fonts/OnestThin1602-hint.woff -------------------------------------------------------------------------------- /public/img/subscription-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemstr/Client/592e436ebf5493b869901a29b71e14850d43e7dd/public/img/subscription-hero.png -------------------------------------------------------------------------------- /utils/lightning.ts: -------------------------------------------------------------------------------- 1 | export const isValidLUD16 = (val: string): boolean => { 2 | return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(val); 3 | }; 4 | -------------------------------------------------------------------------------- /webln-types.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | --------------------------------------------------------------------------------