From 27410cbca0db5a2c220f27c4d6e8547bb539ba0d Mon Sep 17 00:00:00 2001 From: Oliver Lazoroski Date: Sun, 29 Mar 2026 21:38:02 +0200 Subject: [PATCH 1/5] feat(Icons): migrate SDK icons to Phosphor icon set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace 88 icon SVGs with new Phosphor-based assets from the design system export. Rename 55 icon constants to match the new naming convention (e.g. IconTrashBin → IconDelete, IconPaperPlane → IconSend). Old names preserved as `// was:` comments for traceability. Update all imports, SCSS class references, test snapshots, and the vite example app to match the new names. Resolves REACT-936 --- .../ActionsMenu/NotificationPromptDialog.tsx | 20 +- examples/vite/src/AppSettings/AppSettings.tsx | 8 +- src/components/Attachment/Geolocation.tsx | 4 +- .../Attachment/LinkPreview/Card.tsx | 4 +- .../Attachment/LinkPreview/CardAudio.tsx | 4 +- src/components/Attachment/ModalGallery.tsx | 4 +- .../__snapshots__/Card.test.tsx.snap | 100 +-- src/components/Avatar/Avatar.tsx | 4 +- src/components/Badge/Badge.tsx | 4 +- src/components/BaseImage/ImagePlaceholder.tsx | 4 +- src/components/Button/PlayButton.tsx | 4 +- .../ChannelListItemActionButtons.defaults.tsx | 12 +- src/components/ChatView/ChatView.tsx | 14 +- src/components/Dialog/components/Callout.tsx | 4 +- src/components/Dialog/components/Prompt.tsx | 4 +- src/components/Dialog/components/Viewer.tsx | 4 +- .../EmptyStateIndicator.tsx | 6 +- src/components/Form/TextInput.tsx | 10 +- src/components/Gallery/GalleryHeader.tsx | 4 +- .../__snapshots__/Image.test.tsx.snap | 27 +- src/components/Icons/IconGiphy.tsx | 51 +- src/components/Icons/icons.tsx | 828 +++++++++--------- src/components/Icons/styling/Icons.scss | 2 +- src/components/Loading/LoadingIndicator.tsx | 6 +- .../LoadingIndicator.test.tsx.snap | 16 +- .../AudioRecorderRecordingControls.tsx | 6 +- .../AudioRecordingButtonWithNotification.tsx | 4 +- .../AudioRecorder/AudioRecordingPlayback.tsx | 4 +- .../AudioRecorder/AudioRecordingPreview.tsx | 4 +- .../__tests__/AudioRecordingPreview.test.tsx | 4 +- .../__snapshots__/AudioRecorder.test.tsx.snap | 62 +- .../AudioRecorder/styling/AudioRecorder.scss | 2 +- .../MessageAlsoSentInChannelIndicator.tsx | 4 +- .../Message/MessageDeletedBubble.tsx | 4 +- src/components/Message/MessageStatus.tsx | 6 +- .../Message/ReminderNotification.tsx | 6 +- .../__snapshots__/MessageStatus.test.tsx.snap | 2 +- .../__snapshots__/MessageText.test.tsx.snap | 54 +- .../ReminderNotification.test.tsx.snap | 24 +- .../MessageActions.defaults.tsx | 64 +- .../MessageBounce/MessageBouncePrompt.tsx | 4 +- .../styling/MessageBouncePrompt.scss | 2 +- .../AudioAttachmentPreview.tsx | 4 +- .../FileAttachmentPreview.tsx | 4 +- .../GeolocationPreview.tsx | 4 +- .../MediaAttachmentPreview.tsx | 12 +- .../AttachmentSelector/AttachmentSelector.tsx | 20 +- .../AttachmentSelector/CommandsMenu.tsx | 16 +- .../MessageComposer/CommandChip.tsx | 4 +- .../MessageComposer/LinkPreviewList.tsx | 4 +- .../MessageComposerActions.tsx | 4 +- .../MessageComposer/QuotedMessagePreview.tsx | 32 +- src/components/MessageComposer/SendButton.tsx | 4 +- .../MessageComposer/SendToChannelCheckbox.tsx | 4 +- .../MessageComposer/WithDragAndDropUpload.tsx | 4 +- .../AttachmentPreviewList.test.tsx.snap | 4 +- .../styling/AttachmentPreview.scss | 2 +- .../styling/MessageComposer.scss | 4 +- .../styling/QuotedMessagePreview.scss | 4 +- .../UnreadMessagesNotification.tsx | 4 +- .../MessageList/UnreadMessagesSeparator.tsx | 4 +- .../VirtualizedMessageList.test.tsx.snap | 9 +- ...ualizedMessageListComponents.test.tsx.snap | 41 +- .../Modal/CloseButtonOnModalOverlay.tsx | 4 +- src/components/Notifications/Notification.tsx | 18 +- .../PollCreationDialog/OptionFieldSet.tsx | 8 +- .../PollCreationDialogControls.tsx | 4 +- src/components/Reactions/ReactionSelector.tsx | 4 +- src/components/Search/SearchBar/SearchBar.tsx | 6 +- .../SummarizedMessagePreview.tsx | 36 +- src/components/Thread/ThreadHeader.tsx | 4 +- .../ThreadList/ThreadListEmptyPlaceholder.tsx | 4 +- .../ThreadListUnseenThreadsBanner.tsx | 4 +- src/components/VideoPlayer/VideoThumbnail.tsx | 6 +- src/plugins/Emojis/EmojiPicker.tsx | 4 +- 75 files changed, 825 insertions(+), 869 deletions(-) diff --git a/examples/vite/src/AppSettings/ActionsMenu/NotificationPromptDialog.tsx b/examples/vite/src/AppSettings/ActionsMenu/NotificationPromptDialog.tsx index 6d381636a4..d786183651 100644 --- a/examples/vite/src/AppSettings/ActionsMenu/NotificationPromptDialog.tsx +++ b/examples/vite/src/AppSettings/ActionsMenu/NotificationPromptDialog.tsx @@ -8,13 +8,13 @@ import { IconArrowRight, Button, DialogAnchor, - IconArrowRotateRightLeftRepeatRefresh, + IconRefresh, IconArrowUp, - IconCheckmark2, - IconCircleInfoTooltip, + IconCheckmark, + IconInfo, IconClock, - IconCrossMedium, - IconExclamationCircle, + IconXmark, + IconExclamationMark, IconExclamationTriangle, IconPlusSmall, NumericInput, @@ -50,10 +50,10 @@ const clamp = (value: number, min: number, max: number) => { const severityIcons: Partial< Record> > = { - error: IconExclamationCircle, - info: IconCircleInfoTooltip, - loading: IconArrowRotateRightLeftRepeatRefresh, - success: IconCheckmark2, + error: IconExclamationMark, + info: IconInfo, + loading: IconRefresh, + success: IconCheckmark, warning: IconExclamationTriangle, }; @@ -148,7 +148,7 @@ const NotificationChipList = ({ size='xs' variant='secondary' > - + ); diff --git a/examples/vite/src/AppSettings/AppSettings.tsx b/examples/vite/src/AppSettings/AppSettings.tsx index 52cc220c57..ad10b06f63 100644 --- a/examples/vite/src/AppSettings/AppSettings.tsx +++ b/examples/vite/src/AppSettings/AppSettings.tsx @@ -3,8 +3,8 @@ import { ChatViewSelectorButton, GlobalModal, IconBubble3ChatMessage, - IconBellNotification, - IconEmojiSmile, + IconBell, + IconEmoji, IconLightBulbSimple, IconSettingsGear2, } from 'stream-chat-react'; @@ -18,9 +18,9 @@ import { appSettingsStore, useAppSettingsState } from './state'; type TabId = 'notifications' | 'reactions' | 'sidebar'; const tabConfig: { Icon: ComponentType; id: TabId; title: string }[] = [ - { Icon: IconBellNotification, id: 'notifications', title: 'Notifications' }, + { Icon: IconBell, id: 'notifications', title: 'Notifications' }, { Icon: IconBubble3ChatMessage, id: 'sidebar', title: 'Sidebar' }, - { Icon: IconEmojiSmile, id: 'reactions', title: 'Reactions' }, + { Icon: IconEmoji, id: 'reactions', title: 'Reactions' }, ]; const SidebarThemeToggle = ({ iconOnly = true }: { iconOnly?: boolean }) => { diff --git a/src/components/Attachment/Geolocation.tsx b/src/components/Attachment/Geolocation.tsx index adefafdeb1..a10651a727 100644 --- a/src/components/Attachment/Geolocation.tsx +++ b/src/components/Attachment/Geolocation.tsx @@ -5,7 +5,7 @@ import React from 'react'; import type { Coords, SharedLocationResponse } from 'stream-chat'; import { useChatContext, useTranslationContext } from '../../context'; import { ExternalLinkIcon } from './icons'; -import { IconMapPin } from '../Icons'; +import { IconLocation } from '../Icons'; import { Button } from '../Button'; export type GeolocationMapProps = Coords; @@ -105,7 +105,7 @@ const DefaultGeolocationAttachmentMapPlaceholder = ({ className='str-chat__message-attachment-geolocation__placeholder' data-testid='geolocation-attachment-map-placeholder' > - + { className='str-chat__message-attachment-card--source-link' data-testid='card-source-link' > - +
{url}
)} diff --git a/src/components/Attachment/LinkPreview/CardAudio.tsx b/src/components/Attachment/LinkPreview/CardAudio.tsx index 9401ba165b..1e7458d7db 100644 --- a/src/components/Attachment/LinkPreview/CardAudio.tsx +++ b/src/components/Attachment/LinkPreview/CardAudio.tsx @@ -4,7 +4,7 @@ import { useStateStore } from '../../../store'; import { PlayButton } from '../../Button'; import type { AudioProps } from '../Audio'; import React from 'react'; -import { IconChainLink } from '../../Icons'; +import { IconLink } from '../../Icons'; import { SafeAnchor } from '../../SafeAnchor'; import type { CardProps } from './Card'; @@ -26,7 +26,7 @@ const SourceLink = ({ className='str-chat__message-attachment-card--source-link' data-testid='card-source-link' > - +
- +
)} diff --git a/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap b/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap index 0626b4f765..e3329c71d1 100644 --- a/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap +++ b/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap @@ -126,12 +126,12 @@ exports[`Card > (4) should render 'unable-to-display card' if attachment type is data-testid="card-source-link" >
(5) should render 'unable-to-display card' if attachment type is data-testid="card-source-link" >
(6) should render 'unable-to-display card' if attachment type is data-testid="card-source-link" >
(7) should render 'audio with caption using og_scrape_ur…' if data-testid="card-source-link" >
(8) should render 'video with caption using og_scrape_ur…' if data-testid="card-source-link" >
(9) should render 'image with caption using og_scrape_ur…' if data-testid="card-source-link" >
(10) should render 'audio without title' if attachment type is ' data-testid="card-source-link" >
(11) should render 'video without title' if attachment type is ' data-testid="card-source-link" >
(12) should render 'image without title' if attachment type is ' data-testid="card-source-link" >
(13) should render 'audio without title and with caption …' if data-testid="card-source-link" >
(14) should render 'video without title and with caption …' if data-testid="card-source-link" >
(15) should render 'image without title and with caption …' if data-testid="card-source-link" >
(16) should render 'audio widget with title & text in Car…' if data-testid="card-source-link" >
(17) should render 'video widget in header and title & te…' if data-testid="card-source-link" >
(18) should render 'card with title and text only and wit…' if data-testid="card-source-link" >
(19) should render 'image loaded from thumb_url not audio…' if data-testid="card-source-link" >
(20) should render 'image loaded from thumb_url not video…' if data-testid="card-source-link" >
(21) should render 'image loaded from thumb_url' if attachment t data-testid="card-source-link" >
(22) should render 'image loaded from image_url not audio…' if data-testid="card-source-link" >
(23) should render 'image loaded from image_url not video…' if data-testid="card-source-link" >
(24) should render 'image loaded from image_url' if attachment t data-testid="card-source-link" >
(25) should render 'audio widget with image loaded from t…' if data-testid="card-source-link" >
(26) should render 'video widget in header and title & te…' if data-testid="card-source-link" >
(27) should render 'content part with title and text only…' if data-testid="card-source-link" >
(28) should render 'content part with title and text only…' if data-testid="card-source-link" >
)} - {!sizeAwareInitials.length && } + {!sizeAwareInitials.length && } )}
diff --git a/src/components/Badge/Badge.tsx b/src/components/Badge/Badge.tsx index cf748661b3..66fe564f76 100644 --- a/src/components/Badge/Badge.tsx +++ b/src/components/Badge/Badge.tsx @@ -1,6 +1,6 @@ import clsx from 'clsx'; import React, { type ComponentProps } from 'react'; -import { IconExclamation } from '../Icons'; +import { IconExclamationMarkFill } from '../Icons'; export type BadgeVariant = | 'default' @@ -49,6 +49,6 @@ export const ErrorBadge = ({ ...rest }: Omit) => ( - + ); diff --git a/src/components/BaseImage/ImagePlaceholder.tsx b/src/components/BaseImage/ImagePlaceholder.tsx index 700236ea26..af2b99c4d9 100644 --- a/src/components/BaseImage/ImagePlaceholder.tsx +++ b/src/components/BaseImage/ImagePlaceholder.tsx @@ -1,7 +1,7 @@ import React from 'react'; import clsx from 'clsx'; import { useTranslationContext } from '../../context/TranslationContext'; -import { IconImages1Alt } from '../Icons'; +import { IconImage } from '../Icons'; export type ImagePlaceholderProps = { className?: string; @@ -16,7 +16,7 @@ export const ImagePlaceholder = ({ className }: ImagePlaceholderProps) => { data-testid='str-chat__base-image-placeholder' role='img' > - +
); }; diff --git a/src/components/Button/PlayButton.tsx b/src/components/Button/PlayButton.tsx index 4f83c20bde..7090b8b26b 100644 --- a/src/components/Button/PlayButton.tsx +++ b/src/components/Button/PlayButton.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { Button } from './Button'; import type { ComponentProps } from 'react'; import clsx from 'clsx'; -import { IconPause, IconPlaySolid } from '../Icons'; +import { IconPauseFill, IconPlayFill } from '../Icons'; export type PlayButtonProps = ComponentProps<'button'> & { isPlaying: boolean; @@ -18,6 +18,6 @@ export const PlayButton = ({ className, isPlaying, ...props }: PlayButtonProps) variant='secondary' {...props} > - {isPlaying ? : } + {isPlaying ? : } ); diff --git a/src/components/ChannelListItem/ChannelListItemActionButtons.defaults.tsx b/src/components/ChannelListItem/ChannelListItemActionButtons.defaults.tsx index ac4a6769a1..b563b8fd4d 100644 --- a/src/components/ChannelListItem/ChannelListItemActionButtons.defaults.tsx +++ b/src/components/ChannelListItem/ChannelListItemActionButtons.defaults.tsx @@ -12,10 +12,10 @@ import { useChannelListItemContext } from './ChannelListItem'; import { Button } from '../Button'; import { IconArchive, - IconArrowBoxLeft, - IconCircleBanSign, - IconDotGrid1x3Horizontal, + IconLeave, + IconMore, IconMute, + IconNoSign, IconPin, } from '../Icons'; import { useIsChannelMuted } from './hooks/useIsChannelMuted'; @@ -143,7 +143,7 @@ export const defaultChannelActionSet: ChannelActionItem[] = [ size='sm' variant='secondary' > - + ); }), @@ -241,7 +241,7 @@ export const defaultChannelActionSet: ChannelActionItem[] = [ { try { setInProgress(true); @@ -356,7 +356,7 @@ export const defaultChannelActionSet: ChannelActionItem[] = [ { e.stopPropagation(); try { diff --git a/src/components/ChatView/ChatView.tsx b/src/components/ChatView/ChatView.tsx index 0d299fb7db..2abe9aa732 100644 --- a/src/components/ChatView/ChatView.tsx +++ b/src/components/ChatView/ChatView.tsx @@ -11,10 +11,10 @@ import React, { import { Button, type ButtonProps } from '../Button'; import { EmptyStateIndicator as DefaultEmptyStateIndicator } from '../EmptyStateIndicator'; import { - IconBubble2ChatMessage, - IconBubble2Solid, - IconBubbleText6ChatMessage, IconBubbleText6SolidChatMessage, + IconMessageBubble, + IconMessageBubbleFill, + IconThread, } from '../Icons'; import { ThreadProvider } from '../Threads'; import { UnreadCountBadge } from '../Threads/UnreadCountBadge'; @@ -243,9 +243,9 @@ export const ChatViewChannelsSelectorButton = ({ const isActive = activeChatView === 'channels'; return ( { @@ -275,7 +275,7 @@ export const ChatViewThreadsSelectorButton = ({ { @@ -285,7 +285,7 @@ export const ChatViewThreadsSelectorButton = ({ text={t('Threads')} > - {isActive ? : } + {isActive ? : } ); diff --git a/src/components/Dialog/components/Callout.tsx b/src/components/Dialog/components/Callout.tsx index 822a50be9a..55e62f1609 100644 --- a/src/components/Dialog/components/Callout.tsx +++ b/src/components/Dialog/components/Callout.tsx @@ -3,7 +3,7 @@ import { DialogAnchor, type DialogAnchorProps } from '../service'; import { useDialogIsOpen } from '../hooks'; import { Button } from '../../Button'; import clsx from 'clsx'; -import { IconCrossMedium } from '../../Icons'; +import { IconXmark } from '../../Icons'; import { useComponentContext } from '../../../context'; export type CalloutProps = PropsWithChildren< @@ -61,7 +61,7 @@ const DefaultCalloutDialog = ({ children, className, onClose }: CalloutDialogPro size='sm' variant='secondary' > - +
); diff --git a/src/components/Dialog/components/Prompt.tsx b/src/components/Dialog/components/Prompt.tsx index b31e6cb262..e3abe44cf7 100644 --- a/src/components/Dialog/components/Prompt.tsx +++ b/src/components/Dialog/components/Prompt.tsx @@ -1,7 +1,7 @@ import React, { type ComponentProps, type PropsWithChildren } from 'react'; import clsx from 'clsx'; import { Button, type ButtonProps } from '../../Button'; -import { IconCrossMedium } from '../../Icons'; +import { IconXmark } from '../../Icons'; const PromptRoot = ({ children, className, ...props }: ComponentProps<'div'>) => (
@@ -33,7 +33,7 @@ const PromptHeader = ({ className, close, description, title }: PromptHeaderProp size='sm' variant='secondary' > - + )}
diff --git a/src/components/Dialog/components/Viewer.tsx b/src/components/Dialog/components/Viewer.tsx index aaac02bcd4..39b6cd99fd 100644 --- a/src/components/Dialog/components/Viewer.tsx +++ b/src/components/Dialog/components/Viewer.tsx @@ -1,7 +1,7 @@ import React, { type ComponentProps, type PropsWithChildren } from 'react'; import clsx from 'clsx'; import { Button, type ButtonProps } from '../../Button'; -import { IconArrowLeft, IconCrossMedium } from '../../Icons'; +import { IconArrowLeft, IconXmark } from '../../Icons'; const ViewerRoot = ({ children, className, ...props }: ComponentProps<'div'>) => (
@@ -52,7 +52,7 @@ const ViewerHeader = ({ size='sm' variant='secondary' > - + )}
diff --git a/src/components/EmptyStateIndicator/EmptyStateIndicator.tsx b/src/components/EmptyStateIndicator/EmptyStateIndicator.tsx index ab97550cd3..1f18a4faa3 100644 --- a/src/components/EmptyStateIndicator/EmptyStateIndicator.tsx +++ b/src/components/EmptyStateIndicator/EmptyStateIndicator.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { useTranslationContext } from '../../context/TranslationContext'; -import { IconBubble2ChatMessage, IconBubbles } from '../Icons'; +import { IconMessageBubble, IconMessageBubbles } from '../Icons'; export type EmptyStateIndicatorProps = { /** List Type: channel | message */ @@ -20,7 +20,7 @@ const UnMemoizedEmptyStateIndicator = (props: EmptyStateIndicatorProps) => { const text = t('No conversations yet'); return (
- +

{text}

); @@ -30,7 +30,7 @@ const UnMemoizedEmptyStateIndicator = (props: EmptyStateIndicatorProps) => { const text = t(messageText || 'Send a message to start the conversation'); return (
- +

{text}

diff --git a/src/components/Form/TextInput.tsx b/src/components/Form/TextInput.tsx index 1ef1add1b7..711648286c 100644 --- a/src/components/Form/TextInput.tsx +++ b/src/components/Form/TextInput.tsx @@ -2,7 +2,7 @@ import clsx from 'clsx'; import React, { forwardRef } from 'react'; import type { ComponentProps, ReactNode } from 'react'; import { useStableId } from '../UtilityComponents/useStableId'; -import { IconCheckmark2, IconExclamationCircle } from '../Icons'; +import { IconCheckmark, IconExclamationMark } from '../Icons'; export type TextInputVariant = 'outline' | 'ghost'; @@ -19,11 +19,11 @@ export type TextInputProps = Omit, 'className'> & { message?: ReactNode; /** Error message below the input; shown when error is true, with errorMessageIcon */ errorMessage?: ReactNode; - /** Icon shown before error message (default: IconExclamationCircle) */ + /** Icon shown before error message (default: IconExclamationMark) */ errorMessageIcon?: ReactNode; /** Success message below the input; shown when provided, with successMessageIcon */ successMessage?: ReactNode; - /** Icon shown before success message (default: IconCheckmark2) */ + /** Icon shown before success message (default: IconCheckmark) */ successMessageIcon?: ReactNode; /** When true, shows error border and error message styling */ error?: boolean; @@ -66,14 +66,14 @@ export const TextInput = forwardRef(function T const messageContent = displayError ? ( <> - {errorMessageIcon ?? } + {errorMessageIcon ?? } {errorMessage ?? message} ) : displaySuccess ? ( <> - {successMessageIcon ?? } + {successMessageIcon ?? } {successMessage} diff --git a/src/components/Gallery/GalleryHeader.tsx b/src/components/Gallery/GalleryHeader.tsx index 8aa31fda95..6087785797 100644 --- a/src/components/Gallery/GalleryHeader.tsx +++ b/src/components/Gallery/GalleryHeader.tsx @@ -3,7 +3,7 @@ import { sanitizeUrl } from '@braintree/sanitize-url'; import { type GalleryItem } from './GalleryContext'; import { Button } from '../Button'; -import { IconArrowDownCircle, IconCrossMedium } from '../Icons'; +import { IconArrowDownCircle, IconXmark } from '../Icons'; import { MessageTimestamp as DefaultMessageTimestamp } from '../Message/MessageTimestamp'; import { ModalContext, @@ -69,7 +69,7 @@ export const GalleryHeader = ({ currentItem }: GalleryHeaderProps) => { onClick={modalContext.close} title={t('Close')} > - + ) : null}
diff --git a/src/components/Gallery/__tests__/__snapshots__/Image.test.tsx.snap b/src/components/Gallery/__tests__/__snapshots__/Image.test.tsx.snap index 33b17feda6..0c77f8bbc3 100644 --- a/src/components/Gallery/__tests__/__snapshots__/Image.test.tsx.snap +++ b/src/components/Gallery/__tests__/__snapshots__/Image.test.tsx.snap @@ -22,23 +22,15 @@ exports[`Image > should render component with default props 1`] = ` data-testid="str-chat__modal-gallery__image-loading-overlay" >
@@ -85,12 +77,7 @@ exports[`Image > should render component with default props 1`] = ` xmlns="http://www.w3.org/2000/svg" > @@ -111,7 +98,7 @@ exports[`Image > should render component with default props 1`] = ` xmlns="http://www.w3.org/2000/svg" >
@@ -148,7 +135,7 @@ exports[`Image > should render component with default props 1`] = ` xmlns="http://www.w3.org/2000/svg" >
diff --git a/src/components/Icons/IconGiphy.tsx b/src/components/Icons/IconGiphy.tsx index 2292d3a3e8..089863e614 100644 --- a/src/components/Icons/IconGiphy.tsx +++ b/src/components/Icons/IconGiphy.tsx @@ -2,39 +2,34 @@ import type { ComponentProps } from 'react'; import { BaseIcon } from './BaseIcon'; import clsx from 'clsx'; +// was: IconGiphy (updated icon asset) export const IconGiphy = ({ className, ...props }: ComponentProps<'svg'>) => ( - - - - - - - - - - - - - - - + + + + + + + + + ); diff --git a/src/components/Icons/icons.tsx b/src/components/Icons/icons.tsx index 58e6fca0b2..089903e15e 100644 --- a/src/components/Icons/icons.tsx +++ b/src/components/Icons/icons.tsx @@ -12,11 +12,13 @@ export const IconApples = createIcon( , ); -export const IconArrowBoxLeft = createIcon( - 'IconArrowBoxLeft', - , +// was: IconArrowBoxLeft +export const IconLeave = createIcon( + 'IconLeave', + , ); +// no new icon mapping export const IconArrowDown = createIcon( 'IconArrowDown', , @@ -24,55 +26,54 @@ export const IconArrowDown = createIcon( export const IconArrowDownCircle = createIcon( 'IconArrowDownCircle', - , + , ); export const IconArrowLeft = createIcon( 'IconArrowLeft', - , + , ); +// no new icon mapping export const IconArrowRight = createIcon( 'IconArrowRight', , ); -export const IconArrowRightUp = createIcon( - 'IconArrowRightUp', - , +// was: IconArrowRightUp +export const IconArrowUpRight = createIcon( + 'IconArrowUpRight', + , ); -export const IconArrowRotateClockwise = createIcon( - 'IconArrowRotateClockwise', - , +// was: IconArrowRotateClockwise +export const IconRetry = createIcon( + 'IconRetry', + , ); -export const IconArrowRotateRightLeftRepeatRefresh = createIcon( - 'IconArrowRotateRightLeftRepeatRefresh', - , +// was: IconArrowRotateRightLeftRepeatRefresh +export const IconRefresh = createIcon( + 'IconRefresh', + , ); -export const IconArrowShareLeft = createIcon( - 'IconArrowShareLeft', - , +// was: IconArrowShareLeft +export const IconReply = createIcon( + 'IconReply', + , ); export const IconArrowUp = createIcon( 'IconArrowUp', - , + , + { viewBox: '0 0 20 20' }, ); export const IconArrowsRepeatLeftRight = createIcon( @@ -80,9 +81,10 @@ export const IconArrowsRepeatLeftRight = createIcon( , ); -export const IconAt = createIcon( - 'IconAt', - , +// was: IconAt +export const IconMention = createIcon( + 'IconMention', + , ); export const IconAtSolid = createIcon( @@ -94,50 +96,27 @@ export const IconAtSolid = createIcon( />, ); -export const IconBellNotification = createIcon( - 'IconBellNotification', - , +// was: IconBellNotification +export const IconBell = createIcon( + 'IconBell', + , ); export const IconBellOff = createIcon( 'IconBellOff', - , + , ); -export const IconBookmark = createIcon( - 'IconBookmark', - , +// was: IconBookmark +export const IconSave = createIcon( + 'IconSave', + , ); -export const IconBookmarkRemove = createIcon( - 'IconBookmarkRemove', - , +// was: IconBookmarkRemove +export const IconUnsave = createIcon( + 'IconUnsave', + , ); export const IconBrowserAISparkle = createIcon( @@ -154,30 +133,29 @@ export const IconBrowserAISparkle = createIcon( , ); -export const IconBubbles = createIcon( - 'IconBubbles', +// was: IconBubbles +export const IconMessageBubbles = createIcon( + 'IconMessageBubbles', , -); - -export const IconBubble2ChatMessage = createIcon( - 'IconBubble2ChatMessage', - , + { viewBox: '0 0 20 20' }, ); -export const IconBubble2Solid = createIcon( - 'IconBubble2Solid', - , +// was: IconBubble2ChatMessage +export const IconMessageBubble = createIcon( + 'IconMessageBubble', + , +); + +// was: IconBubble2Solid +export const IconMessageBubbleFill = createIcon( + 'IconMessageBubbleFill', + , ); export const IconBubble3ChatMessage = createIcon( @@ -195,28 +173,28 @@ export const IconBubbleAnnotation2ChatMessage = createIcon( , ); -export const IconBubbleText6ChatMessage = createIcon( - 'IconBubbleText6ChatMessage', - , +// was: IconBubbleText6ChatMessage +export const IconThread = createIcon( + 'IconThread', + , ); +// no new icon mapping export const IconBubbleText6SolidChatMessage = createIcon( 'IconBubbleText6SolidChatMessage', , ); -export const IconBubbleText6Solid = createIcon( - 'IconBubbleText6Solid', - , +// was: IconBubbleText6Solid +export const IconThreadFill = createIcon( + 'IconThreadFill', + , ); -export const IconBubbleWideNotificationChatMessage = createIcon( - 'IconBubbleWideNotificationChatMessage', - , +// was: IconBubbleWideNotificationChatMessage +export const IconNotification = createIcon( + 'IconNotification', + , ); export const IconBubbleWideSparkleChatMessage = createIcon( @@ -244,9 +222,10 @@ export const IconCallCancel = createIcon( , ); -export const IconCamera1 = createIcon( - 'IconCamera1', - , +// was: IconCamera1 +export const IconCamera = createIcon( + 'IconCamera', + , ); export const IconCar1 = createIcon( @@ -264,37 +243,37 @@ export const IconCat = createIcon( , ); -export const IconChainLink = createIcon( - 'IconChainLink', - , +// was: IconChainLink +export const IconLink = createIcon( + 'IconLink', + , ); -export const IconChart5 = createIcon( - 'IconChart5', - , +// was: IconChart5 +export const IconPoll = createIcon( + 'IconPoll', + , ); export const IconCheckmark1Small = createIcon( 'IconCheckmark1Small', - , + , ); -export const IconCheckmark2 = createIcon( - 'IconCheckmark2', - , +// was: IconCheckmark2 +export const IconCheckmark = createIcon( + 'IconCheckmark', + , ); export const IconCheckmark2Small = createIcon( 'IconCheckmark2Small', - , + , ); export const IconChevronDown = createIcon( 'IconChevronDown', - , + , ); export const IconChevronGrabberVerticalSelector = createIcon( @@ -304,12 +283,12 @@ export const IconChevronGrabberVerticalSelector = createIcon( export const IconChevronLeft = createIcon( 'IconChevronLeft', - , + , ); export const IconChevronRight = createIcon( 'IconChevronRight', - , + , ); export const IconChevronTop = createIcon( @@ -317,9 +296,10 @@ export const IconChevronTop = createIcon( , ); -export const IconCircleBanSign = createIcon( - 'IconCircleBanSign', - , +// was: IconCircleBanSign +export const IconNoSign = createIcon( + 'IconNoSign', + , ); export const IconCircleCheck = createIcon( @@ -327,14 +307,20 @@ export const IconCircleCheck = createIcon( , ); -export const IconCircleInfoTooltip = createIcon( - 'IconCircleInfoTooltip', - , +// was: IconCircleInfoTooltip +export const IconInfo = createIcon( + 'IconInfo', + <> + + + + , ); -export const IconCircleMinus = createIcon( - 'IconCircleMinus', - , +// was: IconCircleMinus +export const IconMinusCircle = createIcon( + 'IconMinusCircle', + , ); export const IconCircleQuestionmark = createIcon( @@ -351,14 +337,15 @@ export const IconCircleQuestionmarkFilled = createIcon( />, ); -export const IconCircleX = createIcon( - 'IconCircleX', - , +// was: IconCircleX +export const IconXCircle = createIcon( + 'IconXCircle', + , ); export const IconClock = createIcon( 'IconClock', - , + , ); export const IconClockSolid = createIcon( @@ -370,29 +357,32 @@ export const IconClockSolid = createIcon( />, ); -export const IconCloseQuote2 = createIcon( - 'IconCloseQuote2', +// was: IconCloseQuote2 +export const IconQuote = createIcon( + 'IconQuote', + , +); + +export const IconCode = createIcon( + 'IconCode', <> + , -); - -export const IconCode = createIcon( - 'IconCode', - , + { viewBox: '0 0 19 24' }, ); export const IconCodeBrackets = createIcon( @@ -415,33 +405,33 @@ export const IconCreditCard2Billing = createIcon( , ); -export const IconCrossMedium = createIcon( - 'IconCrossMedium', - , +// was: IconCrossMedium +export const IconXmark = createIcon( + 'IconXmark', + , ); export const IconCrossSmall = createIcon( 'IconCrossSmall', - , + , ); -export const IconDotGrid1x3Horizontal = createIcon( - 'IconDotGrid1x3Horizontal', - , -); - -export const IconDotGrid2x3 = createIcon( - 'IconDotGrid2x3', +// was: IconDotGrid1x3Horizontal +export const IconMore = createIcon( + 'IconMore', <> - - - - - - + + + , ); +// was: IconDotGrid2x3 +export const IconReorder = createIcon( + 'IconReorder', + , +); + export const IconDotsGrid1x3Vertical = createIcon( 'IconDotsGrid1x3Vertical', <> @@ -452,20 +442,16 @@ export const IconDotsGrid1x3Vertical = createIcon( , ); -export const IconDoubleCheckmark1Small = createIcon( - 'IconDoubleCheckmark1Small', - , +// was: IconDoubleCheckmark1Small +export const IconChecks = createIcon( + 'IconChecks', + , ); -export const IconEditBig = createIcon( - 'IconEditBig', - <> - - - , +// was: IconEditBig +export const IconEdit = createIcon( + 'IconEdit', + , ); export const IconEditBigSolid = createIcon( @@ -480,9 +466,16 @@ export const IconEditBigSolid = createIcon( , ); -export const IconEmojiAddReaction = createIcon( - 'IconEmojiAddReaction', - , +// was: IconEmojiAddReaction +export const IconEmojiAdd = createIcon( + 'IconEmojiAdd', + <> + + + + + + , ); export const IconEmojiSad = createIcon( @@ -495,85 +488,70 @@ export const IconEmojiSad = createIcon( , ); -export const IconEmojiSmile = createIcon( - 'IconEmojiSmile', +// was: IconEmojiSmile +export const IconEmoji = createIcon( + 'IconEmoji', <> - - - - + + + + , ); -export const IconExclamation = createIcon( - 'IconExclamation', +// was: IconExclamation +export const IconExclamationMarkFill = createIcon( + 'IconExclamationMarkFill', <> - - - - + + , ); -export const IconExclamationCircle1 = createIcon( - 'IconExclamationCircle1', - <> - - - - , +// was: IconExclamationCircle1 +export const IconExclamationCircleFill = createIcon( + 'IconExclamationCircleFill', + , ); -export const IconExclamationCircle = createIcon( - 'IconExclamationCircle', +// was: IconExclamationCircle +export const IconExclamationMark = createIcon( + 'IconExclamationMark', <> - - - + + + , ); -export const IconExclamationTriangle1 = createIcon( - 'IconExclamationTriangle1', - , +// was: IconExclamationTriangle1 +export const IconExclamationTriangleFill = createIcon( + 'IconExclamationTriangleFill', + , ); +// no new icon mapping export const IconExclamationTriangle = createIcon( 'IconExclamationTriangle', , ); +// no new icon mapping export const IconEyeOpen = createIcon( 'IconEyeOpen', , ); -export const IconFileArrowLeftIn = createIcon( - 'IconFileArrowLeftIn', - , +// was: IconFileArrowLeftIn +export const IconUpload = createIcon( + 'IconUpload', + , ); -export const IconFileBend = createIcon( - 'IconFileBend', - , +// was: IconFileBend +export const IconFile = createIcon( + 'IconFile', + , ); export const IconFilledCircleInfoTooltip = createIcon( @@ -590,9 +568,10 @@ export const IconFilter1 = createIcon( , ); -export const IconFlag2 = createIcon( - 'IconFlag2', - , +// was: IconFlag2 +export const IconFlag = createIcon( + 'IconFlag', + , ); export const IconGauge = createIcon( @@ -625,9 +604,10 @@ export const IconHistory = createIcon( , ); -export const IconImages1Alt = createIcon( - 'IconImages1Alt', - , +// was: IconImages1Alt +export const IconImage = createIcon( + 'IconImage', + , ); export const IconInvite = createIcon( @@ -635,11 +615,37 @@ export const IconInvite = createIcon( , ); -export const IconLayersBehind = createIcon( - 'IconLayersBehind', - , +// was: IconLayersBehind +export const IconPresentation = createIcon( + 'IconPresentation', + <> + + + + + + + + + + + , + { viewBox: '0 0 19 24' }, ); +// no new icon mapping export const IconLayoutAlignLeft = createIcon( 'IconLayoutAlignLeft', <> @@ -679,60 +685,51 @@ export const IconLineChart3 = createIcon( export const IconLock = createIcon( 'IconLock', - , + <> + + + + , ); -export const IconMagnifyingGlassSearch = createIcon( - 'IconMagnifyingGlassSearch', - , +// was: IconMagnifyingGlassSearch +export const IconSearch = createIcon( + 'IconSearch', + , ); -export const IconMapPin = createIcon( - 'IconMapPin', - , +// was: IconMapPin +export const IconLocation = createIcon( + 'IconLocation', + , ); -export const IconMicrophone = createIcon( - 'IconMicrophone', - , +// was: IconMicrophone +export const IconVoice = createIcon( + 'IconVoice', + , ); -export const IconMicrophoneSolid = createIcon( - 'IconMicrophoneSolid', - <> - - - , +// was: IconMicrophoneSolid +export const IconVoiceFill = createIcon( + 'IconVoiceFill', + , ); -export const IconMinusLarge = createIcon( - 'IconMinusLarge', - , +// was: IconMinusLarge +export const IconMinus = createIcon( + 'IconMinus', + , ); export const IconMinusSmall = createIcon( 'IconMinusSmall', - , + , ); export const IconMute = createIcon( 'IconMute', - <> - - - , + , ); export const IconNewspaper2 = createIcon( @@ -745,9 +742,10 @@ export const IconOrganization = createIcon( , ); -export const IconPaperPlane = createIcon( - 'IconPaperPlane', - , +// was: IconPaperPlane +export const IconSend = createIcon( + 'IconSend', + , ); export const IconPaperPlaneTopRight = createIcon( @@ -755,9 +753,10 @@ export const IconPaperPlaneTopRight = createIcon( , ); -export const IconPaperclip = createIcon( - 'IconPaperclip', - , +// was: IconPaperclip +export const IconAttachment = createIcon( + 'IconAttachment', + , ); export const IconParagraphsText = createIcon( @@ -765,12 +764,10 @@ export const IconParagraphsText = createIcon( , ); -export const IconPause = createIcon( - 'IconPause', - <> - - - , +// was: IconPause +export const IconPauseFill = createIcon( + 'IconPauseFill', + , ); export const IconPencil = createIcon( @@ -778,9 +775,10 @@ export const IconPencil = createIcon( , ); -export const IconPeople = createIcon( - 'IconPeople', - , +// was: IconPeople +export const IconUser = createIcon( + 'IconUser', + , ); export const IconPeople2 = createIcon( @@ -788,23 +786,40 @@ export const IconPeople2 = createIcon( , ); -export const IconPeopleAdd = createIcon( - 'IconPeopleAdd', - , +// was: IconPeopleAdd +export const IconUserAdd = createIcon( + 'IconUserAdd', + <> + + + + + + + + + , ); -export const IconPeopleAdded = createIcon( - 'IconPeopleAdded', +// was: IconPeopleAdded +export const IconUserCheck = createIcon( + 'IconUserCheck', <> - - - + + + + + + + + , ); -export const IconPeopleCircle = createIcon( - 'IconPeopleCircle', - , +// was: IconPeopleCircle +export const IconAccount = createIcon( + 'IconAccount', + , ); export const IconPeopleCopy = createIcon( @@ -817,12 +832,18 @@ export const IconPeopleEditUserRights = createIcon( , ); -export const IconPeopleRemove = createIcon( - 'IconPeopleRemove', +// was: IconPeopleRemove +export const IconUserRemove = createIcon( + 'IconUserRemove', <> - - - + + + + + + + + , ); @@ -849,27 +870,30 @@ export const IconPersona = createIcon( export const IconPin = createIcon( 'IconPin', - , + , ); -export const IconPlaySolid = createIcon( - 'IconPlaySolid', - , +// was: IconPlaySolid +export const IconPlayFill = createIcon( + 'IconPlayFill', + , ); -export const IconPlusLarge = createIcon( - 'IconPlusLarge', - , +// was: IconPlusLarge +export const IconPlus = createIcon( + 'IconPlus', + , ); export const IconPlusSmall = createIcon( 'IconPlusSmall', - , + , ); -export const IconRunShortcut = createIcon( - 'IconRunShortcut', - , +// was: IconRunShortcut +export const IconCommand = createIcon( + 'IconCommand', + , ); export const IconSearchText = createIcon( @@ -897,9 +921,10 @@ export const IconShapesTriangleSquareCircle = createIcon( , ); -export const IconShareRedirectLink = createIcon( - 'IconShareRedirectLink', - , +// was: IconShareRedirectLink +export const IconExport = createIcon( + 'IconExport', + , ); export const IconShield = createIcon( @@ -907,9 +932,10 @@ export const IconShield = createIcon( , ); -export const IconSquareBehindSquare2_Copy = createIcon( - 'IconSquareBehindSquare2_Copy', - , +// was: IconSquareBehindSquare2_Copy +export const IconCopy = createIcon( + 'IconCopy', + , ); export const IconSquareCircleTopRightFeeds = createIcon( @@ -917,14 +943,33 @@ export const IconSquareCircleTopRightFeeds = createIcon( , ); -export const IconStop = createIcon( - 'IconStop', - , +// was: IconStop +export const IconStopFill = createIcon( + 'IconStopFill', + , ); -export const IconTable = createIcon( - 'IconTable', - , +// was: IconTable +export const IconSpreadsheet = createIcon( + 'IconSpreadsheet', + <> + + + + , + { viewBox: '0 0 19 24' }, ); export const IconTeam = createIcon( @@ -966,6 +1011,7 @@ export const IconTextToImageURLEnrichment = createIcon( , ); +// no new icon mapping export const IconThunder = createIcon( 'IconThunder', <> @@ -982,18 +1028,13 @@ export const IconThunder = createIcon( export const IconTranslate = createIcon( 'IconTranslate', - , + , ); -export const IconTrashBin = createIcon( - 'IconTrashBin', - , +// was: IconTrashBin +export const IconDelete = createIcon( + 'IconDelete', + , ); export const IconTrending4 = createIcon( @@ -1003,43 +1044,66 @@ export const IconTrending4 = createIcon( export const IconTrophy = createIcon( 'IconTrophy', - , + , ); -export const IconUnlocked = createIcon( - 'IconUnlocked', - , +// was: IconUnlocked +export const IconUnlock = createIcon( + 'IconUnlock', + <> + + + + , ); export const IconUnpin = createIcon( 'IconUnpin', - , + , + { viewBox: '0 0 20 20' }, ); export const IconUsers = createIcon( 'IconUsers', - , + <> + + + + + + + + + , ); export const IconVideo = createIcon( 'IconVideo', - , + <> + + + + + + + + + , ); -export const IconVideoSolid = createIcon( - 'IconVideoSolid', - , +// was: IconVideoSolid +export const IconVideoFill = createIcon( + 'IconVideoFill', + <> + + + + + + + + + , ); export const IconVoiceAndVideo = createIcon( @@ -1061,9 +1125,10 @@ export const IconVoiceHigh = createIcon( , ); -export const IconVolumeFull = createIcon( - 'IconVolumeFull', - , +// was: IconVolumeFull +export const IconAudio = createIcon( + 'IconAudio', + , ); export const IconWebhook = createIcon( @@ -1073,35 +1138,14 @@ export const IconWebhook = createIcon( export const IconArchive = createIcon( 'IconArchive', - , + , ); -export const IconLoadingCircle = createIcon( - 'IconLoadingCircle', +// was: IconLoadingCircle +export const IconLoading = createIcon( + 'IconLoading', <> - - + + , - { - viewBox: '0 0 20 20', - }, ); diff --git a/src/components/Icons/styling/Icons.scss b/src/components/Icons/styling/Icons.scss index d04c1fc786..d9e16b4788 100644 --- a/src/components/Icons/styling/Icons.scss +++ b/src/components/Icons/styling/Icons.scss @@ -5,6 +5,6 @@ fill: currentColor; } -.str-chat__icon--exclamation-circle { +.str-chat__icon--exclamation-mark { stroke: currentColor; } diff --git a/src/components/Loading/LoadingIndicator.tsx b/src/components/Loading/LoadingIndicator.tsx index b34a983ab4..1ba631195e 100644 --- a/src/components/Loading/LoadingIndicator.tsx +++ b/src/components/Loading/LoadingIndicator.tsx @@ -1,8 +1,8 @@ import React, { type ComponentProps } from 'react'; -import { IconLoadingCircle } from '../Icons'; +import { IconLoading } from '../Icons'; -export type LoadingIndicatorProps = ComponentProps; +export type LoadingIndicatorProps = ComponentProps; export const LoadingIndicator = (props: LoadingIndicatorProps) => ( - + ); diff --git a/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap b/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap index e181e596a7..ee494eecb3 100644 --- a/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap +++ b/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap @@ -3,23 +3,15 @@ exports[`LoadingIndicator > should render with default props 1`] = `
diff --git a/src/components/MediaRecorder/AudioRecorder/AudioRecorderRecordingControls.tsx b/src/components/MediaRecorder/AudioRecorder/AudioRecorderRecordingControls.tsx index c1cba09c36..332ea66048 100644 --- a/src/components/MediaRecorder/AudioRecorder/AudioRecorderRecordingControls.tsx +++ b/src/components/MediaRecorder/AudioRecorder/AudioRecorderRecordingControls.tsx @@ -1,5 +1,5 @@ import { CheckSignIcon, LoadingIndicatorIcon } from '../../MessageComposer/icons'; -import { IconMicrophone, IconPause, IconTrashBin } from '../../Icons'; +import { IconDelete, IconPauseFill, IconVoice } from '../../Icons'; import React from 'react'; import { useChatContext, @@ -26,7 +26,7 @@ const ToggleRecordingButton = () => { size='sm' variant='secondary' > - {isRecording(recordingState) ? : } + {isRecording(recordingState) ? : } ); }; @@ -66,7 +66,7 @@ export const AudioRecorderRecordingControls = () => { size='sm' variant='secondary' > - + )} diff --git a/src/components/MediaRecorder/AudioRecorder/AudioRecordingButtonWithNotification.tsx b/src/components/MediaRecorder/AudioRecorder/AudioRecordingButtonWithNotification.tsx index 7ff3305e56..b28ffc9ee9 100644 --- a/src/components/MediaRecorder/AudioRecorder/AudioRecordingButtonWithNotification.tsx +++ b/src/components/MediaRecorder/AudioRecorder/AudioRecordingButtonWithNotification.tsx @@ -5,7 +5,7 @@ import { useAttachmentManagerState } from '../../MessageComposer/hooks/useAttach import { useComponentContext, useMessageComposerContext } from '../../../context'; import { Callout, useDialogOnNearestManager } from '../../Dialog'; import { Button } from '../../Button'; -import { IconMicrophone } from '../../Icons'; +import { IconVoice } from '../../Icons'; const dialogId = 'recording-permission-denied-notification'; @@ -76,7 +76,7 @@ export const DefaultStartRecordingAudioButton = forwardRef< {...props} ref={ref} > - + ); }); diff --git a/src/components/MediaRecorder/AudioRecorder/AudioRecordingPlayback.tsx b/src/components/MediaRecorder/AudioRecorder/AudioRecordingPlayback.tsx index 5ff50c214a..3600bbaa3f 100644 --- a/src/components/MediaRecorder/AudioRecorder/AudioRecordingPlayback.tsx +++ b/src/components/MediaRecorder/AudioRecorder/AudioRecordingPlayback.tsx @@ -3,7 +3,7 @@ import { DurationDisplay, WaveProgressBar } from '../../AudioPlayback'; import type { AudioPlayerState } from '../../AudioPlayback/AudioPlayer'; import { useAudioPlayer } from '../../AudioPlayback/WithAudioPlayback'; import { useStateStore } from '../../../store'; -import { IconPause, IconPlaySolid } from '../../Icons'; +import { IconPauseFill, IconPlayFill } from '../../Icons'; import { Button } from '../../Button'; import clsx from 'clsx'; @@ -62,7 +62,7 @@ export const AudioRecordingPlayback = ({ size='sm' variant='secondary' > - {isPlaying ? : } + {isPlaying ? : } { return (
- +
diff --git a/src/components/MediaRecorder/AudioRecorder/__tests__/AudioRecordingPreview.test.tsx b/src/components/MediaRecorder/AudioRecorder/__tests__/AudioRecordingPreview.test.tsx index 95e434f6aa..aa1d304241 100644 --- a/src/components/MediaRecorder/AudioRecorder/__tests__/AudioRecordingPreview.test.tsx +++ b/src/components/MediaRecorder/AudioRecorder/__tests__/AudioRecordingPreview.test.tsx @@ -7,8 +7,8 @@ import type { AudioPlayer } from '../../../AudioPlayback'; import { generateAudioAttachment } from '../../../../mock-builders'; const TOGGLE_PLAY_BTN_TEST_ID = 'audio-recording-preview-toggle-play-btn'; -const PLAY_ICON_CLASS = 'str-chat__icon--play-solid'; -const PAUSE_ICON_CLASS = 'str-chat__icon--pause'; +const PLAY_ICON_CLASS = 'str-chat__icon--play-fill'; +const PAUSE_ICON_CLASS = 'str-chat__icon--pause-fill'; const WAVE_PROGRESS_BAR_TEST_ID = 'wave-progress-bar-track'; const TIMER_CLASS_SELECTOR = '.str-chat__recording-timer'; const WAVE_PROGRESS_BAR_INDICATOR_SELECTOR = diff --git a/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap b/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap index 5994ae8fc7..1751547273 100644 --- a/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap +++ b/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap @@ -18,12 +18,12 @@ exports[`AudioRecorder > does not render recording preview if paused 1`] = ` class="str-chat__button__content" >
@@ -266,12 +266,12 @@ exports[`AudioRecorder > does not render recording preview if paused 1`] = ` class="str-chat__button__content" >
@@ -284,12 +284,12 @@ exports[`AudioRecorder > does not render recording preview if paused 1`] = ` class="str-chat__button__content" >
@@ -328,12 +328,12 @@ exports[`AudioRecorder > does not render recording preview if recording 1`] = ` class="str-chat__audio-recorder__recording-preview" >
does not render recording preview if recording 1`] = ` class="str-chat__button__content" > -
@@ -407,12 +404,12 @@ exports[`AudioRecorder > renders audio recording in progress UI 1`] = ` class="str-chat__audio-recorder__recording-preview" >
renders audio recording in progress UI 1`] = ` class="str-chat__button__content" > -
@@ -494,12 +488,12 @@ exports[`AudioRecorder > renders audio recording paused UI when paused 1`] = ` class="str-chat__button__content" >
@@ -512,12 +506,12 @@ exports[`AudioRecorder > renders audio recording paused UI when paused 1`] = ` class="str-chat__button__content" >
@@ -564,12 +558,12 @@ exports[`AudioRecorder > renders audio recording stopped UI when stopped without class="str-chat__button__content" >
@@ -582,12 +576,12 @@ exports[`AudioRecorder > renders audio recording stopped UI when stopped without class="str-chat__button__content" >
@@ -634,12 +628,12 @@ exports[`AudioRecorder > renders audio recording stopped UI with recording previ class="str-chat__button__content" >
@@ -882,12 +876,12 @@ exports[`AudioRecorder > renders audio recording stopped UI with recording previ class="str-chat__button__content" >
@@ -900,12 +894,12 @@ exports[`AudioRecorder > renders audio recording stopped UI with recording previ class="str-chat__button__content" >
diff --git a/src/components/MediaRecorder/AudioRecorder/styling/AudioRecorder.scss b/src/components/MediaRecorder/AudioRecorder/styling/AudioRecorder.scss index 3dd7ff73e6..8eac8dcacc 100644 --- a/src/components/MediaRecorder/AudioRecorder/styling/AudioRecorder.scss +++ b/src/components/MediaRecorder/AudioRecorder/styling/AudioRecorder.scss @@ -42,7 +42,7 @@ } .str-chat__audio-recorder__recording-preview { - .str-chat__icon--microphone { + .str-chat__icon--voice { height: var(--icon-size-sm); width: var(--icon-size-sm); color: var(--button-destructive-text); diff --git a/src/components/Message/MessageAlsoSentInChannelIndicator.tsx b/src/components/Message/MessageAlsoSentInChannelIndicator.tsx index 361ccbe11a..8d722f4f77 100644 --- a/src/components/Message/MessageAlsoSentInChannelIndicator.tsx +++ b/src/components/Message/MessageAlsoSentInChannelIndicator.tsx @@ -1,6 +1,6 @@ import React, { useEffect, useRef } from 'react'; -import { IconArrowRightUp } from '../Icons'; +import { IconArrowUpRight } from '../Icons'; import { addNotificationTargetTag, useNotificationTarget } from '../Notifications'; import { useChannelActionContext, @@ -92,7 +92,7 @@ export const MessageAlsoSentInChannelIndicator = () => { return (
- + {threadList ? t('Also sent in channel') : t('Replied to a thread')} ·
@@ -107,20 +103,16 @@ exports[` > should render with a custom wrapper class when one is class="str-chat__badge str-chat__badge--variant-error str-chat__badge--size-sm" > - - - - + +
@@ -173,20 +165,16 @@ exports[` > should render with custom theme identifier in generat class="str-chat__badge str-chat__badge--variant-error str-chat__badge--size-sm" > - - - - + +
diff --git a/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap b/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap index e8eb1023d9..d8089567ac 100644 --- a/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap +++ b/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap @@ -6,16 +6,12 @@ exports[`ReminderNotification > displays text for bookmark notifications (saved class="str-chat__message-saved-for-later" > @@ -31,16 +27,12 @@ exports[`ReminderNotification > displays text for reminder deadline if trespasse class="str-chat__message-reminder" > @@ -64,16 +56,12 @@ exports[`ReminderNotification > displays text for time due in case of timed remi class="str-chat__message-reminder" > diff --git a/src/components/MessageActions/MessageActions.defaults.tsx b/src/components/MessageActions/MessageActions.defaults.tsx index bbd9db4639..138906a6b8 100644 --- a/src/components/MessageActions/MessageActions.defaults.tsx +++ b/src/components/MessageActions/MessageActions.defaults.tsx @@ -3,27 +3,27 @@ import React, { forwardRef, useState } from 'react'; import { GlobalModal } from '../Modal'; import { - IconArrowRotateClockwise, - IconArrowShareLeft, - IconBellNotification, + IconAudio, + IconBell, IconBellOff, - IconBookmark, - IconBookmarkRemove, - IconBubbleText6ChatMessage, - IconBubbleWideNotificationChatMessage, - IconCircleBanSign, - IconCloseQuote2, - IconDotGrid1x3Horizontal, - IconEditBig, - IconEmojiSmile, - IconFlag2, + IconCopy, + IconDelete, + IconEdit, + IconEmoji, + IconFlag, + IconMore, IconMute, - IconPeopleAdded, + IconNoSign, + IconNotification, IconPin, - IconSquareBehindSquare2_Copy, - IconTrashBin, + IconQuote, + IconReply, + IconRetry, + IconSave, + IconThread, IconUnpin, - IconVolumeFull, + IconUnsave, + IconUserCheck, } from '../Icons'; import { isUserMuted } from '../Message/utils'; import { useMessageComposerController } from '../MessageComposer/hooks/useMessageComposerController'; @@ -63,7 +63,7 @@ const DefaultMessageActionComponents = { aria-label={t('aria/Open Thread')} className={msgActionsBoxButtonClassName} data-testid='thread-action' - Icon={IconBubbleText6ChatMessage} + Icon={IconThread} onClick={(e) => { handleOpenThread(e); closeMenu(); @@ -96,7 +96,7 @@ const DefaultMessageActionComponents = { { handleQuote(); closeMenu(); @@ -134,7 +134,7 @@ const DefaultMessageActionComponents = { { if (message.text) navigator.clipboard.writeText(message.text); closeMenu(); @@ -153,7 +153,7 @@ const DefaultMessageActionComponents = { { handleRetry(message); closeMenu(); @@ -173,7 +173,7 @@ const DefaultMessageActionComponents = { { messageComposer.initState({ composition: message }); closeMenu(); @@ -192,7 +192,7 @@ const DefaultMessageActionComponents = { { handleMarkUnread(event); closeMenu(); @@ -217,7 +217,7 @@ const DefaultMessageActionComponents = { aria-label={reminder ? t('aria/Remind Me Message') : t('aria/Remove Reminder')} className={msgActionsBoxButtonClassName} hasSubMenu={!reminder} - Icon={reminder ? IconBellOff : IconBellNotification} + Icon={reminder ? IconBellOff : IconBell} onClick={() => { if (reminder) { client.reminders.deleteReminder(reminder.id); @@ -250,7 +250,7 @@ const DefaultMessageActionComponents = { reminder ? t('aria/Remove Save For Later') : t('aria/Bookmark Message') } className={msgActionsBoxButtonClassName} - Icon={reminder ? IconBookmarkRemove : IconBookmark} + Icon={reminder ? IconUnsave : IconSave} onClick={() => { if (reminder) client.reminders.deleteReminder(reminder.id); else client.reminders.createReminder({ messageId: message.id }); @@ -270,7 +270,7 @@ const DefaultMessageActionComponents = { { handleFlag(event); closeMenu(); @@ -291,7 +291,7 @@ const DefaultMessageActionComponents = { { handleMute(event); closeMenu(); @@ -315,7 +315,7 @@ const DefaultMessageActionComponents = { { setOpenModal(true); }} @@ -364,7 +364,7 @@ const DefaultMessageActionComponents = { { const targetId = message.user?.id; if (targetId) { @@ -403,12 +403,12 @@ const DefaultMessageActionComponents = { }} ref={ref} > - + ); }), React() { - return ; + return ; }, Reply() { const { handleOpenThread } = useMessageContext(); @@ -421,7 +421,7 @@ const DefaultMessageActionComponents = { data-testid='thread-action' onClick={handleOpenThread} > - + ); }, diff --git a/src/components/MessageBounce/MessageBouncePrompt.tsx b/src/components/MessageBounce/MessageBouncePrompt.tsx index 82622ae255..cf246f3496 100644 --- a/src/components/MessageBounce/MessageBouncePrompt.tsx +++ b/src/components/MessageBounce/MessageBouncePrompt.tsx @@ -6,7 +6,7 @@ import { useTranslationContext, } from '../../context'; import { Button } from '../Button'; -import { IconExclamationCircle } from '../Icons'; +import { IconExclamationMark } from '../Icons'; import { Alert } from '../Dialog'; import type { PropsWithChildrenOnly } from '../../types/types'; @@ -34,7 +34,7 @@ export function MessageBouncePrompt({ children }: MessageBouncePromptProps) { > ) : hasFatalError ? (
- + {hasSizeLimitError ? t('File too large') diff --git a/src/components/MessageComposer/AttachmentPreviewList/FileAttachmentPreview.tsx b/src/components/MessageComposer/AttachmentPreviewList/FileAttachmentPreview.tsx index a9e23a9514..48a29fbe16 100644 --- a/src/components/MessageComposer/AttachmentPreviewList/FileAttachmentPreview.tsx +++ b/src/components/MessageComposer/AttachmentPreviewList/FileAttachmentPreview.tsx @@ -8,7 +8,7 @@ import type { UploadAttachmentPreviewProps } from './types'; import { RemoveAttachmentPreviewButton } from '../RemoveAttachmentPreviewButton'; import { AttachmentPreviewRoot } from './utils/AttachmentPreviewRoot'; import { FileSizeIndicator } from '../../Attachment'; -import { IconExclamationCircle, IconExclamationTriangle } from '../../Icons'; +import { IconExclamationMark, IconExclamationTriangle } from '../../Icons'; export type FileAttachmentPreviewProps = UploadAttachmentPreviewProps< @@ -47,7 +47,7 @@ export const FileAttachmentPreview = ({ {!hasError && } {hasFatalError && (
- + {hasSizeLimitError ? t('File too large') diff --git a/src/components/MessageComposer/AttachmentPreviewList/GeolocationPreview.tsx b/src/components/MessageComposer/AttachmentPreviewList/GeolocationPreview.tsx index a23cc560cd..b6a3417789 100644 --- a/src/components/MessageComposer/AttachmentPreviewList/GeolocationPreview.tsx +++ b/src/components/MessageComposer/AttachmentPreviewList/GeolocationPreview.tsx @@ -2,7 +2,7 @@ import type { LiveLocationPreview, StaticLocationPreview } from 'stream-chat'; import type { ComponentType } from 'react'; import React from 'react'; import { useTranslationContext } from '../../../context'; -import { IconMapPin } from '../../Icons'; +import { IconLocation } from '../../Icons'; import { RemoveAttachmentPreviewButton } from '../RemoveAttachmentPreviewButton'; type GeolocationPreviewImageProps = { @@ -11,7 +11,7 @@ type GeolocationPreviewImageProps = { const GeolocationPreviewImage = () => (
- +
); diff --git a/src/components/MessageComposer/AttachmentPreviewList/MediaAttachmentPreview.tsx b/src/components/MessageComposer/AttachmentPreviewList/MediaAttachmentPreview.tsx index 43597a6489..def24a1a7b 100644 --- a/src/components/MessageComposer/AttachmentPreviewList/MediaAttachmentPreview.tsx +++ b/src/components/MessageComposer/AttachmentPreviewList/MediaAttachmentPreview.tsx @@ -15,11 +15,7 @@ import React, { } from 'react'; import clsx from 'clsx'; import { LoadingIndicatorIcon } from '../icons'; -import { - IconArrowRotateClockwise, - IconExclamationCircle, - IconVideoSolid, -} from '../../Icons'; +import { IconExclamationMark, IconRetry, IconVideoFill } from '../../Icons'; import { RemoveAttachmentPreviewButton } from '../RemoveAttachmentPreviewButton'; import { Button } from '../../Button'; import { AttachmentPreviewRoot } from './utils/AttachmentPreviewRoot'; @@ -104,12 +100,12 @@ export const MediaAttachmentPreview = ({ !hasUploadError && uploadState !== 'uploading' && (
- + {attachment.duration &&
{attachment.duration}
}
)} - {hasFatalError && } + {hasFatalError && } {hasRetriableError && ( )}
diff --git a/src/components/MessageComposer/AttachmentSelector/AttachmentSelector.tsx b/src/components/MessageComposer/AttachmentSelector/AttachmentSelector.tsx index 8a1ea2428b..db196b08ae 100644 --- a/src/components/MessageComposer/AttachmentSelector/AttachmentSelector.tsx +++ b/src/components/MessageComposer/AttachmentSelector/AttachmentSelector.tsx @@ -36,11 +36,11 @@ import { useStableId } from '../../UtilityComponents/useStableId'; import clsx from 'clsx'; import { Button, type ButtonProps } from '../../Button'; import { - IconChart5, - IconMapPin, - IconPaperclip, - IconPlusLarge, - IconRunShortcut, + IconAttachment, + IconCommand, + IconLocation, + IconPlus, + IconPoll, } from '../../Icons'; import { useIsCooldownActive } from '../hooks/useIsCooldownActive'; import { @@ -61,7 +61,7 @@ const AttachmentSelectorMenuInitButtonIcon = ({ className }: { className?: strin } return ( - ); @@ -149,7 +149,7 @@ export const DefaultAttachmentSelectorComponents = { { if (!hasSubmenu) return; openSubmenu({ @@ -171,7 +171,7 @@ export const DefaultAttachmentSelectorComponents = { return ( { fileInput?.click(); closeMenu(); @@ -187,7 +187,7 @@ export const DefaultAttachmentSelectorComponents = { return ( { openModalForAction('addLocation'); closeMenu(); @@ -203,7 +203,7 @@ export const DefaultAttachmentSelectorComponents = { return ( { openModalForAction('createPoll'); closeMenu(); diff --git a/src/components/MessageComposer/AttachmentSelector/CommandsMenu.tsx b/src/components/MessageComposer/AttachmentSelector/CommandsMenu.tsx index 5e0639b7e7..5658eaeaf6 100644 --- a/src/components/MessageComposer/AttachmentSelector/CommandsMenu.tsx +++ b/src/components/MessageComposer/AttachmentSelector/CommandsMenu.tsx @@ -9,23 +9,23 @@ import { useContextMenuContext, } from '../../Dialog'; import { + IconAudio, IconChevronLeft, - IconFlag2, + IconFlag, IconGiphy, IconMute, - IconPeopleAdd, - IconPeopleRemove, - IconVolumeFull, + IconUserAdd, + IconUserRemove, } from '../../Icons'; import clsx from 'clsx'; const icons: Record = { - ban: IconPeopleRemove, - flag: IconFlag2, + ban: IconUserRemove, + flag: IconFlag, giphy: IconGiphy, mute: IconMute, - unban: IconPeopleAdd, - unmute: IconVolumeFull, + unban: IconUserAdd, + unmute: IconAudio, }; export const CommandsMenuClassName = 'str-chat__context-menu--commands'; diff --git a/src/components/MessageComposer/CommandChip.tsx b/src/components/MessageComposer/CommandChip.tsx index f2462f2c8a..3cd1ce701f 100644 --- a/src/components/MessageComposer/CommandChip.tsx +++ b/src/components/MessageComposer/CommandChip.tsx @@ -1,6 +1,6 @@ import { useMessageComposerController } from './hooks'; import type { TextComposerState } from 'stream-chat'; -import { IconCrossMedium, IconThunder } from '../Icons'; +import { IconThunder, IconXmark } from '../Icons'; import { useMessageComposerContext } from '../../context'; export type CommandChipProps = { @@ -23,7 +23,7 @@ export const CommandChip = ({ command }: CommandChipProps) => { textareaRef.current?.focus(); }} > - +
); diff --git a/src/components/MessageComposer/LinkPreviewList.tsx b/src/components/MessageComposer/LinkPreviewList.tsx index 6eade4d2b1..743d8e7fe6 100644 --- a/src/components/MessageComposer/LinkPreviewList.tsx +++ b/src/components/MessageComposer/LinkPreviewList.tsx @@ -8,7 +8,7 @@ import { useEnterLeaveHandlers } from '../Tooltip/hooks'; import { useMessageComposerController } from './hooks'; import { BaseImage } from '../BaseImage'; import { RemoveAttachmentPreviewButton } from './RemoveAttachmentPreviewButton'; -import { IconChainLink } from '../Icons'; +import { IconLink } from '../Icons'; export type LinkPreviewListProps = { displayLinkCount?: number; @@ -94,7 +94,7 @@ export const LinkPreviewCard = ({ linkPreview }: LinkPreviewProps) => { {linkPreview.text}
- + {linkPreview.og_scrape_url}
diff --git a/src/components/MessageComposer/MessageComposerActions.tsx b/src/components/MessageComposer/MessageComposerActions.tsx index e874c920cd..e9a8e90620 100644 --- a/src/components/MessageComposer/MessageComposerActions.tsx +++ b/src/components/MessageComposer/MessageComposerActions.tsx @@ -13,7 +13,7 @@ import { AudioRecordingButtonWithNotification } from '../MediaRecorder/AudioReco import { useIsCooldownActive } from './hooks/useIsCooldownActive'; import type { MessageComposerState, TextComposerState } from 'stream-chat'; import { useStateStore } from '../../store'; -import { IconCheckmark2, IconPaperPlane } from '../Icons'; +import { IconCheckmark, IconSend } from '../Icons'; const messageComposerStateSelector = ({ editedMessage }: MessageComposerState) => ({ editedMessage, @@ -71,7 +71,7 @@ export const MessageComposerActions = () => { ) : ( - {editedMessage || command ? : } + {editedMessage || command ? : } ); diff --git a/src/components/MessageComposer/QuotedMessagePreview.tsx b/src/components/MessageComposer/QuotedMessagePreview.tsx index 443c3630b1..312df3bf23 100644 --- a/src/components/MessageComposer/QuotedMessagePreview.tsx +++ b/src/components/MessageComposer/QuotedMessagePreview.tsx @@ -34,14 +34,14 @@ import { useChannelStateContext } from '../../context/ChannelStateContext'; import type { MessageContextValue } from '../../context'; import { RemoveAttachmentPreviewButton } from './RemoveAttachmentPreviewButton'; import { - IconChainLink, - IconChart5, - IconFileBend, - IconMapPin, - IconMicrophone, - IconPlaySolid, + IconFile, + IconLink, + IconLocation, + IconPlayFill, + IconPoll, IconVideo, - IconVideoSolid, + IconVideoFill, + IconVoice, } from '../Icons'; import clsx from 'clsx'; import { BaseImage } from '../BaseImage'; @@ -184,10 +184,10 @@ const getAttachmentIconWithType = ( }; if (!groupedAttachments.total) return result; if (groupedAttachments.polls.length > 0) - return { ...result, Icon: IconChart5, previewType: 'poll' }; + return { ...result, Icon: IconPoll, previewType: 'poll' }; if (groupedAttachments.locations.length > 0) // todo: we do not generate the location preview image - return { ...result, Icon: IconMapPin, previewType: 'location' }; + return { ...result, Icon: IconLocation, previewType: 'location' }; if ( groupedAttachments.giphies.length > 0 && groupedAttachments.giphies.length === groupedAttachments.total @@ -201,7 +201,7 @@ const getAttachmentIconWithType = ( giphyVersion?.url || giphyAttachment.thumb_url || giphyAttachment.image_url || ''; return { ...result, - Icon: IconFileBend, + Icon: IconFile, PreviewImage: ( ), @@ -231,7 +231,7 @@ const getAttachmentIconWithType = ( const linkAttachment = groupedAttachments.links[0]; return { ...result, - Icon: IconChainLink, + Icon: IconLink, PreviewImage: (
- +
), @@ -268,7 +268,7 @@ const getAttachmentIconWithType = ( const imageAttachment = groupedAttachments.images[0]; return { ...result, - Icon: IconVideoSolid, + Icon: IconVideoFill, PreviewImage: ( - {children ?? } + {children ?? } ); }; diff --git a/src/components/MessageComposer/SendToChannelCheckbox.tsx b/src/components/MessageComposer/SendToChannelCheckbox.tsx index 4fff6b3516..c3075822a6 100644 --- a/src/components/MessageComposer/SendToChannelCheckbox.tsx +++ b/src/components/MessageComposer/SendToChannelCheckbox.tsx @@ -1,7 +1,7 @@ import clsx from 'clsx'; import React from 'react'; import { useMessageComposerController } from './hooks'; -import { IconCheckmark2 } from '../Icons'; +import { IconCheckmark } from '../Icons'; import type { MessageComposerState } from 'stream-chat'; import { useStateStore } from '../../store'; import { useTranslationContext } from '../../context'; @@ -43,7 +43,7 @@ export const SendToChannelCheckbox = () => { /> - + {labelText} diff --git a/src/components/MessageComposer/WithDragAndDropUpload.tsx b/src/components/MessageComposer/WithDragAndDropUpload.tsx index 8abe62e765..7c3afa529f 100644 --- a/src/components/MessageComposer/WithDragAndDropUpload.tsx +++ b/src/components/MessageComposer/WithDragAndDropUpload.tsx @@ -8,7 +8,7 @@ import { useMessageComposerContext, useTranslationContext } from '../../context' import { useAttachmentManagerState, useMessageComposerController } from './hooks'; import { useStateStore } from '../../store'; import { useIsCooldownActive } from './hooks/useIsCooldownActive'; -import { IconFileArrowLeftIn } from '../Icons'; +import { IconUpload } from '../Icons'; const DragAndDropUploadContext = React.createContext<{ subscribeToDrop: ((fn: (files: File[]) => void) => () => void) | null; @@ -166,7 +166,7 @@ export const FileDragAndDropContent = ({

{t('Some of the files will not be accepted')}

) : ( <> - +

{t('Drag your files here')}

)} diff --git a/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap b/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap index ea3bfa5116..43153eb326 100644 --- a/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap +++ b/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap @@ -84,7 +84,7 @@ exports[`AttachmentPreviewList > should render custom BaseImage component 1`] = xmlns="http://www.w3.org/2000/svg" >
@@ -161,7 +161,7 @@ exports[`AttachmentPreviewList > should render custom BaseImage component 1`] = xmlns="http://www.w3.org/2000/svg" >
diff --git a/src/components/MessageComposer/styling/AttachmentPreview.scss b/src/components/MessageComposer/styling/AttachmentPreview.scss index f2d8968fd0..40a4e82f4d 100644 --- a/src/components/MessageComposer/styling/AttachmentPreview.scss +++ b/src/components/MessageComposer/styling/AttachmentPreview.scss @@ -216,7 +216,7 @@ } .str-chat__loading-indicator, - .str-chat__icon--exclamation-circle { + .str-chat__icon--exclamation-mark { width: 14px; height: 14px; position: absolute; diff --git a/src/components/MessageComposer/styling/MessageComposer.scss b/src/components/MessageComposer/styling/MessageComposer.scss index 274cc08a48..8dce5046df 100644 --- a/src/components/MessageComposer/styling/MessageComposer.scss +++ b/src/components/MessageComposer/styling/MessageComposer.scss @@ -250,14 +250,14 @@ } .str-chat__start-recording-audio-button { - .str-chat__icon--microphone { + .str-chat__icon--voice { height: var(--icon-size-md); width: var(--icon-size-md); } } .str-chat__send-button { - .str-chat__icon--paper-plane { + .str-chat__icon--send { height: var(--icon-size-md); width: var(--icon-size-md); } diff --git a/src/components/MessageComposer/styling/QuotedMessagePreview.scss b/src/components/MessageComposer/styling/QuotedMessagePreview.scss index 1c39df10b8..4cef62416e 100644 --- a/src/components/MessageComposer/styling/QuotedMessagePreview.scss +++ b/src/components/MessageComposer/styling/QuotedMessagePreview.scss @@ -45,7 +45,7 @@ width: var(--typography-font-size-xs); } - .str-chat__icon--microphone path { + .str-chat__icon--voice path { stroke-width: 2; } @@ -84,7 +84,7 @@ border-radius: var(--radius-max); background-color: var(--control-play-control-bg); - .str-chat__icon--play-solid { + .str-chat__icon--play-fill { height: 12px; width: 12px; diff --git a/src/components/MessageList/UnreadMessagesNotification.tsx b/src/components/MessageList/UnreadMessagesNotification.tsx index c49dcb7d26..6275eef59b 100644 --- a/src/components/MessageList/UnreadMessagesNotification.tsx +++ b/src/components/MessageList/UnreadMessagesNotification.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { useChannelActionContext, useTranslationContext } from '../../context'; import { Button } from '../Button'; -import { IconArrowUp, IconCrossMedium } from '../Icons'; +import { IconArrowUp, IconXmark } from '../Icons'; import clsx from 'clsx'; export type UnreadMessagesNotificationProps = { @@ -45,7 +45,7 @@ export const UnreadMessagesNotification = ({ : t('Unread messages')} ); diff --git a/src/components/MessageList/UnreadMessagesSeparator.tsx b/src/components/MessageList/UnreadMessagesSeparator.tsx index 5dcc158d46..3cb950b008 100644 --- a/src/components/MessageList/UnreadMessagesSeparator.tsx +++ b/src/components/MessageList/UnreadMessagesSeparator.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { useChannelActionContext, useTranslationContext } from '../../context'; import { Button } from '../Button'; -import { IconCrossMedium } from '../Icons'; +import { IconXmark } from '../Icons'; export const UNREAD_MESSAGE_SEPARATOR_CLASS = 'str-chat__unread-messages-separator'; @@ -39,7 +39,7 @@ export const UnreadMessagesSeparator = ({ size='sm' variant='secondary' > - + ); diff --git a/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap b/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap index adf4ef1c3f..1e0a776741 100644 --- a/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap +++ b/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap @@ -31,17 +31,12 @@ exports[`VirtualizedMessageList > should render the list without any message 1`] class="str-chat__empty-channel" >

EmptyPlaceholder > should render for mai class="str-chat__empty-channel" >

Header > should not render custom head i class="str-chat__virtual-list__loading" > @@ -87,23 +74,15 @@ exports[`VirtualizedMessageComponents > Header > should render LoadingIndicator class="str-chat__virtual-list__loading" > diff --git a/src/components/Modal/CloseButtonOnModalOverlay.tsx b/src/components/Modal/CloseButtonOnModalOverlay.tsx index 164fe4ba51..06bd3f0726 100644 --- a/src/components/Modal/CloseButtonOnModalOverlay.tsx +++ b/src/components/Modal/CloseButtonOnModalOverlay.tsx @@ -1,5 +1,5 @@ import { Button } from '../Button'; -import { IconCrossMedium } from '../Icons'; +import { IconXmark } from '../Icons'; import type { ComponentProps } from 'react'; import clsx from 'clsx'; @@ -14,6 +14,6 @@ export const CloseButtonOnModalOverlay = ({ className={clsx('str-chat__modal__overlay__close-button', className)} {...props} > - {children ?? } + {children ?? } ); diff --git a/src/components/Notifications/Notification.tsx b/src/components/Notifications/Notification.tsx index 314d2bb683..213f084fc9 100644 --- a/src/components/Notifications/Notification.tsx +++ b/src/components/Notifications/Notification.tsx @@ -4,11 +4,11 @@ import type { NotificationSeverity } from 'stream-chat'; import { type Notification as NotificationType } from 'stream-chat'; import { - IconArrowRotateRightLeftRepeatRefresh, - IconCheckmark2, - IconCrossMedium, - IconExclamationCircle, + IconCheckmark, + IconExclamationMark, IconExclamationTriangle, + IconRefresh, + IconXmark, } from '../../components/Icons'; import { useChatContext } from '../../context/ChatContext'; import { useTranslationContext } from '../../context/TranslationContext'; @@ -22,10 +22,10 @@ export type NotificationIconProps = { }; const IconsBySeverity: Record = { - error: IconExclamationCircle, - info: null, // IconCircleInfoTooltip, - loading: IconArrowRotateRightLeftRepeatRefresh, - success: IconCheckmark2, + error: IconExclamationMark, + info: null, // IconInfo, + loading: IconRefresh, + success: IconCheckmark, warning: IconExclamationTriangle, }; @@ -142,7 +142,7 @@ export const Notification = forwardRef( size='sm' variant='secondary' > - + )} diff --git a/src/components/Poll/PollCreationDialog/OptionFieldSet.tsx b/src/components/Poll/PollCreationDialog/OptionFieldSet.tsx index 40a5432326..01792040f9 100644 --- a/src/components/Poll/PollCreationDialog/OptionFieldSet.tsx +++ b/src/components/Poll/PollCreationDialog/OptionFieldSet.tsx @@ -5,7 +5,7 @@ import { useTranslationContext } from '../../../context'; import { useMessageComposerController } from '../../MessageComposer/hooks/useMessageComposerController'; import { useStateStore } from '../../../store'; import type { PollComposerState } from 'stream-chat'; -import { IconCircleMinus, IconDotGrid2x3 } from '../../Icons'; +import { IconMinusCircle, IconReorder } from '../../Icons'; import { Button, type ButtonProps } from '../../Button'; import { TextInputFieldSet } from '../../Form/TextInputFieldSet'; @@ -70,9 +70,7 @@ export const OptionFieldSet = () => { error={!!error} id={option.id} leading={ - draggable ? ( - - ) : undefined + draggable ? : undefined } message={ error ? ( @@ -121,6 +119,6 @@ const RemoveOptionButton = ({ className, ...props }: ButtonProps) => ( variant='secondary' {...props} > - + ); diff --git a/src/components/Poll/PollCreationDialog/PollCreationDialogControls.tsx b/src/components/Poll/PollCreationDialog/PollCreationDialogControls.tsx index 35d0d8a20e..e0330448ce 100644 --- a/src/components/Poll/PollCreationDialog/PollCreationDialogControls.tsx +++ b/src/components/Poll/PollCreationDialog/PollCreationDialogControls.tsx @@ -3,7 +3,7 @@ import { useCanCreatePoll } from '../../MessageComposer/hooks/useCanCreatePoll'; import { useMessageComposerController } from '../../MessageComposer/hooks/useMessageComposerController'; import { useMessageComposerContext, useTranslationContext } from '../../../context'; import clsx from 'clsx'; -import { IconPaperPlane } from '../../Icons'; +import { IconSend } from '../../Icons'; import { Prompt } from '../../Dialog'; export type PollCreationDialogControlsProps = { @@ -46,7 +46,7 @@ export const PollCreationDialogControls = ({ }} type='submit' > - + {t('Send poll')} diff --git a/src/components/Reactions/ReactionSelector.tsx b/src/components/Reactions/ReactionSelector.tsx index 44a5925ca3..9679fa0e8b 100644 --- a/src/components/Reactions/ReactionSelector.tsx +++ b/src/components/Reactions/ReactionSelector.tsx @@ -6,7 +6,7 @@ import { defaultReactionOptions } from './reactionOptions'; import { useComponentContext } from '../../context/ComponentContext'; import { useMessageContext } from '../../context/MessageContext'; import { Button } from '../Button'; -import { IconPlusLarge } from '../Icons'; +import { IconPlus } from '../Icons'; import type { ReactionResponse } from 'stream-chat'; @@ -110,7 +110,7 @@ export const ReactionSelector: ReactionSelectorInterface = (props) => { size='sm' variant='secondary' > - + )} diff --git a/src/components/Search/SearchBar/SearchBar.tsx b/src/components/Search/SearchBar/SearchBar.tsx index 3b66b75f9a..23aeffc387 100644 --- a/src/components/Search/SearchBar/SearchBar.tsx +++ b/src/components/Search/SearchBar/SearchBar.tsx @@ -5,7 +5,7 @@ import { useSearchContext } from '../SearchContext'; import { useSearchQueriesInProgress } from '../hooks'; import { useTranslationContext } from '../../../context'; import { useStateStore } from '../../../store'; -import { Button, IconCircleX, IconMagnifyingGlassSearch } from '../../../components'; +import { Button, IconSearch, IconXCircle } from '../../../components'; import type { SearchControllerState } from 'stream-chat'; @@ -54,7 +54,7 @@ export const SearchBar = () => { 'str-chat__search-bar__input-wrapper--active': isActive, })} > - + { size='xs' variant='secondary' > - + )} diff --git a/src/components/SummarizedMessagePreview/SummarizedMessagePreview.tsx b/src/components/SummarizedMessagePreview/SummarizedMessagePreview.tsx index ba8f85e1c5..a05508338b 100644 --- a/src/components/SummarizedMessagePreview/SummarizedMessagePreview.tsx +++ b/src/components/SummarizedMessagePreview/SummarizedMessagePreview.tsx @@ -7,22 +7,22 @@ import { type UseLatestMessagePreviewParams, } from './hooks/useLatestMessagePreview'; import { - IconCamera1, - IconChainLink, + IconCamera, IconCheckmark1Small, - IconCircleBanSign, + IconChecks, IconClock, - IconDoubleCheckmark1Small, - IconExclamationCircle1, - IconFileBend, - IconMapPin, - IconMicrophone, + IconExclamationCircleFill, + IconFile, + IconLink, + IconLocation, + IconNoSign, IconVideo, + IconVoice, } from '../Icons'; const deliveryStatusIconMap: Record = { - delivered: IconDoubleCheckmark1Small, - read: IconDoubleCheckmark1Small, + delivered: IconChecks, + read: IconChecks, sending: IconClock, sent: IconCheckmark1Small, }; @@ -30,15 +30,15 @@ const deliveryStatusIconMap: Record > = { - deleted: IconCircleBanSign, - error: IconExclamationCircle1, - file: IconFileBend, - giphy: IconFileBend, - image: IconCamera1, - link: IconChainLink, - location: IconMapPin, + deleted: IconNoSign, + error: IconExclamationCircleFill, + file: IconFile, + giphy: IconFile, + image: IconCamera, + link: IconLink, + location: IconLocation, video: IconVideo, - voice: IconMicrophone, + voice: IconVoice, }; export const SummarizedMessagePreview = ({ diff --git a/src/components/Thread/ThreadHeader.tsx b/src/components/Thread/ThreadHeader.tsx index 41aa617128..170cfd22d9 100644 --- a/src/components/Thread/ThreadHeader.tsx +++ b/src/components/Thread/ThreadHeader.tsx @@ -12,7 +12,7 @@ import { useTypingContext } from '../../context/TypingContext'; import type { LocalMessage } from 'stream-chat'; import type { ThreadState } from 'stream-chat'; import { Button } from '../Button'; -import { IconCrossMedium, IconLayoutAlignLeft } from '../Icons'; +import { IconLayoutAlignLeft, IconXmark } from '../Icons'; import { ToggleSidebarButton } from '../Button/ToggleSidebarButton'; import { useChatViewContext } from '../ChatView'; @@ -124,7 +124,7 @@ export const ThreadHeader = (props: ThreadHeaderProps) => { size='md' variant='secondary' > - + )} diff --git a/src/components/Threads/ThreadList/ThreadListEmptyPlaceholder.tsx b/src/components/Threads/ThreadList/ThreadListEmptyPlaceholder.tsx index d536c7a032..a15dc0e523 100644 --- a/src/components/Threads/ThreadList/ThreadListEmptyPlaceholder.tsx +++ b/src/components/Threads/ThreadList/ThreadListEmptyPlaceholder.tsx @@ -1,14 +1,14 @@ import React from 'react'; import { useTranslationContext } from '../../../context'; -import { IconBubbles } from '../../Icons'; +import { IconMessageBubbles } from '../../Icons'; export const ThreadListEmptyPlaceholder = () => { const { t } = useTranslationContext('ThreadListEmptyPlaceholder'); return (

- +

{t('Reply to a message to start a thread')}

); diff --git a/src/components/Threads/ThreadList/ThreadListUnseenThreadsBanner.tsx b/src/components/Threads/ThreadList/ThreadListUnseenThreadsBanner.tsx index 61fc3f6a46..66a96d7aa6 100644 --- a/src/components/Threads/ThreadList/ThreadListUnseenThreadsBanner.tsx +++ b/src/components/Threads/ThreadList/ThreadListUnseenThreadsBanner.tsx @@ -3,7 +3,7 @@ import clsx from 'clsx'; import type { ThreadManagerState } from 'stream-chat'; -import { IconArrowRotateRightLeftRepeatRefresh } from '../../Icons'; +import { IconRefresh } from '../../Icons'; import { useChatContext, useTranslationContext } from '../../../context'; import { useStateStore } from '../../../store'; import { LoadingIndicator } from '../../Loading'; @@ -30,7 +30,7 @@ export const ThreadListUnseenThreadsBanner = () => { > {!isLoading && ( <> - + {t('ThreadListUnseenThreadsBanner/unreadThreads', { count: unseenThreadIds.length, diff --git a/src/components/VideoPlayer/VideoThumbnail.tsx b/src/components/VideoPlayer/VideoThumbnail.tsx index 46adb57eac..724fb2a3ac 100644 --- a/src/components/VideoPlayer/VideoThumbnail.tsx +++ b/src/components/VideoPlayer/VideoThumbnail.tsx @@ -1,7 +1,7 @@ import { BaseImage, type BaseImageProps } from '../BaseImage'; import { Button } from '../Button'; import clsx from 'clsx'; -import { IconPlaySolid } from '../Icons'; +import { IconPlayFill } from '../Icons'; import React from 'react'; import { useTranslationContext } from '../../context'; @@ -34,11 +34,11 @@ export const VideoThumbnail = ({ size='lg' variant='secondary' > - + ) : (
- +
)} diff --git a/src/plugins/Emojis/EmojiPicker.tsx b/src/plugins/Emojis/EmojiPicker.tsx index acc91a28b7..14d4c53482 100644 --- a/src/plugins/Emojis/EmojiPicker.tsx +++ b/src/plugins/Emojis/EmojiPicker.tsx @@ -4,7 +4,7 @@ import Picker from '@emoji-mart/react'; import { useMessageComposerContext, useTranslationContext } from '../../context'; import { Button, - IconEmojiSmile, + IconEmoji, type PopperLikePlacement, useMessageComposerController, } from '../../components'; @@ -67,7 +67,7 @@ export const EmojiPicker = (props: EmojiPickerProps) => { const { pickerContainerClassName, wrapperClassName } = classNames; - const { ButtonIconComponent = IconEmojiSmile } = props; + const { ButtonIconComponent = IconEmoji } = props; useEffect(() => { if (!popperElement || !referenceElement) return; From 3c24b6186156f293a74a4b2480f7fa3fc223ffa9 Mon Sep 17 00:00:00 2001 From: Oliver Lazoroski Date: Mon, 30 Mar 2026 11:45:27 +0200 Subject: [PATCH 2/5] fix(Icons): use Flat/16 SVGs for arrow-up, message-bubbles, and unpin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace Line/Flat-20 fallbacks with proper 16×16 flat SVGs now that they are available in the design export. Removes viewBox overrides. --- src/components/Icons/icons.tsx | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/src/components/Icons/icons.tsx b/src/components/Icons/icons.tsx index 089903e15e..5e900e9964 100644 --- a/src/components/Icons/icons.tsx +++ b/src/components/Icons/icons.tsx @@ -66,14 +66,7 @@ export const IconReply = createIcon( export const IconArrowUp = createIcon( 'IconArrowUp', - , - { viewBox: '0 0 20 20' }, + , ); export const IconArrowsRepeatLeftRight = createIcon( @@ -136,14 +129,7 @@ export const IconBrowserAISparkle = createIcon( // was: IconBubbles export const IconMessageBubbles = createIcon( 'IconMessageBubbles', - , - { viewBox: '0 0 20 20' }, + , ); // was: IconBubble2ChatMessage @@ -1059,8 +1045,7 @@ export const IconUnlock = createIcon( export const IconUnpin = createIcon( 'IconUnpin', - , - { viewBox: '0 0 20 20' }, + , ); export const IconUsers = createIcon( From b9666344ddd5d2b91efef11b76bad2c06e2950b8 Mon Sep 17 00:00:00 2001 From: Oliver Lazoroski Date: Mon, 30 Mar 2026 11:58:54 +0200 Subject: [PATCH 3/5] chore(Icons): remove 71 unused icon exports Remove icon constants that are not used anywhere in the SDK or examples. Reduces icons.tsx from 130 to 59 exports. --- src/components/Icons/icons.tsx | 556 --------------------------------- 1 file changed, 556 deletions(-) diff --git a/src/components/Icons/icons.tsx b/src/components/Icons/icons.tsx index 5e900e9964..18e4424cb7 100644 --- a/src/components/Icons/icons.tsx +++ b/src/components/Icons/icons.tsx @@ -2,16 +2,6 @@ import React from 'react'; import { createIcon } from './createIcon'; -export const IconApiAggregate = createIcon( - 'IconApiAggregate', - , -); - -export const IconApples = createIcon( - 'IconApples', - , -); - // was: IconArrowBoxLeft export const IconLeave = createIcon( 'IconLeave', @@ -69,26 +59,6 @@ export const IconArrowUp = createIcon( , ); -export const IconArrowsRepeatLeftRight = createIcon( - 'IconArrowsRepeatLeftRight', - , -); - -// was: IconAt -export const IconMention = createIcon( - 'IconMention', - , -); - -export const IconAtSolid = createIcon( - 'IconAtSolid', - , -); - // was: IconBellNotification export const IconBell = createIcon( 'IconBell', @@ -112,20 +82,6 @@ export const IconUnsave = createIcon( , ); -export const IconBrowserAISparkle = createIcon( - 'IconBrowserAISparkle', - <> - - - - - , -); - // was: IconBubbles export const IconMessageBubbles = createIcon( 'IconMessageBubbles', @@ -149,16 +105,6 @@ export const IconBubble3ChatMessage = createIcon( , ); -export const IconBubble3Solid = createIcon( - 'IconBubble3Solid', - , -); - -export const IconBubbleAnnotation2ChatMessage = createIcon( - 'IconBubbleAnnotation2ChatMessage', - , -); - // was: IconBubbleText6ChatMessage export const IconThread = createIcon( 'IconThread', @@ -183,52 +129,12 @@ export const IconNotification = createIcon( , ); -export const IconBubbleWideSparkleChatMessage = createIcon( - 'IconBubbleWideSparkleChatMessage', - <> - - - , -); - -export const IconCalendar1 = createIcon( - 'IconCalendar1', - , -); - -export const IconCallCancel = createIcon( - 'IconCallCancel', - <> - - - , -); - // was: IconCamera1 export const IconCamera = createIcon( 'IconCamera', , ); -export const IconCar1 = createIcon( - 'IconCar1', - , -); - -export const IconCat = createIcon( - 'IconCat', - <> - - - - - , -); - // was: IconChainLink export const IconLink = createIcon( 'IconLink', @@ -252,21 +158,11 @@ export const IconCheckmark = createIcon( , ); -export const IconCheckmark2Small = createIcon( - 'IconCheckmark2Small', - , -); - export const IconChevronDown = createIcon( 'IconChevronDown', , ); -export const IconChevronGrabberVerticalSelector = createIcon( - 'IconChevronGrabberVerticalSelector', - , -); - export const IconChevronLeft = createIcon( 'IconChevronLeft', , @@ -277,22 +173,12 @@ export const IconChevronRight = createIcon( , ); -export const IconChevronTop = createIcon( - 'IconChevronTop', - , -); - // was: IconCircleBanSign export const IconNoSign = createIcon( 'IconNoSign', , ); -export const IconCircleCheck = createIcon( - 'IconCircleCheck', - , -); - // was: IconCircleInfoTooltip export const IconInfo = createIcon( 'IconInfo', @@ -309,20 +195,6 @@ export const IconMinusCircle = createIcon( , ); -export const IconCircleQuestionmark = createIcon( - 'IconCircleQuestionmark', - , -); - -export const IconCircleQuestionmarkFilled = createIcon( - 'IconCircleQuestionmarkFilled', - , -); - // was: IconCircleX export const IconXCircle = createIcon( 'IconXCircle', @@ -334,63 +206,12 @@ export const IconClock = createIcon( , ); -export const IconClockSolid = createIcon( - 'IconClockSolid', - , -); - // was: IconCloseQuote2 export const IconQuote = createIcon( 'IconQuote', , ); -export const IconCode = createIcon( - 'IconCode', - <> - - - - , - { viewBox: '0 0 19 24' }, -); - -export const IconCodeBrackets = createIcon( - 'IconCodeBrackets', - , -); - -export const IconCodeEditorInsert = createIcon( - 'IconCodeEditorInsert', - , -); - -export const IconCompass = createIcon( - 'IconCompass', - , -); - -export const IconCreditCard2Billing = createIcon( - 'IconCreditCard2Billing', - , -); - // was: IconCrossMedium export const IconXmark = createIcon( 'IconXmark', @@ -418,16 +239,6 @@ export const IconReorder = createIcon( , ); -export const IconDotsGrid1x3Vertical = createIcon( - 'IconDotsGrid1x3Vertical', - <> - - - - - , -); - // was: IconDoubleCheckmark1Small export const IconChecks = createIcon( 'IconChecks', @@ -440,40 +251,6 @@ export const IconEdit = createIcon( , ); -export const IconEditBigSolid = createIcon( - 'IconEditBigSolid', - <> - - - , -); - -// was: IconEmojiAddReaction -export const IconEmojiAdd = createIcon( - 'IconEmojiAdd', - <> - - - - - - , -); - -export const IconEmojiSad = createIcon( - 'IconEmojiSad', - <> - - - - - , -); - // was: IconEmojiSmile export const IconEmoji = createIcon( 'IconEmoji', @@ -510,12 +287,6 @@ export const IconExclamationMark = createIcon( , ); -// was: IconExclamationTriangle1 -export const IconExclamationTriangleFill = createIcon( - 'IconExclamationTriangleFill', - , -); - // no new icon mapping export const IconExclamationTriangle = createIcon( 'IconExclamationTriangle', @@ -540,97 +311,18 @@ export const IconFile = createIcon( , ); -export const IconFilledCircleInfoTooltip = createIcon( - 'IconFilledCircleInfoTooltip', - , -); - -export const IconFilter1 = createIcon( - 'IconFilter1', - , -); - // was: IconFlag2 export const IconFlag = createIcon( 'IconFlag', , ); -export const IconGauge = createIcon( - 'IconGauge', - , -); - -export const IconGoogle = createIcon( - 'IconGoogle', - <> - - - - - , -); - -export const IconHashtagChannel = createIcon( - 'IconHashtagChannel', - , -); - -export const IconHeart2 = createIcon( - 'IconHeart2', - , -); - -export const IconHistory = createIcon( - 'IconHistory', - , -); - // was: IconImages1Alt export const IconImage = createIcon( 'IconImage', , ); -export const IconInvite = createIcon( - 'IconInvite', - , -); - -// was: IconLayersBehind -export const IconPresentation = createIcon( - 'IconPresentation', - <> - - - - - - - - - - - , - { viewBox: '0 0 19 24' }, -); - // no new icon mapping export const IconLayoutAlignLeft = createIcon( 'IconLayoutAlignLeft', @@ -646,11 +338,6 @@ export const IconLayoutAlignLeft = createIcon( , ); -export const IconLayoutGrid1 = createIcon( - 'IconLayoutGrid1', - , -); - export const IconLightBulbSimple = createIcon( 'IconLightBulbSimple', <> @@ -659,25 +346,6 @@ export const IconLightBulbSimple = createIcon( , ); -export const IconLimits = createIcon( - 'IconLimits', - , -); - -export const IconLineChart3 = createIcon( - 'IconLineChart3', - , -); - -export const IconLock = createIcon( - 'IconLock', - <> - - - - , -); - // was: IconMagnifyingGlassSearch export const IconSearch = createIcon( 'IconSearch', @@ -718,60 +386,30 @@ export const IconMute = createIcon( , ); -export const IconNewspaper2 = createIcon( - 'IconNewspaper2', - , -); - -export const IconOrganization = createIcon( - 'IconOrganization', - , -); - // was: IconPaperPlane export const IconSend = createIcon( 'IconSend', , ); -export const IconPaperPlaneTopRight = createIcon( - 'IconPaperPlaneTopRight', - , -); - // was: IconPaperclip export const IconAttachment = createIcon( 'IconAttachment', , ); -export const IconParagraphsText = createIcon( - 'IconParagraphsText', - , -); - // was: IconPause export const IconPauseFill = createIcon( 'IconPauseFill', , ); -export const IconPencil = createIcon( - 'IconPencil', - , -); - // was: IconPeople export const IconUser = createIcon( 'IconUser', , ); -export const IconPeople2 = createIcon( - 'IconPeople2', - , -); - // was: IconPeopleAdd export const IconUserAdd = createIcon( 'IconUserAdd', @@ -802,22 +440,6 @@ export const IconUserCheck = createIcon( , ); -// was: IconPeopleCircle -export const IconAccount = createIcon( - 'IconAccount', - , -); - -export const IconPeopleCopy = createIcon( - 'IconPeopleCopy', - , -); - -export const IconPeopleEditUserRights = createIcon( - 'IconPeopleEditUserRights', - , -); - // was: IconPeopleRemove export const IconUserRemove = createIcon( 'IconUserRemove', @@ -833,27 +455,6 @@ export const IconUserRemove = createIcon( , ); -export const IconPersona = createIcon( - 'IconPersona', - <> - - - - - - - - - - - - - - - - , -); - export const IconPin = createIcon( 'IconPin', , @@ -882,121 +483,17 @@ export const IconCommand = createIcon( , ); -export const IconSearchText = createIcon( - 'IconSearchText', - , -); - export const IconSettingsGear2 = createIcon( 'IconSettingsGear2', , ); -export const IconSettingsSliderVer = createIcon( - 'IconSettingsSliderVer', - , -); - -export const IconShapesPlusCloseSquareCircle = createIcon( - 'IconShapesPlusCloseSquareCircle', - , -); - -export const IconShapesTriangleSquareCircle = createIcon( - 'IconShapesTriangleSquareCircle', - , -); - -// was: IconShareRedirectLink -export const IconExport = createIcon( - 'IconExport', - , -); - -export const IconShield = createIcon( - 'IconShield', - , -); - // was: IconSquareBehindSquare2_Copy export const IconCopy = createIcon( 'IconCopy', , ); -export const IconSquareCircleTopRightFeeds = createIcon( - 'IconSquareCircleTopRightFeeds', - , -); - -// was: IconStop -export const IconStopFill = createIcon( - 'IconStopFill', - , -); - -// was: IconTable -export const IconSpreadsheet = createIcon( - 'IconSpreadsheet', - <> - - - - , - { viewBox: '0 0 19 24' }, -); - -export const IconTeam = createIcon( - 'IconTeam', - <> - - - - - - - - - , -); - -export const IconTennis = createIcon( - 'IconTennis', - , -); - -export const IconTextToImageURLEnrichment = createIcon( - 'IconTextToImageURLEnrichment', - <> - - - - - - - , -); - // no new icon mapping export const IconThunder = createIcon( 'IconThunder', @@ -1023,45 +520,16 @@ export const IconDelete = createIcon( , ); -export const IconTrending4 = createIcon( - 'IconTrending4', - , -); - export const IconTrophy = createIcon( 'IconTrophy', , ); -// was: IconUnlocked -export const IconUnlock = createIcon( - 'IconUnlock', - <> - - - - , -); - export const IconUnpin = createIcon( 'IconUnpin', , ); -export const IconUsers = createIcon( - 'IconUsers', - <> - - - - - - - - - , -); - export const IconVideo = createIcon( 'IconVideo', <> @@ -1091,36 +559,12 @@ export const IconVideoFill = createIcon( , ); -export const IconVoiceAndVideo = createIcon( - 'IconVoiceAndVideo', - <> - - - - - - - - - , -); - -export const IconVoiceHigh = createIcon( - 'IconVoiceHigh', - , -); - // was: IconVolumeFull export const IconAudio = createIcon( 'IconAudio', , ); -export const IconWebhook = createIcon( - 'IconWebhook', - , -); - export const IconArchive = createIcon( 'IconArchive', , From 0be215a63cf4fbfd47138e6adce16d292c99aed3 Mon Sep 17 00:00:00 2001 From: Oliver Lazoroski Date: Mon, 30 Mar 2026 12:51:31 +0200 Subject: [PATCH 4/5] feat(Icons): switch to Line SVG variants for controllable stroke weight MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace Flat/16 (filled path) icons with Line (stroke-based, 20×20) variants. This gives icons a consistent 1.5px stroke weight that can be adjusted via the strokeWidth attribute rather than being baked into path geometry. - Update BaseIcon default viewBox from 0 0 16 16 → 0 0 20 20 - Add fill='none' on stroke-based paths to prevent CSS fill override - Add { viewBox: '0 0 16 16' } override on 8 legacy icons that still use 16×16 coordinate paths --- .../__snapshots__/Card.test.tsx.snap | 225 ++++-- .../__snapshots__/Image.test.tsx.snap | 41 +- src/components/Icons/BaseIcon.tsx | 2 +- .../Filetype/filetype-audio-lg.svg | 6 + .../Filetype/filetype-audio-md.svg | 5 + .../Filetype/filetype-audio-sm.svg | 5 + .../Filetype/filetype-audio-xl.svg | 6 + .../Filetype/filetype-code-lg.svg | 6 + .../Filetype/filetype-code-md.svg | 12 + .../Filetype/filetype-code-sm.svg | 5 + .../Filetype/filetype-code-xl.svg | 6 + .../Filetype/filetype-compression-lg.svg | 6 + .../Filetype/filetype-compression-md.svg | 5 + .../Filetype/filetype-compression-sm.svg | 5 + .../Filetype/filetype-compression-xl.svg | 6 + .../Filetype/filetype-other-lg.svg | 7 + .../Filetype/filetype-other-md.svg | 7 + .../Filetype/filetype-other-sm.svg | 14 + .../Filetype/filetype-other-xl.svg | 7 + .../icons-export/Filetype/filetype-pdf-lg.svg | 13 + .../icons-export/Filetype/filetype-pdf-md.svg | 12 + .../icons-export/Filetype/filetype-pdf-sm.svg | 12 + .../icons-export/Filetype/filetype-pdf-xl.svg | 13 + .../Filetype/filetype-presentation-lg.svg | 6 + .../Filetype/filetype-presentation-md.svg | 5 + .../Filetype/filetype-presentation-sm.svg | 12 + .../Filetype/filetype-presentation-xl.svg | 6 + .../Filetype/filetype-spreadsheet-lg.svg | 6 + .../Filetype/filetype-spreadsheet-md.svg | 5 + .../Filetype/filetype-spreadsheet-sm.svg | 5 + .../Filetype/filetype-spreadsheet-xl.svg | 6 + .../Filetype/filetype-text-lg.svg | 8 + .../Filetype/filetype-text-md.svg | 7 + .../Filetype/filetype-text-sm.svg | 14 + .../Filetype/filetype-text-xl.svg | 8 + .../Filetype/filetype-video-lg.svg | 13 + .../Filetype/filetype-video-md.svg | 12 + .../Filetype/filetype-video-sm.svg | 12 + .../Filetype/filetype-video-xl.svg | 13 + .../Icons/icons-export/Flat/12/account-12.svg | 10 + .../Icons/icons-export/Flat/12/archive-12.svg | 3 + .../Flat/12/arrow-down-circle-12.svg | 10 + .../icons-export/Flat/12/arrow-left-12.svg | 3 + .../icons-export/Flat/12/arrow-up-12.svg | 3 + .../Flat/12/arrow-up-right-12.svg | 3 + .../icons-export/Flat/12/attachment-12.svg | 3 + .../Icons/icons-export/Flat/12/audio-12.svg | 10 + .../Icons/icons-export/Flat/12/bell-12.svg | 3 + .../icons-export/Flat/12/bell-off-12.svg | 3 + .../Icons/icons-export/Flat/12/bolt-12.svg | 3 + .../Icons/icons-export/Flat/12/camera-12.svg | 3 + .../icons-export/Flat/12/checkmark-12.svg | 3 + .../Icons/icons-export/Flat/12/checks-12.svg | 3 + .../icons-export/Flat/12/chevron-down-12.svg | 3 + .../icons-export/Flat/12/chevron-left-12.svg | 3 + .../icons-export/Flat/12/chevron-right-12.svg | 3 + .../Icons/icons-export/Flat/12/clock-12.svg | 10 + .../Icons/icons-export/Flat/12/command-12.svg | 3 + .../Icons/icons-export/Flat/12/copy-12.svg | 3 + .../Icons/icons-export/Flat/12/delete-12.svg | 3 + .../Icons/icons-export/Flat/12/edit-12.svg | 3 + .../Icons/icons-export/Flat/12/emoji-12.svg | 13 + .../icons-export/Flat/12/emoji-add-12.svg | 14 + .../Flat/12/exclamation-circle-fill-12.svg | 3 + .../Flat/12/exclamation-mark-12.svg | 12 + .../Flat/12/exclamation-mark-fill-12.svg | 4 + .../Flat/12/exclamation-triangle-fill-12.svg | 3 + .../Icons/icons-export/Flat/12/export-12.svg | 3 + .../Icons/icons-export/Flat/12/file-12.svg | 3 + .../Icons/icons-export/Flat/12/flag-12.svg | 3 + .../Icons/icons-export/Flat/12/folder-12.svg | 3 + .../Icons/icons-export/Flat/12/gallery-12.svg | 3 + .../Icons/icons-export/Flat/12/giphy-12.svg | 11 + .../Icons/icons-export/Flat/12/image-12.svg | 3 + .../Icons/icons-export/Flat/12/imgur-12.svg | 5 + .../Icons/icons-export/Flat/12/info-12.svg | 12 + .../Icons/icons-export/Flat/12/leave-12.svg | 3 + .../Icons/icons-export/Flat/12/link-12.svg | 10 + .../Icons/icons-export/Flat/12/loading-12.svg | 11 + .../icons-export/Flat/12/location-12.svg | 3 + .../Icons/icons-export/Flat/12/lock-12.svg | 5 + .../Icons/icons-export/Flat/12/mention-12.svg | 10 + .../Flat/12/message-bubble-12.svg | 10 + .../Flat/12/message-bubble-fill-12.svg | 3 + .../Flat/12/message-bubbles-12.svg | 10 + .../Icons/icons-export/Flat/12/minus-12.svg | 3 + .../icons-export/Flat/12/minus-circle-12.svg | 10 + .../Icons/icons-export/Flat/12/more-12.svg | 5 + .../Icons/icons-export/Flat/12/mute-12.svg | 10 + .../Icons/icons-export/Flat/12/no-sign-12.svg | 10 + .../icons-export/Flat/12/notification-12.svg | 3 + .../icons-export/Flat/12/pause-fill-12.svg | 3 + .../Icons/icons-export/Flat/12/pin-12.svg | 3 + .../icons-export/Flat/12/play-fill-12.svg | 3 + .../Icons/icons-export/Flat/12/plus-12.svg | 3 + .../Icons/icons-export/Flat/12/poll-12.svg | 3 + .../Icons/icons-export/Flat/12/quote-12.svg | 3 + .../Icons/icons-export/Flat/12/refresh-12.svg | 3 + .../Icons/icons-export/Flat/12/reorder-12.svg | 3 + .../Icons/icons-export/Flat/12/reply-12.svg | 3 + .../Icons/icons-export/Flat/12/retry-12.svg | 3 + .../Icons/icons-export/Flat/12/save-12.svg | 3 + .../Icons/icons-export/Flat/12/search-12.svg | 10 + .../Icons/icons-export/Flat/12/send-12.svg | 3 + .../Icons/icons-export/Flat/12/share-12.svg | 3 + .../Icons/icons-export/Flat/12/sidebar-12.svg | 3 + .../icons-export/Flat/12/stop-fill-12.svg | 3 + .../Icons/icons-export/Flat/12/thread-12.svg | 10 + .../icons-export/Flat/12/thread-fill-12.svg | 3 + .../icons-export/Flat/12/translate-12.svg | 3 + .../Icons/icons-export/Flat/12/trophy-12.svg | 3 + .../Icons/icons-export/Flat/12/unlock-12.svg | 5 + .../Icons/icons-export/Flat/12/unpin-12.svg | 3 + .../Icons/icons-export/Flat/12/unsave-12.svg | 3 + .../Icons/icons-export/Flat/12/upload-12.svg | 3 + .../Icons/icons-export/Flat/12/user-12.svg | 3 + .../icons-export/Flat/12/user-add-12.svg | 10 + .../icons-export/Flat/12/user-check-12.svg | 10 + .../icons-export/Flat/12/user-remove-12.svg | 10 + .../Icons/icons-export/Flat/12/users-12.svg | 10 + .../Icons/icons-export/Flat/12/video-12.svg | 10 + .../icons-export/Flat/12/video-fill-12.svg | 10 + .../Icons/icons-export/Flat/12/voice-12.svg | 3 + .../icons-export/Flat/12/voice-fill-12.svg | 3 + .../icons-export/Flat/12/x-circle-12.svg | 10 + .../Icons/icons-export/Flat/12/xmark-12.svg | 3 + .../Icons/icons-export/Flat/16/account-16.svg | 3 + .../Icons/icons-export/Flat/16/archive-16.svg | 3 + .../Flat/16/arrow-down-circle-16.svg | 3 + .../icons-export/Flat/16/arrow-left-16.svg | 3 + .../icons-export/Flat/16/arrow-up-16.svg | 3 + .../Flat/16/arrow-up-right-16.svg | 3 + .../icons-export/Flat/16/attachment-16.svg | 3 + .../Icons/icons-export/Flat/16/audio-16.svg | 3 + .../Icons/icons-export/Flat/16/bell-16.svg | 3 + .../icons-export/Flat/16/bell-off-16.svg | 3 + .../Icons/icons-export/Flat/16/bolt-16.svg | 3 + .../Icons/icons-export/Flat/16/camera-16.svg | 3 + .../icons-export/Flat/16/checkmark-16.svg | 3 + .../Icons/icons-export/Flat/16/checks-16.svg | 3 + .../icons-export/Flat/16/chevron-down-16.svg | 3 + .../icons-export/Flat/16/chevron-left-16.svg | 3 + .../icons-export/Flat/16/chevron-right-16.svg | 3 + .../Icons/icons-export/Flat/16/clock-16.svg | 3 + .../Icons/icons-export/Flat/16/command-16.svg | 3 + .../Icons/icons-export/Flat/16/copy-16.svg | 3 + .../Icons/icons-export/Flat/16/delete-16.svg | 3 + .../Icons/icons-export/Flat/16/edit-16.svg | 3 + .../Icons/icons-export/Flat/16/emoji-16.svg | 6 + .../icons-export/Flat/16/emoji-add-16.svg | 7 + .../Flat/16/exclamation-circle-fill-16.svg | 3 + .../Flat/16/exclamation-mark-16.svg | 5 + .../Flat/16/exclamation-mark-fill-16.svg | 4 + .../Flat/16/exclamation-triangle-fill-16.svg | 3 + .../Icons/icons-export/Flat/16/export-16.svg | 3 + .../Icons/icons-export/Flat/16/file-16.svg | 3 + .../Icons/icons-export/Flat/16/flag-16.svg | 3 + .../Icons/icons-export/Flat/16/folder-16.svg | 3 + .../Icons/icons-export/Flat/16/gallery-16.svg | 3 + .../Icons/icons-export/Flat/16/giphy-16.svg | 11 + .../Icons/icons-export/Flat/16/image-16.svg | 3 + .../Icons/icons-export/Flat/16/imgur-16.svg | 5 + .../Icons/icons-export/Flat/16/info-16.svg | 5 + .../Icons/icons-export/Flat/16/leave-16.svg | 3 + .../Icons/icons-export/Flat/16/link-16.svg | 3 + .../Icons/icons-export/Flat/16/loading-16.svg | 4 + .../icons-export/Flat/16/location-16.svg | 3 + .../Icons/icons-export/Flat/16/lock-16.svg | 5 + .../Icons/icons-export/Flat/16/mention-16.svg | 3 + .../Flat/16/message-bubble-16.svg | 3 + .../Flat/16/message-bubble-fill-16.svg | 3 + .../Flat/16/message-bubbles-16.svg | 3 + .../Icons/icons-export/Flat/16/minus-16.svg | 3 + .../icons-export/Flat/16/minus-circle-16.svg | 3 + .../Icons/icons-export/Flat/16/more-16.svg | 5 + .../Icons/icons-export/Flat/16/mute-16.svg | 3 + .../Icons/icons-export/Flat/16/no-sign-16.svg | 3 + .../icons-export/Flat/16/notification-16.svg | 3 + .../icons-export/Flat/16/pause-fill-16.svg | 3 + .../Icons/icons-export/Flat/16/pin-16.svg | 3 + .../icons-export/Flat/16/play-fill-16.svg | 3 + .../Icons/icons-export/Flat/16/plus-16-1.svg | 3 + .../Icons/icons-export/Flat/16/plus-16.svg | 3 + .../Icons/icons-export/Flat/16/poll-16.svg | 3 + .../Icons/icons-export/Flat/16/quote-16.svg | 3 + .../Icons/icons-export/Flat/16/refresh-16.svg | 3 + .../Icons/icons-export/Flat/16/reorder-16.svg | 3 + .../Icons/icons-export/Flat/16/reply-16.svg | 3 + .../Icons/icons-export/Flat/16/retry-16.svg | 3 + .../Icons/icons-export/Flat/16/save-16.svg | 3 + .../Icons/icons-export/Flat/16/search-16.svg | 3 + .../Icons/icons-export/Flat/16/send-16.svg | 3 + .../Icons/icons-export/Flat/16/share-16.svg | 3 + .../Icons/icons-export/Flat/16/sidebar-16.svg | 3 + .../icons-export/Flat/16/stop-fill-16.svg | 3 + .../Icons/icons-export/Flat/16/thread-16.svg | 3 + .../icons-export/Flat/16/thread-fill-16.svg | 3 + .../icons-export/Flat/16/translate-16.svg | 3 + .../Icons/icons-export/Flat/16/trophy-16.svg | 3 + .../Icons/icons-export/Flat/16/unlock-16.svg | 5 + .../Icons/icons-export/Flat/16/unpin-16.svg | 3 + .../Icons/icons-export/Flat/16/unsave-16.svg | 3 + .../Icons/icons-export/Flat/16/upload-16.svg | 3 + .../Icons/icons-export/Flat/16/user-16.svg | 3 + .../icons-export/Flat/16/user-add-16.svg | 10 + .../icons-export/Flat/16/user-check-16.svg | 10 + .../icons-export/Flat/16/user-remove-16.svg | 10 + .../Icons/icons-export/Flat/16/users-16.svg | 10 + .../Icons/icons-export/Flat/16/video-16.svg | 10 + .../icons-export/Flat/16/video-fill-16.svg | 10 + .../Icons/icons-export/Flat/16/voice-16.svg | 3 + .../icons-export/Flat/16/voice-fill-16.svg | 3 + .../icons-export/Flat/16/x-circle-16.svg | 3 + .../Icons/icons-export/Flat/16/xmark-16.svg | 3 + .../Icons/icons-export/Flat/20/account-20.svg | 3 + .../Icons/icons-export/Flat/20/archive-20.svg | 3 + .../Flat/20/arrow-down-circle-20.svg | 3 + .../icons-export/Flat/20/arrow-left-20.svg | 3 + .../icons-export/Flat/20/arrow-up-20.svg | 3 + .../Flat/20/arrow-up-right-20.svg | 3 + .../icons-export/Flat/20/attachment-20.svg | 3 + .../Icons/icons-export/Flat/20/audio-20.svg | 3 + .../Icons/icons-export/Flat/20/bell-20.svg | 3 + .../icons-export/Flat/20/bell-off-20.svg | 3 + .../Icons/icons-export/Flat/20/bolt-20.svg | 3 + .../Icons/icons-export/Flat/20/camera-20.svg | 3 + .../icons-export/Flat/20/checkmark-20.svg | 3 + .../Icons/icons-export/Flat/20/checks-20.svg | 3 + .../icons-export/Flat/20/chevron-down-20.svg | 3 + .../icons-export/Flat/20/chevron-left-20.svg | 3 + .../icons-export/Flat/20/chevron-right-20.svg | 3 + .../Icons/icons-export/Flat/20/clock-20.svg | 3 + .../Icons/icons-export/Flat/20/command-20.svg | 3 + .../Icons/icons-export/Flat/20/copy-20.svg | 3 + .../Icons/icons-export/Flat/20/delete-20.svg | 3 + .../Icons/icons-export/Flat/20/edit-20.svg | 3 + .../Icons/icons-export/Flat/20/emoji-20.svg | 6 + .../icons-export/Flat/20/emoji-add-20.svg | 7 + .../Flat/20/exclamation-circle-fill-20.svg | 3 + .../Flat/20/exclamation-mark-20.svg | 5 + .../Flat/20/exclamation-mark-fill-20.svg | 4 + .../Flat/20/exclamation-triangle-fill-20.svg | 3 + .../Icons/icons-export/Flat/20/export-20.svg | 3 + .../Icons/icons-export/Flat/20/file-20.svg | 3 + .../Icons/icons-export/Flat/20/flag-20.svg | 3 + .../Icons/icons-export/Flat/20/folder-20.svg | 3 + .../Icons/icons-export/Flat/20/gallery-20.svg | 3 + .../Icons/icons-export/Flat/20/giphy-20.svg | 11 + .../Icons/icons-export/Flat/20/image-20.svg | 3 + .../Icons/icons-export/Flat/20/imgur-20.svg | 5 + .../Icons/icons-export/Flat/20/link-20.svg | 3 + .../Icons/icons-export/Flat/20/loading-20.svg | 4 + .../icons-export/Flat/20/location-20.svg | 3 + .../Icons/icons-export/Flat/20/lock-20.svg | 5 + .../Icons/icons-export/Flat/20/mention-20.svg | 3 + .../Flat/20/message-bubble-20.svg | 3 + .../Flat/20/message-bubble-fill-20.svg | 3 + .../Flat/20/message-bubbles-20.svg | 3 + .../Icons/icons-export/Flat/20/minus-20.svg | 3 + .../Icons/icons-export/Flat/20/more-20.svg | 5 + .../Icons/icons-export/Flat/20/mute-20.svg | 3 + .../Icons/icons-export/Flat/20/no-sign-20.svg | 3 + .../icons-export/Flat/20/notification-20.svg | 3 + .../icons-export/Flat/20/pause-fill-20.svg | 3 + .../Icons/icons-export/Flat/20/pin-20.svg | 3 + .../icons-export/Flat/20/play-fill-20.svg | 3 + .../Icons/icons-export/Flat/20/plus-20.svg | 3 + .../Icons/icons-export/Flat/20/poll-20.svg | 3 + .../Icons/icons-export/Flat/20/quote-20.svg | 3 + .../Icons/icons-export/Flat/20/refresh-20.svg | 3 + .../Icons/icons-export/Flat/20/reorder-20.svg | 3 + .../Icons/icons-export/Flat/20/reply-20.svg | 3 + .../Icons/icons-export/Flat/20/retry-20.svg | 3 + .../Icons/icons-export/Flat/20/save-20.svg | 3 + .../Icons/icons-export/Flat/20/search-20.svg | 3 + .../Icons/icons-export/Flat/20/send-20.svg | 3 + .../Icons/icons-export/Flat/20/share-20.svg | 3 + .../icons-export/Flat/20/stop-fill-20.svg | 3 + .../Icons/icons-export/Flat/20/thread-20.svg | 3 + .../icons-export/Flat/20/thread-fill-20.svg | 3 + .../icons-export/Flat/20/translate-20.svg | 3 + .../Icons/icons-export/Flat/20/trophy-20.svg | 3 + .../Icons/icons-export/Flat/20/unpin-20.svg | 3 + .../Icons/icons-export/Flat/20/unsave-20.svg | 3 + .../Icons/icons-export/Flat/20/upload-20.svg | 3 + .../Icons/icons-export/Flat/20/user-20.svg | 3 + .../icons-export/Flat/20/user-add-20.svg | 10 + .../icons-export/Flat/20/user-check-20.svg | 10 + .../icons-export/Flat/20/user-remove-20.svg | 10 + .../Icons/icons-export/Flat/20/users-20.svg | 3 + .../Icons/icons-export/Flat/20/video-20.svg | 10 + .../icons-export/Flat/20/video-fill-20.svg | 10 + .../Icons/icons-export/Flat/20/voice-20.svg | 3 + .../icons-export/Flat/20/voice-fill-20.svg | 3 + .../Icons/icons-export/Flat/20/xmark-20.svg | 3 + .../Icons/icons-export/Flat/32/account-32.svg | 3 + .../Icons/icons-export/Flat/32/archive-32.svg | 3 + .../Flat/32/arrow-down-circle-32.svg | 3 + .../icons-export/Flat/32/arrow-left-32.svg | 3 + .../icons-export/Flat/32/arrow-up-32.svg | 3 + .../Flat/32/arrow-up-right-32.svg | 3 + .../icons-export/Flat/32/attachment-32.svg | 3 + .../Icons/icons-export/Flat/32/audio-32.svg | 3 + .../Icons/icons-export/Flat/32/bell-32.svg | 3 + .../icons-export/Flat/32/bell-off-32.svg | 3 + .../Icons/icons-export/Flat/32/bolt-32.svg | 3 + .../Icons/icons-export/Flat/32/camera-32.svg | 3 + .../icons-export/Flat/32/checkmark-32.svg | 3 + .../Icons/icons-export/Flat/32/checks-32.svg | 3 + .../icons-export/Flat/32/chevron-down-32.svg | 3 + .../icons-export/Flat/32/chevron-left-32.svg | 3 + .../icons-export/Flat/32/chevron-right-32.svg | 3 + .../Icons/icons-export/Flat/32/command-20.svg | 3 + .../Icons/icons-export/Flat/32/copy-32.svg | 3 + .../Icons/icons-export/Flat/32/delete-.svg | 3 + .../Icons/icons-export/Flat/32/edit-32.svg | 3 + .../Icons/icons-export/Flat/32/emoji-.svg | 6 + .../icons-export/Flat/32/emoji-add-32.svg | 7 + .../Flat/32/exclamation-circle-fill-32.svg | 3 + .../Flat/32/exclamation-mark-32.svg | 5 + .../Flat/32/exclamation-mark-fill-32.svg | 4 + .../Flat/32/exclamation-triangle-fill-32.svg | 3 + .../Icons/icons-export/Flat/32/export-32.svg | 3 + .../Icons/icons-export/Flat/32/file-32.svg | 3 + .../Icons/icons-export/Flat/32/flag-32.svg | 3 + .../Icons/icons-export/Flat/32/folder-32.svg | 3 + .../Icons/icons-export/Flat/32/gallery-32.svg | 3 + .../Icons/icons-export/Flat/32/giphy-32.svg | 11 + .../Icons/icons-export/Flat/32/icon-32.svg | 3 + .../Icons/icons-export/Flat/32/image-32.svg | 3 + .../Icons/icons-export/Flat/32/imgur-32.svg | 5 + .../Icons/icons-export/Flat/32/info-32.svg | 5 + .../Icons/icons-export/Flat/32/leave-32.svg | 3 + .../Icons/icons-export/Flat/32/link-32.svg | 3 + .../Icons/icons-export/Flat/32/loading-32.svg | 4 + .../icons-export/Flat/32/location-32.svg | 3 + .../Icons/icons-export/Flat/32/lock-32.svg | 5 + .../Icons/icons-export/Flat/32/mention-32.svg | 3 + .../Flat/32/message-bubble-32.svg | 3 + .../Flat/32/message-bubble-fill-32.svg | 3 + .../Flat/32/message-bubbles-32.svg | 3 + .../Icons/icons-export/Flat/32/minus-32.svg | 3 + .../icons-export/Flat/32/minus-circle-32.svg | 3 + .../Icons/icons-export/Flat/32/more-32.svg | 5 + .../Icons/icons-export/Flat/32/mute-32.svg | 3 + .../Icons/icons-export/Flat/32/no-sign-32.svg | 3 + .../icons-export/Flat/32/notification-32.svg | 3 + .../icons-export/Flat/32/pause-fill-32.svg | 3 + .../Icons/icons-export/Flat/32/pin-32.svg | 3 + .../icons-export/Flat/32/play-fill-32.svg | 3 + .../Icons/icons-export/Flat/32/plus-32-1.svg | 3 + .../Icons/icons-export/Flat/32/plus-32.svg | 3 + .../Icons/icons-export/Flat/32/poll-32.svg | 3 + .../Icons/icons-export/Flat/32/quote-.svg | 3 + .../Icons/icons-export/Flat/32/refresh-32.svg | 3 + .../Icons/icons-export/Flat/32/reorder-32.svg | 3 + .../Icons/icons-export/Flat/32/reply-32.svg | 3 + .../Icons/icons-export/Flat/32/retry-32.svg | 3 + .../Icons/icons-export/Flat/32/save-32.svg | 3 + .../Icons/icons-export/Flat/32/search-32.svg | 3 + .../Icons/icons-export/Flat/32/send-32.svg | 3 + .../Icons/icons-export/Flat/32/share-32.svg | 3 + .../Icons/icons-export/Flat/32/sidebar-32.svg | 3 + .../icons-export/Flat/32/stop-fill-32.svg | 3 + .../Icons/icons-export/Flat/32/thread-32.svg | 3 + .../icons-export/Flat/32/thread-fill-32.svg | 3 + .../icons-export/Flat/32/translate-32.svg | 3 + .../Icons/icons-export/Flat/32/trophy-32.svg | 3 + .../Icons/icons-export/Flat/32/unlock-32.svg | 5 + .../Icons/icons-export/Flat/32/unpin-32.svg | 3 + .../Icons/icons-export/Flat/32/unsave-32.svg | 3 + .../Icons/icons-export/Flat/32/upload-32.svg | 3 + .../Icons/icons-export/Flat/32/user-32.svg | 3 + .../icons-export/Flat/32/user-add-32.svg | 10 + .../icons-export/Flat/32/user-check-32.svg | 10 + .../icons-export/Flat/32/user-remove-32.svg | 10 + .../Icons/icons-export/Flat/32/users-32.svg | 3 + .../Icons/icons-export/Flat/32/video-32.svg | 3 + .../icons-export/Flat/32/video-fill-32.svg | 10 + .../Icons/icons-export/Flat/32/voice-32.svg | 3 + .../icons-export/Flat/32/voice-fill-32.svg | 3 + .../icons-export/Flat/32/x-circle-32.svg | 3 + .../Icons/icons-export/Flat/32/xmark-32.svg | 3 + .../Icons/icons-export/Line/Mention.svg | 3 + .../Icons/icons-export/Line/Retry.svg | 3 + .../Icons/icons-export/Line/account.svg | 3 + .../Icons/icons-export/Line/archive.svg | 3 + .../icons-export/Line/arrow-down-circle.svg | 3 + .../Icons/icons-export/Line/arrow-left.svg | 3 + .../icons-export/Line/arrow-up-right.svg | 3 + .../Icons/icons-export/Line/arrow-up.svg | 3 + .../Icons/icons-export/Line/attachment.svg | 3 + .../Icons/icons-export/Line/audio.svg | 3 + .../Icons/icons-export/Line/bell-off.svg | 3 + .../Icons/icons-export/Line/bell.svg | 3 + .../Icons/icons-export/Line/bolt.svg | 3 + .../Icons/icons-export/Line/camera.svg | 4 + .../Icons/icons-export/Line/checkmark.svg | 3 + .../Icons/icons-export/Line/checks.svg | 3 + .../Icons/icons-export/Line/chevron-down.svg | 3 + .../Icons/icons-export/Line/chevron-left.svg | 3 + .../Icons/icons-export/Line/chevron-right.svg | 3 + .../Icons/icons-export/Line/clock.svg | 3 + .../Icons/icons-export/Line/code.svg | 3 + .../Icons/icons-export/Line/command.svg | 3 + .../Icons/icons-export/Line/copy.svg | 3 + .../Icons/icons-export/Line/delete.svg | 3 + .../Icons/icons-export/Line/edit.svg | 3 + .../Icons/icons-export/Line/emoji-add-1.svg | 7 + .../Icons/icons-export/Line/emoji-add.svg | 3 + .../Icons/icons-export/Line/emoji.svg | 6 + .../Line/exclamation-circle-fill.svg | 3 + .../icons-export/Line/exclamation-circle.svg | 5 + .../Line/exclamation-mark-fill.svg | 4 + .../Line/exclamation-triangle-fill.svg | 3 + .../Icons/icons-export/Line/export.svg | 3 + .../Icons/icons-export/Line/file.svg | 3 + .../Icons/icons-export/Line/flag.svg | 3 + .../Icons/icons-export/Line/folder.svg | 3 + .../Icons/icons-export/Line/gallery.svg | 6 + .../Icons/icons-export/Line/giphy.svg | 11 + .../Icons/icons-export/Line/image.svg | 3 + .../Icons/icons-export/Line/imgur.svg | 5 + .../Icons/icons-export/Line/info.svg | 5 + .../Icons/icons-export/Line/leave.svg | 3 + .../Icons/icons-export/Line/link.svg | 3 + .../Icons/icons-export/Line/loading.svg | 4 + .../Icons/icons-export/Line/location.svg | 4 + .../Icons/icons-export/Line/lock.svg | 5 + .../icons-export/Line/message-bubble-fill.svg | 3 + .../icons-export/Line/message-bubble.svg | 3 + .../icons-export/Line/message-bubbles.svg | 3 + .../Icons/icons-export/Line/minus-1.svg | 3 + .../Icons/icons-export/Line/minus-circle.svg | 3 + .../Icons/icons-export/Line/minus.svg | 3 + .../Icons/icons-export/Line/more.svg | 5 + .../Icons/icons-export/Line/mute.svg | 3 + .../Icons/icons-export/Line/no-sign.svg | 3 + .../Icons/icons-export/Line/notification.svg | 3 + .../Icons/icons-export/Line/pause-fill.svg | 3 + .../Icons/icons-export/Line/pin.svg | 3 + .../Icons/icons-export/Line/play-fill.svg | 3 + .../Icons/icons-export/Line/plus.svg | 3 + .../Icons/icons-export/Line/poll.svg | 3 + .../Icons/icons-export/Line/presentation.svg | 3 + .../Icons/icons-export/Line/quote.svg | 3 + .../Icons/icons-export/Line/refresh.svg | 3 + .../Icons/icons-export/Line/reorder.svg | 3 + .../Icons/icons-export/Line/reply.svg | 3 + .../Icons/icons-export/Line/save.svg | 3 + .../Icons/icons-export/Line/search.svg | 3 + .../Icons/icons-export/Line/send.svg | 3 + .../Icons/icons-export/Line/share.svg | 3 + .../Icons/icons-export/Line/sidebar.svg | 3 + .../Icons/icons-export/Line/spreadsheet.svg | 3 + .../Icons/icons-export/Line/stop-fill.svg | 3 + .../Icons/icons-export/Line/thread-fill.svg | 3 + .../Icons/icons-export/Line/thread.svg | 3 + .../Icons/icons-export/Line/translate.svg | 3 + .../Icons/icons-export/Line/trophy.svg | 3 + .../Icons/icons-export/Line/unlock.svg | 5 + .../Icons/icons-export/Line/unpin.svg | 3 + .../Icons/icons-export/Line/unsave.svg | 3 + .../Icons/icons-export/Line/upload.svg | 3 + .../Icons/icons-export/Line/user-add.svg | 10 + .../Icons/icons-export/Line/user-check.svg | 10 + .../Icons/icons-export/Line/user-remove.svg | 10 + .../Icons/icons-export/Line/user.svg | 3 + .../Icons/icons-export/Line/users.svg | 3 + .../Icons/icons-export/Line/video-fill.svg | 10 + .../Icons/icons-export/Line/video.svg | 10 + .../Icons/icons-export/Line/voice-fill.svg | 3 + .../Icons/icons-export/Line/voice.svg | 3 + .../Icons/icons-export/Line/x-circle.svg | 3 + .../Icons/icons-export/Line/xmark.svg | 3 + src/components/Icons/icons.tsx | 698 +++++++++++++++--- .../LoadingIndicator.test.tsx.snap | 14 +- .../__snapshots__/AudioRecorder.test.tsx.snap | 106 ++- .../__snapshots__/MessageStatus.test.tsx.snap | 9 +- .../__snapshots__/MessageText.test.tsx.snap | 18 +- .../ReminderNotification.test.tsx.snap | 27 +- .../AttachmentPreviewList.test.tsx.snap | 18 +- .../VirtualizedMessageList.test.tsx.snap | 9 +- ...ualizedMessageListComponents.test.tsx.snap | 37 +- 484 files changed, 3026 insertions(+), 243 deletions(-) create mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-xl.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-lg.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-md.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-sm.svg create mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-xl.svg create mode 100644 src/components/Icons/icons-export/Flat/12/account-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/archive-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/arrow-left-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/arrow-up-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/attachment-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/audio-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/bell-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/bell-off-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/bolt-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/camera-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/checkmark-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/checks-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/chevron-down-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/chevron-left-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/chevron-right-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/clock-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/command-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/copy-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/delete-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/edit-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/emoji-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/emoji-add-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/export-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/file-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/flag-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/folder-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/gallery-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/giphy-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/image-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/imgur-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/info-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/leave-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/link-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/loading-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/location-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/lock-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/mention-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/message-bubble-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/minus-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/minus-circle-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/more-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/mute-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/no-sign-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/notification-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/pause-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/pin-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/play-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/plus-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/poll-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/quote-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/refresh-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/reorder-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/reply-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/retry-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/save-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/search-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/send-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/share-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/sidebar-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/stop-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/thread-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/thread-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/translate-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/trophy-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/unlock-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/unpin-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/unsave-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/upload-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/user-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/user-add-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/user-check-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/user-remove-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/users-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/video-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/video-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/voice-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/voice-fill-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/x-circle-12.svg create mode 100644 src/components/Icons/icons-export/Flat/12/xmark-12.svg create mode 100644 src/components/Icons/icons-export/Flat/16/account-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/archive-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/arrow-left-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/arrow-up-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/attachment-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/audio-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/bell-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/bell-off-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/bolt-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/camera-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/checkmark-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/checks-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/chevron-down-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/chevron-left-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/chevron-right-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/clock-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/command-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/copy-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/delete-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/edit-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/emoji-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/emoji-add-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/export-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/file-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/flag-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/folder-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/gallery-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/giphy-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/image-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/imgur-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/info-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/leave-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/link-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/loading-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/location-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/lock-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/mention-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/message-bubble-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/minus-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/minus-circle-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/more-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/mute-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/no-sign-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/notification-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/pause-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/pin-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/play-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/plus-16-1.svg create mode 100644 src/components/Icons/icons-export/Flat/16/plus-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/poll-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/quote-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/refresh-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/reorder-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/reply-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/retry-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/save-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/search-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/send-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/share-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/sidebar-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/stop-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/thread-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/thread-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/translate-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/trophy-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/unlock-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/unpin-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/unsave-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/upload-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/user-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/user-add-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/user-check-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/user-remove-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/users-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/video-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/video-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/voice-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/voice-fill-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/x-circle-16.svg create mode 100644 src/components/Icons/icons-export/Flat/16/xmark-16.svg create mode 100644 src/components/Icons/icons-export/Flat/20/account-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/archive-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/arrow-left-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/arrow-up-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/attachment-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/audio-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/bell-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/bell-off-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/bolt-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/camera-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/checkmark-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/checks-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/chevron-down-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/chevron-left-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/chevron-right-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/clock-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/command-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/copy-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/delete-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/edit-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/emoji-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/emoji-add-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/export-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/file-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/flag-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/folder-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/gallery-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/giphy-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/image-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/imgur-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/link-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/loading-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/location-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/lock-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/mention-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/message-bubble-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/minus-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/more-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/mute-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/no-sign-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/notification-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/pause-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/pin-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/play-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/plus-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/poll-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/quote-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/refresh-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/reorder-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/reply-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/retry-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/save-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/search-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/send-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/share-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/stop-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/thread-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/thread-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/translate-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/trophy-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/unpin-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/unsave-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/upload-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/user-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/user-add-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/user-check-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/user-remove-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/users-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/video-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/video-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/voice-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/voice-fill-20.svg create mode 100644 src/components/Icons/icons-export/Flat/20/xmark-20.svg create mode 100644 src/components/Icons/icons-export/Flat/32/account-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/archive-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/arrow-left-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/arrow-up-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/attachment-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/audio-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/bell-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/bell-off-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/bolt-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/camera-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/checkmark-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/checks-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/chevron-down-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/chevron-left-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/chevron-right-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/command-20.svg create mode 100644 src/components/Icons/icons-export/Flat/32/copy-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/delete-.svg create mode 100644 src/components/Icons/icons-export/Flat/32/edit-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/emoji-.svg create mode 100644 src/components/Icons/icons-export/Flat/32/emoji-add-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/export-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/file-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/flag-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/folder-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/gallery-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/giphy-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/icon-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/image-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/imgur-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/info-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/leave-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/link-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/loading-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/location-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/lock-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/mention-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/message-bubble-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/minus-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/minus-circle-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/more-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/mute-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/no-sign-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/notification-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/pause-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/pin-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/play-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/plus-32-1.svg create mode 100644 src/components/Icons/icons-export/Flat/32/plus-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/poll-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/quote-.svg create mode 100644 src/components/Icons/icons-export/Flat/32/refresh-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/reorder-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/reply-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/retry-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/save-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/search-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/send-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/share-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/sidebar-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/stop-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/thread-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/thread-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/translate-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/trophy-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/unlock-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/unpin-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/unsave-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/upload-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/user-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/user-add-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/user-check-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/user-remove-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/users-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/video-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/video-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/voice-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/voice-fill-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/x-circle-32.svg create mode 100644 src/components/Icons/icons-export/Flat/32/xmark-32.svg create mode 100644 src/components/Icons/icons-export/Line/Mention.svg create mode 100644 src/components/Icons/icons-export/Line/Retry.svg create mode 100644 src/components/Icons/icons-export/Line/account.svg create mode 100644 src/components/Icons/icons-export/Line/archive.svg create mode 100644 src/components/Icons/icons-export/Line/arrow-down-circle.svg create mode 100644 src/components/Icons/icons-export/Line/arrow-left.svg create mode 100644 src/components/Icons/icons-export/Line/arrow-up-right.svg create mode 100644 src/components/Icons/icons-export/Line/arrow-up.svg create mode 100644 src/components/Icons/icons-export/Line/attachment.svg create mode 100644 src/components/Icons/icons-export/Line/audio.svg create mode 100644 src/components/Icons/icons-export/Line/bell-off.svg create mode 100644 src/components/Icons/icons-export/Line/bell.svg create mode 100644 src/components/Icons/icons-export/Line/bolt.svg create mode 100644 src/components/Icons/icons-export/Line/camera.svg create mode 100644 src/components/Icons/icons-export/Line/checkmark.svg create mode 100644 src/components/Icons/icons-export/Line/checks.svg create mode 100644 src/components/Icons/icons-export/Line/chevron-down.svg create mode 100644 src/components/Icons/icons-export/Line/chevron-left.svg create mode 100644 src/components/Icons/icons-export/Line/chevron-right.svg create mode 100644 src/components/Icons/icons-export/Line/clock.svg create mode 100644 src/components/Icons/icons-export/Line/code.svg create mode 100644 src/components/Icons/icons-export/Line/command.svg create mode 100644 src/components/Icons/icons-export/Line/copy.svg create mode 100644 src/components/Icons/icons-export/Line/delete.svg create mode 100644 src/components/Icons/icons-export/Line/edit.svg create mode 100644 src/components/Icons/icons-export/Line/emoji-add-1.svg create mode 100644 src/components/Icons/icons-export/Line/emoji-add.svg create mode 100644 src/components/Icons/icons-export/Line/emoji.svg create mode 100644 src/components/Icons/icons-export/Line/exclamation-circle-fill.svg create mode 100644 src/components/Icons/icons-export/Line/exclamation-circle.svg create mode 100644 src/components/Icons/icons-export/Line/exclamation-mark-fill.svg create mode 100644 src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg create mode 100644 src/components/Icons/icons-export/Line/export.svg create mode 100644 src/components/Icons/icons-export/Line/file.svg create mode 100644 src/components/Icons/icons-export/Line/flag.svg create mode 100644 src/components/Icons/icons-export/Line/folder.svg create mode 100644 src/components/Icons/icons-export/Line/gallery.svg create mode 100644 src/components/Icons/icons-export/Line/giphy.svg create mode 100644 src/components/Icons/icons-export/Line/image.svg create mode 100644 src/components/Icons/icons-export/Line/imgur.svg create mode 100644 src/components/Icons/icons-export/Line/info.svg create mode 100644 src/components/Icons/icons-export/Line/leave.svg create mode 100644 src/components/Icons/icons-export/Line/link.svg create mode 100644 src/components/Icons/icons-export/Line/loading.svg create mode 100644 src/components/Icons/icons-export/Line/location.svg create mode 100644 src/components/Icons/icons-export/Line/lock.svg create mode 100644 src/components/Icons/icons-export/Line/message-bubble-fill.svg create mode 100644 src/components/Icons/icons-export/Line/message-bubble.svg create mode 100644 src/components/Icons/icons-export/Line/message-bubbles.svg create mode 100644 src/components/Icons/icons-export/Line/minus-1.svg create mode 100644 src/components/Icons/icons-export/Line/minus-circle.svg create mode 100644 src/components/Icons/icons-export/Line/minus.svg create mode 100644 src/components/Icons/icons-export/Line/more.svg create mode 100644 src/components/Icons/icons-export/Line/mute.svg create mode 100644 src/components/Icons/icons-export/Line/no-sign.svg create mode 100644 src/components/Icons/icons-export/Line/notification.svg create mode 100644 src/components/Icons/icons-export/Line/pause-fill.svg create mode 100644 src/components/Icons/icons-export/Line/pin.svg create mode 100644 src/components/Icons/icons-export/Line/play-fill.svg create mode 100644 src/components/Icons/icons-export/Line/plus.svg create mode 100644 src/components/Icons/icons-export/Line/poll.svg create mode 100644 src/components/Icons/icons-export/Line/presentation.svg create mode 100644 src/components/Icons/icons-export/Line/quote.svg create mode 100644 src/components/Icons/icons-export/Line/refresh.svg create mode 100644 src/components/Icons/icons-export/Line/reorder.svg create mode 100644 src/components/Icons/icons-export/Line/reply.svg create mode 100644 src/components/Icons/icons-export/Line/save.svg create mode 100644 src/components/Icons/icons-export/Line/search.svg create mode 100644 src/components/Icons/icons-export/Line/send.svg create mode 100644 src/components/Icons/icons-export/Line/share.svg create mode 100644 src/components/Icons/icons-export/Line/sidebar.svg create mode 100644 src/components/Icons/icons-export/Line/spreadsheet.svg create mode 100644 src/components/Icons/icons-export/Line/stop-fill.svg create mode 100644 src/components/Icons/icons-export/Line/thread-fill.svg create mode 100644 src/components/Icons/icons-export/Line/thread.svg create mode 100644 src/components/Icons/icons-export/Line/translate.svg create mode 100644 src/components/Icons/icons-export/Line/trophy.svg create mode 100644 src/components/Icons/icons-export/Line/unlock.svg create mode 100644 src/components/Icons/icons-export/Line/unpin.svg create mode 100644 src/components/Icons/icons-export/Line/unsave.svg create mode 100644 src/components/Icons/icons-export/Line/upload.svg create mode 100644 src/components/Icons/icons-export/Line/user-add.svg create mode 100644 src/components/Icons/icons-export/Line/user-check.svg create mode 100644 src/components/Icons/icons-export/Line/user-remove.svg create mode 100644 src/components/Icons/icons-export/Line/user.svg create mode 100644 src/components/Icons/icons-export/Line/users.svg create mode 100644 src/components/Icons/icons-export/Line/video-fill.svg create mode 100644 src/components/Icons/icons-export/Line/video.svg create mode 100644 src/components/Icons/icons-export/Line/voice-fill.svg create mode 100644 src/components/Icons/icons-export/Line/voice.svg create mode 100644 src/components/Icons/icons-export/Line/x-circle.svg create mode 100644 src/components/Icons/icons-export/Line/xmark.svg diff --git a/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap b/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap index e3329c71d1..5bd0464c02 100644 --- a/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap +++ b/src/components/Attachment/__tests__/__snapshots__/Card.test.tsx.snap @@ -127,11 +127,16 @@ exports[`Card > (4) should render 'unable-to-display card' if attachment type is >
(5) should render 'unable-to-display card' if attachment type is >
(6) should render 'unable-to-display card' if attachment type is >
(7) should render 'audio with caption using og_scrape_ur…' if >
(8) should render 'video with caption using og_scrape_ur…' if >
(9) should render 'image with caption using og_scrape_ur…' if >
(10) should render 'audio without title' if attachment type is ' >
(11) should render 'video without title' if attachment type is ' >
(12) should render 'image without title' if attachment type is ' >
(13) should render 'audio without title and with caption …' if >
(14) should render 'video without title and with caption …' if >
(15) should render 'image without title and with caption …' if >
(16) should render 'audio widget with title & text in Car…' if >
(17) should render 'video widget in header and title & te…' if >
(18) should render 'card with title and text only and wit…' if >
(19) should render 'image loaded from thumb_url not audio…' if >
(20) should render 'image loaded from thumb_url not video…' if >
(21) should render 'image loaded from thumb_url' if attachment t >
(22) should render 'image loaded from image_url not audio…' if >
(23) should render 'image loaded from image_url not video…' if >
(24) should render 'image loaded from image_url' if attachment t >
(25) should render 'audio widget with image loaded from t…' if >
(26) should render 'video widget in header and title & te…' if >
(27) should render 'content part with title and text only…' if >
(28) should render 'content part with title and text only…' if >
should render component with default props 1`] = ` >
@@ -73,11 +81,16 @@ exports[`Image > should render component with default props 1`] = ` > @@ -94,11 +107,16 @@ exports[`Image > should render component with default props 1`] = ` >
@@ -131,11 +149,16 @@ exports[`Image > should render component with default props 1`] = ` >
diff --git a/src/components/Icons/BaseIcon.tsx b/src/components/Icons/BaseIcon.tsx index 4b116a46e1..abae14e47c 100644 --- a/src/components/Icons/BaseIcon.tsx +++ b/src/components/Icons/BaseIcon.tsx @@ -3,7 +3,7 @@ import clsx from 'clsx'; export const BaseIcon = ({ className, ...props }: ComponentProps<'svg'>) => ( + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-audio-md.svg b/src/components/Icons/icons-export/Filetype/filetype-audio-md.svg new file mode 100644 index 0000000000..e172374768 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-audio-md.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg new file mode 100644 index 0000000000..2cc0b4c37d --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg new file mode 100644 index 0000000000..004f8b2d0e --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-code-lg.svg new file mode 100644 index 0000000000..2b6b346abb --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-code-lg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-md.svg b/src/components/Icons/icons-export/Filetype/filetype-code-md.svg new file mode 100644 index 0000000000..02e1cadcbf --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-code-md.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-code-sm.svg new file mode 100644 index 0000000000..f949c53b8a --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-code-sm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-code-xl.svg new file mode 100644 index 0000000000..e51ebcf9d3 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-code-xl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg new file mode 100644 index 0000000000..0c0250d590 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-md.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-md.svg new file mode 100644 index 0000000000..9eff5d3294 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-compression-md.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg new file mode 100644 index 0000000000..bc5d7f52ce --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg new file mode 100644 index 0000000000..f757cf8f0b --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-other-lg.svg new file mode 100644 index 0000000000..cc58bbf698 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-other-lg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-md.svg b/src/components/Icons/icons-export/Filetype/filetype-other-md.svg new file mode 100644 index 0000000000..0540f2cb8c --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-other-md.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-other-sm.svg new file mode 100644 index 0000000000..1dcb6153ec --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-other-sm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-other-xl.svg new file mode 100644 index 0000000000..416ec79d8f --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-other-xl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg new file mode 100644 index 0000000000..b29b99887d --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg new file mode 100644 index 0000000000..d8ded6a35b --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg new file mode 100644 index 0000000000..d104db3150 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg new file mode 100644 index 0000000000..7913c0fa20 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg new file mode 100644 index 0000000000..ce63f64bd6 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg new file mode 100644 index 0000000000..baccf9083a --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg new file mode 100644 index 0000000000..d6723981c0 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg new file mode 100644 index 0000000000..f66fceb0d6 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg new file mode 100644 index 0000000000..edc1e963ea --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg new file mode 100644 index 0000000000..3eb5c6d298 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg new file mode 100644 index 0000000000..83511a862c --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg new file mode 100644 index 0000000000..984bea8d4b --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-text-lg.svg new file mode 100644 index 0000000000..8117d0e8ef --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-text-lg.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-md.svg b/src/components/Icons/icons-export/Filetype/filetype-text-md.svg new file mode 100644 index 0000000000..5319b9c983 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-text-md.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-text-sm.svg new file mode 100644 index 0000000000..219659606d --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-text-sm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-text-xl.svg new file mode 100644 index 0000000000..0628ad7423 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-text-xl.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-video-lg.svg new file mode 100644 index 0000000000..a0d4bbe73e --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-video-lg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-md.svg b/src/components/Icons/icons-export/Filetype/filetype-video-md.svg new file mode 100644 index 0000000000..e59b03c81f --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-video-md.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-video-sm.svg new file mode 100644 index 0000000000..e20ff74a24 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-video-sm.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-video-xl.svg new file mode 100644 index 0000000000..07b9165558 --- /dev/null +++ b/src/components/Icons/icons-export/Filetype/filetype-video-xl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/account-12.svg b/src/components/Icons/icons-export/Flat/12/account-12.svg new file mode 100644 index 0000000000..309e15ffde --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/account-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/archive-12.svg b/src/components/Icons/icons-export/Flat/12/archive-12.svg new file mode 100644 index 0000000000..ab7f60d7f1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/archive-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg new file mode 100644 index 0000000000..260556b755 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/arrow-left-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-left-12.svg new file mode 100644 index 0000000000..8de97a865e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/arrow-left-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/arrow-up-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-up-12.svg new file mode 100644 index 0000000000..0e0ee0a6c7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/arrow-up-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg new file mode 100644 index 0000000000..1076164a92 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/attachment-12.svg b/src/components/Icons/icons-export/Flat/12/attachment-12.svg new file mode 100644 index 0000000000..6a74f98fd0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/attachment-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/audio-12.svg b/src/components/Icons/icons-export/Flat/12/audio-12.svg new file mode 100644 index 0000000000..8be733084c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/audio-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/bell-12.svg b/src/components/Icons/icons-export/Flat/12/bell-12.svg new file mode 100644 index 0000000000..62b2d469e1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/bell-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/bell-off-12.svg b/src/components/Icons/icons-export/Flat/12/bell-off-12.svg new file mode 100644 index 0000000000..45bf4f3b82 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/bell-off-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/bolt-12.svg b/src/components/Icons/icons-export/Flat/12/bolt-12.svg new file mode 100644 index 0000000000..b4f91a0e59 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/bolt-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/camera-12.svg b/src/components/Icons/icons-export/Flat/12/camera-12.svg new file mode 100644 index 0000000000..ac3cdd9ec8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/camera-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/checkmark-12.svg b/src/components/Icons/icons-export/Flat/12/checkmark-12.svg new file mode 100644 index 0000000000..7b349c1678 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/checkmark-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/checks-12.svg b/src/components/Icons/icons-export/Flat/12/checks-12.svg new file mode 100644 index 0000000000..1b07c91dc0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/checks-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/chevron-down-12.svg b/src/components/Icons/icons-export/Flat/12/chevron-down-12.svg new file mode 100644 index 0000000000..2e2652d0e4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/chevron-down-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/chevron-left-12.svg b/src/components/Icons/icons-export/Flat/12/chevron-left-12.svg new file mode 100644 index 0000000000..04349fbe8e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/chevron-left-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/chevron-right-12.svg b/src/components/Icons/icons-export/Flat/12/chevron-right-12.svg new file mode 100644 index 0000000000..41620eda1b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/chevron-right-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/clock-12.svg b/src/components/Icons/icons-export/Flat/12/clock-12.svg new file mode 100644 index 0000000000..0930f390a1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/clock-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/command-12.svg b/src/components/Icons/icons-export/Flat/12/command-12.svg new file mode 100644 index 0000000000..d8bc7e530a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/command-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/copy-12.svg b/src/components/Icons/icons-export/Flat/12/copy-12.svg new file mode 100644 index 0000000000..35a34ea01d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/copy-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/delete-12.svg b/src/components/Icons/icons-export/Flat/12/delete-12.svg new file mode 100644 index 0000000000..52a71f4e21 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/delete-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/edit-12.svg b/src/components/Icons/icons-export/Flat/12/edit-12.svg new file mode 100644 index 0000000000..f3523676a9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/edit-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/emoji-12.svg b/src/components/Icons/icons-export/Flat/12/emoji-12.svg new file mode 100644 index 0000000000..a3a87da223 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/emoji-12.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/emoji-add-12.svg b/src/components/Icons/icons-export/Flat/12/emoji-add-12.svg new file mode 100644 index 0000000000..3c498ba601 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/emoji-add-12.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg new file mode 100644 index 0000000000..dc17ba45ae --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg new file mode 100644 index 0000000000..674165894c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg new file mode 100644 index 0000000000..620719e43b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg new file mode 100644 index 0000000000..95c1a5e998 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/export-12.svg b/src/components/Icons/icons-export/Flat/12/export-12.svg new file mode 100644 index 0000000000..b37a519b2f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/export-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/file-12.svg b/src/components/Icons/icons-export/Flat/12/file-12.svg new file mode 100644 index 0000000000..3fb51d055f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/file-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/flag-12.svg b/src/components/Icons/icons-export/Flat/12/flag-12.svg new file mode 100644 index 0000000000..e248643f76 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/flag-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/folder-12.svg b/src/components/Icons/icons-export/Flat/12/folder-12.svg new file mode 100644 index 0000000000..5e994ad9bd --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/folder-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/gallery-12.svg b/src/components/Icons/icons-export/Flat/12/gallery-12.svg new file mode 100644 index 0000000000..c44188443f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/gallery-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/giphy-12.svg b/src/components/Icons/icons-export/Flat/12/giphy-12.svg new file mode 100644 index 0000000000..1e5821c08c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/giphy-12.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/image-12.svg b/src/components/Icons/icons-export/Flat/12/image-12.svg new file mode 100644 index 0000000000..ef1ef85c14 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/image-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/imgur-12.svg b/src/components/Icons/icons-export/Flat/12/imgur-12.svg new file mode 100644 index 0000000000..a2b8cb3161 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/imgur-12.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/info-12.svg b/src/components/Icons/icons-export/Flat/12/info-12.svg new file mode 100644 index 0000000000..aec75576a3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/info-12.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/leave-12.svg b/src/components/Icons/icons-export/Flat/12/leave-12.svg new file mode 100644 index 0000000000..c2a2699ffc --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/leave-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/link-12.svg b/src/components/Icons/icons-export/Flat/12/link-12.svg new file mode 100644 index 0000000000..ec4b3d4823 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/link-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/loading-12.svg b/src/components/Icons/icons-export/Flat/12/loading-12.svg new file mode 100644 index 0000000000..45dbe210dd --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/loading-12.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/location-12.svg b/src/components/Icons/icons-export/Flat/12/location-12.svg new file mode 100644 index 0000000000..2a4929a6f7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/location-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/lock-12.svg b/src/components/Icons/icons-export/Flat/12/lock-12.svg new file mode 100644 index 0000000000..e3babc9b2c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/lock-12.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/mention-12.svg b/src/components/Icons/icons-export/Flat/12/mention-12.svg new file mode 100644 index 0000000000..77f3cd88a0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/mention-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/message-bubble-12.svg b/src/components/Icons/icons-export/Flat/12/message-bubble-12.svg new file mode 100644 index 0000000000..b441b5e4c9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/message-bubble-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg b/src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg new file mode 100644 index 0000000000..c1a974cf81 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg b/src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg new file mode 100644 index 0000000000..920e276bd7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/minus-12.svg b/src/components/Icons/icons-export/Flat/12/minus-12.svg new file mode 100644 index 0000000000..c52f8a6cd7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/minus-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/minus-circle-12.svg b/src/components/Icons/icons-export/Flat/12/minus-circle-12.svg new file mode 100644 index 0000000000..e950eb02b6 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/minus-circle-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/more-12.svg b/src/components/Icons/icons-export/Flat/12/more-12.svg new file mode 100644 index 0000000000..888a715f13 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/more-12.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/mute-12.svg b/src/components/Icons/icons-export/Flat/12/mute-12.svg new file mode 100644 index 0000000000..054b911ff2 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/mute-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/no-sign-12.svg b/src/components/Icons/icons-export/Flat/12/no-sign-12.svg new file mode 100644 index 0000000000..9862b82b25 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/no-sign-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/notification-12.svg b/src/components/Icons/icons-export/Flat/12/notification-12.svg new file mode 100644 index 0000000000..02d3ea76a5 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/notification-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/pause-fill-12.svg b/src/components/Icons/icons-export/Flat/12/pause-fill-12.svg new file mode 100644 index 0000000000..f04c92a479 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/pause-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/pin-12.svg b/src/components/Icons/icons-export/Flat/12/pin-12.svg new file mode 100644 index 0000000000..250c03c31a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/pin-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/play-fill-12.svg b/src/components/Icons/icons-export/Flat/12/play-fill-12.svg new file mode 100644 index 0000000000..346ba66830 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/play-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/plus-12.svg b/src/components/Icons/icons-export/Flat/12/plus-12.svg new file mode 100644 index 0000000000..506fe3381a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/plus-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/poll-12.svg b/src/components/Icons/icons-export/Flat/12/poll-12.svg new file mode 100644 index 0000000000..de189e4b6f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/poll-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/quote-12.svg b/src/components/Icons/icons-export/Flat/12/quote-12.svg new file mode 100644 index 0000000000..4157b14046 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/quote-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/refresh-12.svg b/src/components/Icons/icons-export/Flat/12/refresh-12.svg new file mode 100644 index 0000000000..697aeb566d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/refresh-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/reorder-12.svg b/src/components/Icons/icons-export/Flat/12/reorder-12.svg new file mode 100644 index 0000000000..bd48717384 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/reorder-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/reply-12.svg b/src/components/Icons/icons-export/Flat/12/reply-12.svg new file mode 100644 index 0000000000..d63c51bb8a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/reply-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/retry-12.svg b/src/components/Icons/icons-export/Flat/12/retry-12.svg new file mode 100644 index 0000000000..3a3be23238 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/retry-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/save-12.svg b/src/components/Icons/icons-export/Flat/12/save-12.svg new file mode 100644 index 0000000000..6c64184fd4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/save-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/search-12.svg b/src/components/Icons/icons-export/Flat/12/search-12.svg new file mode 100644 index 0000000000..043cecb485 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/search-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/send-12.svg b/src/components/Icons/icons-export/Flat/12/send-12.svg new file mode 100644 index 0000000000..584d1e2989 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/send-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/share-12.svg b/src/components/Icons/icons-export/Flat/12/share-12.svg new file mode 100644 index 0000000000..1fcb8eb486 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/share-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/sidebar-12.svg b/src/components/Icons/icons-export/Flat/12/sidebar-12.svg new file mode 100644 index 0000000000..61a53feb20 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/sidebar-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/stop-fill-12.svg b/src/components/Icons/icons-export/Flat/12/stop-fill-12.svg new file mode 100644 index 0000000000..29d779deb4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/stop-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/thread-12.svg b/src/components/Icons/icons-export/Flat/12/thread-12.svg new file mode 100644 index 0000000000..9cf5a41481 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/thread-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/thread-fill-12.svg b/src/components/Icons/icons-export/Flat/12/thread-fill-12.svg new file mode 100644 index 0000000000..a62d63964e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/thread-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/translate-12.svg b/src/components/Icons/icons-export/Flat/12/translate-12.svg new file mode 100644 index 0000000000..ddde99d5c1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/translate-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/trophy-12.svg b/src/components/Icons/icons-export/Flat/12/trophy-12.svg new file mode 100644 index 0000000000..8d43117cf9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/trophy-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/unlock-12.svg b/src/components/Icons/icons-export/Flat/12/unlock-12.svg new file mode 100644 index 0000000000..c954d4ab7b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/unlock-12.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/unpin-12.svg b/src/components/Icons/icons-export/Flat/12/unpin-12.svg new file mode 100644 index 0000000000..e4416d9784 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/unpin-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/unsave-12.svg b/src/components/Icons/icons-export/Flat/12/unsave-12.svg new file mode 100644 index 0000000000..adc90755f3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/unsave-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/upload-12.svg b/src/components/Icons/icons-export/Flat/12/upload-12.svg new file mode 100644 index 0000000000..f225eb598b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/upload-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/user-12.svg b/src/components/Icons/icons-export/Flat/12/user-12.svg new file mode 100644 index 0000000000..d827d1418d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/user-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/user-add-12.svg b/src/components/Icons/icons-export/Flat/12/user-add-12.svg new file mode 100644 index 0000000000..ac8d2612f3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/user-add-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/user-check-12.svg b/src/components/Icons/icons-export/Flat/12/user-check-12.svg new file mode 100644 index 0000000000..34354497f1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/user-check-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/user-remove-12.svg b/src/components/Icons/icons-export/Flat/12/user-remove-12.svg new file mode 100644 index 0000000000..a26d0829a3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/user-remove-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/users-12.svg b/src/components/Icons/icons-export/Flat/12/users-12.svg new file mode 100644 index 0000000000..37281fa270 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/users-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/video-12.svg b/src/components/Icons/icons-export/Flat/12/video-12.svg new file mode 100644 index 0000000000..f3ad0f1b1b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/video-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/video-fill-12.svg b/src/components/Icons/icons-export/Flat/12/video-fill-12.svg new file mode 100644 index 0000000000..ae334be4fb --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/video-fill-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/voice-12.svg b/src/components/Icons/icons-export/Flat/12/voice-12.svg new file mode 100644 index 0000000000..6adf512102 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/voice-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/voice-fill-12.svg b/src/components/Icons/icons-export/Flat/12/voice-fill-12.svg new file mode 100644 index 0000000000..bd9da6d1da --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/voice-fill-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/12/x-circle-12.svg b/src/components/Icons/icons-export/Flat/12/x-circle-12.svg new file mode 100644 index 0000000000..336872eac2 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/x-circle-12.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/12/xmark-12.svg b/src/components/Icons/icons-export/Flat/12/xmark-12.svg new file mode 100644 index 0000000000..db746701f0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/12/xmark-12.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/account-16.svg b/src/components/Icons/icons-export/Flat/16/account-16.svg new file mode 100644 index 0000000000..8005ad3737 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/account-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/archive-16.svg b/src/components/Icons/icons-export/Flat/16/archive-16.svg new file mode 100644 index 0000000000..8f16f9a701 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/archive-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg new file mode 100644 index 0000000000..0450eb1dce --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/arrow-left-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-left-16.svg new file mode 100644 index 0000000000..1e57ba9975 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/arrow-left-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/arrow-up-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-up-16.svg new file mode 100644 index 0000000000..a7c525c278 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/arrow-up-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg new file mode 100644 index 0000000000..d7e73b8228 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/attachment-16.svg b/src/components/Icons/icons-export/Flat/16/attachment-16.svg new file mode 100644 index 0000000000..f661680010 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/attachment-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/audio-16.svg b/src/components/Icons/icons-export/Flat/16/audio-16.svg new file mode 100644 index 0000000000..67ee129dfc --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/audio-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/bell-16.svg b/src/components/Icons/icons-export/Flat/16/bell-16.svg new file mode 100644 index 0000000000..f3adbb1fb6 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/bell-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/bell-off-16.svg b/src/components/Icons/icons-export/Flat/16/bell-off-16.svg new file mode 100644 index 0000000000..319d57d460 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/bell-off-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/bolt-16.svg b/src/components/Icons/icons-export/Flat/16/bolt-16.svg new file mode 100644 index 0000000000..4d4ec05729 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/bolt-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/camera-16.svg b/src/components/Icons/icons-export/Flat/16/camera-16.svg new file mode 100644 index 0000000000..03578c5ebc --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/camera-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/checkmark-16.svg b/src/components/Icons/icons-export/Flat/16/checkmark-16.svg new file mode 100644 index 0000000000..ad23fd6d80 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/checkmark-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/checks-16.svg b/src/components/Icons/icons-export/Flat/16/checks-16.svg new file mode 100644 index 0000000000..5ea2692987 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/checks-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/chevron-down-16.svg b/src/components/Icons/icons-export/Flat/16/chevron-down-16.svg new file mode 100644 index 0000000000..967b89d38d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/chevron-down-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/chevron-left-16.svg b/src/components/Icons/icons-export/Flat/16/chevron-left-16.svg new file mode 100644 index 0000000000..812921cdc1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/chevron-left-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/chevron-right-16.svg b/src/components/Icons/icons-export/Flat/16/chevron-right-16.svg new file mode 100644 index 0000000000..8c907e1270 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/chevron-right-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/clock-16.svg b/src/components/Icons/icons-export/Flat/16/clock-16.svg new file mode 100644 index 0000000000..066803684d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/clock-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/command-16.svg b/src/components/Icons/icons-export/Flat/16/command-16.svg new file mode 100644 index 0000000000..7b187aec84 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/command-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/copy-16.svg b/src/components/Icons/icons-export/Flat/16/copy-16.svg new file mode 100644 index 0000000000..e04c7db55b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/copy-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/delete-16.svg b/src/components/Icons/icons-export/Flat/16/delete-16.svg new file mode 100644 index 0000000000..0311ae7daa --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/delete-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/edit-16.svg b/src/components/Icons/icons-export/Flat/16/edit-16.svg new file mode 100644 index 0000000000..72ed455bff --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/edit-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/emoji-16.svg b/src/components/Icons/icons-export/Flat/16/emoji-16.svg new file mode 100644 index 0000000000..c3f5159006 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/emoji-16.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/emoji-add-16.svg b/src/components/Icons/icons-export/Flat/16/emoji-add-16.svg new file mode 100644 index 0000000000..db9ce38c27 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/emoji-add-16.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg new file mode 100644 index 0000000000..831bbb03c0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg new file mode 100644 index 0000000000..672ebc081e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg new file mode 100644 index 0000000000..7287746bb1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg new file mode 100644 index 0000000000..35fc98cdc0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/export-16.svg b/src/components/Icons/icons-export/Flat/16/export-16.svg new file mode 100644 index 0000000000..b9a56a398f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/export-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/file-16.svg b/src/components/Icons/icons-export/Flat/16/file-16.svg new file mode 100644 index 0000000000..d4048cc26a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/file-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/flag-16.svg b/src/components/Icons/icons-export/Flat/16/flag-16.svg new file mode 100644 index 0000000000..0319903189 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/flag-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/folder-16.svg b/src/components/Icons/icons-export/Flat/16/folder-16.svg new file mode 100644 index 0000000000..e5bca44cce --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/folder-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/gallery-16.svg b/src/components/Icons/icons-export/Flat/16/gallery-16.svg new file mode 100644 index 0000000000..4f10c22aec --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/gallery-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/giphy-16.svg b/src/components/Icons/icons-export/Flat/16/giphy-16.svg new file mode 100644 index 0000000000..6c74675ce0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/giphy-16.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/image-16.svg b/src/components/Icons/icons-export/Flat/16/image-16.svg new file mode 100644 index 0000000000..91cdef609d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/image-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/imgur-16.svg b/src/components/Icons/icons-export/Flat/16/imgur-16.svg new file mode 100644 index 0000000000..ee2c2da72f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/imgur-16.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/info-16.svg b/src/components/Icons/icons-export/Flat/16/info-16.svg new file mode 100644 index 0000000000..6d837bf30d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/info-16.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/leave-16.svg b/src/components/Icons/icons-export/Flat/16/leave-16.svg new file mode 100644 index 0000000000..3b61c621f1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/leave-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/link-16.svg b/src/components/Icons/icons-export/Flat/16/link-16.svg new file mode 100644 index 0000000000..4165fbe177 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/link-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/loading-16.svg b/src/components/Icons/icons-export/Flat/16/loading-16.svg new file mode 100644 index 0000000000..abad0c9426 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/loading-16.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Flat/16/location-16.svg b/src/components/Icons/icons-export/Flat/16/location-16.svg new file mode 100644 index 0000000000..e587406c04 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/location-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/lock-16.svg b/src/components/Icons/icons-export/Flat/16/lock-16.svg new file mode 100644 index 0000000000..4cdf8139cf --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/lock-16.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/mention-16.svg b/src/components/Icons/icons-export/Flat/16/mention-16.svg new file mode 100644 index 0000000000..55d80aafcd --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/mention-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/message-bubble-16.svg b/src/components/Icons/icons-export/Flat/16/message-bubble-16.svg new file mode 100644 index 0000000000..cd3d19898c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/message-bubble-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg b/src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg new file mode 100644 index 0000000000..e72bf75d9b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg b/src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg new file mode 100644 index 0000000000..77f90d76d1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/minus-16.svg b/src/components/Icons/icons-export/Flat/16/minus-16.svg new file mode 100644 index 0000000000..9465abc6be --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/minus-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/minus-circle-16.svg b/src/components/Icons/icons-export/Flat/16/minus-circle-16.svg new file mode 100644 index 0000000000..2c6d6e2d84 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/minus-circle-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/more-16.svg b/src/components/Icons/icons-export/Flat/16/more-16.svg new file mode 100644 index 0000000000..e712d0538f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/more-16.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/mute-16.svg b/src/components/Icons/icons-export/Flat/16/mute-16.svg new file mode 100644 index 0000000000..c286cd5c54 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/mute-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/no-sign-16.svg b/src/components/Icons/icons-export/Flat/16/no-sign-16.svg new file mode 100644 index 0000000000..175ae3b4e9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/no-sign-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/notification-16.svg b/src/components/Icons/icons-export/Flat/16/notification-16.svg new file mode 100644 index 0000000000..2254c4cbff --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/notification-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/pause-fill-16.svg b/src/components/Icons/icons-export/Flat/16/pause-fill-16.svg new file mode 100644 index 0000000000..c2e9d43f96 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/pause-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/pin-16.svg b/src/components/Icons/icons-export/Flat/16/pin-16.svg new file mode 100644 index 0000000000..da321d5b21 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/pin-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/play-fill-16.svg b/src/components/Icons/icons-export/Flat/16/play-fill-16.svg new file mode 100644 index 0000000000..859890cc89 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/play-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/plus-16-1.svg b/src/components/Icons/icons-export/Flat/16/plus-16-1.svg new file mode 100644 index 0000000000..24c448ff12 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/plus-16-1.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/plus-16.svg b/src/components/Icons/icons-export/Flat/16/plus-16.svg new file mode 100644 index 0000000000..24c448ff12 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/plus-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/poll-16.svg b/src/components/Icons/icons-export/Flat/16/poll-16.svg new file mode 100644 index 0000000000..ca77da301a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/poll-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/quote-16.svg b/src/components/Icons/icons-export/Flat/16/quote-16.svg new file mode 100644 index 0000000000..334a1e86d5 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/quote-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/refresh-16.svg b/src/components/Icons/icons-export/Flat/16/refresh-16.svg new file mode 100644 index 0000000000..697aeb566d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/refresh-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/reorder-16.svg b/src/components/Icons/icons-export/Flat/16/reorder-16.svg new file mode 100644 index 0000000000..263ca91daf --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/reorder-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/reply-16.svg b/src/components/Icons/icons-export/Flat/16/reply-16.svg new file mode 100644 index 0000000000..1e49bca116 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/reply-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/retry-16.svg b/src/components/Icons/icons-export/Flat/16/retry-16.svg new file mode 100644 index 0000000000..76e4ba72e1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/retry-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/save-16.svg b/src/components/Icons/icons-export/Flat/16/save-16.svg new file mode 100644 index 0000000000..b52f96fc35 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/save-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/search-16.svg b/src/components/Icons/icons-export/Flat/16/search-16.svg new file mode 100644 index 0000000000..587018b04e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/search-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/send-16.svg b/src/components/Icons/icons-export/Flat/16/send-16.svg new file mode 100644 index 0000000000..4a250c2199 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/send-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/share-16.svg b/src/components/Icons/icons-export/Flat/16/share-16.svg new file mode 100644 index 0000000000..6798e02fda --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/share-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/sidebar-16.svg b/src/components/Icons/icons-export/Flat/16/sidebar-16.svg new file mode 100644 index 0000000000..93a5d75f9a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/sidebar-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/stop-fill-16.svg b/src/components/Icons/icons-export/Flat/16/stop-fill-16.svg new file mode 100644 index 0000000000..2394b28ef4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/stop-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/thread-16.svg b/src/components/Icons/icons-export/Flat/16/thread-16.svg new file mode 100644 index 0000000000..5d5bb9ed2c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/thread-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/thread-fill-16.svg b/src/components/Icons/icons-export/Flat/16/thread-fill-16.svg new file mode 100644 index 0000000000..b87b7a1ff6 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/thread-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/translate-16.svg b/src/components/Icons/icons-export/Flat/16/translate-16.svg new file mode 100644 index 0000000000..06d129f788 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/translate-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/trophy-16.svg b/src/components/Icons/icons-export/Flat/16/trophy-16.svg new file mode 100644 index 0000000000..d3e6e716f4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/trophy-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/unlock-16.svg b/src/components/Icons/icons-export/Flat/16/unlock-16.svg new file mode 100644 index 0000000000..38f59ab2e8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/unlock-16.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/unpin-16.svg b/src/components/Icons/icons-export/Flat/16/unpin-16.svg new file mode 100644 index 0000000000..1b12862048 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/unpin-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/unsave-16.svg b/src/components/Icons/icons-export/Flat/16/unsave-16.svg new file mode 100644 index 0000000000..9b66320511 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/unsave-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/upload-16.svg b/src/components/Icons/icons-export/Flat/16/upload-16.svg new file mode 100644 index 0000000000..997064ffec --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/upload-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/user-16.svg b/src/components/Icons/icons-export/Flat/16/user-16.svg new file mode 100644 index 0000000000..360ede178d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/user-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/user-add-16.svg b/src/components/Icons/icons-export/Flat/16/user-add-16.svg new file mode 100644 index 0000000000..d73ae12f59 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/user-add-16.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/user-check-16.svg b/src/components/Icons/icons-export/Flat/16/user-check-16.svg new file mode 100644 index 0000000000..4425f43a9b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/user-check-16.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/user-remove-16.svg b/src/components/Icons/icons-export/Flat/16/user-remove-16.svg new file mode 100644 index 0000000000..7622072ca4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/user-remove-16.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/users-16.svg b/src/components/Icons/icons-export/Flat/16/users-16.svg new file mode 100644 index 0000000000..dd574e445a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/users-16.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/video-16.svg b/src/components/Icons/icons-export/Flat/16/video-16.svg new file mode 100644 index 0000000000..f058d512e4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/video-16.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/video-fill-16.svg b/src/components/Icons/icons-export/Flat/16/video-fill-16.svg new file mode 100644 index 0000000000..cbdaaa49b9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/video-fill-16.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/16/voice-16.svg b/src/components/Icons/icons-export/Flat/16/voice-16.svg new file mode 100644 index 0000000000..2a8de253b7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/voice-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/voice-fill-16.svg b/src/components/Icons/icons-export/Flat/16/voice-fill-16.svg new file mode 100644 index 0000000000..7560201491 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/voice-fill-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/x-circle-16.svg b/src/components/Icons/icons-export/Flat/16/x-circle-16.svg new file mode 100644 index 0000000000..fd0f22c4f2 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/x-circle-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/16/xmark-16.svg b/src/components/Icons/icons-export/Flat/16/xmark-16.svg new file mode 100644 index 0000000000..d82c1b36b8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/16/xmark-16.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/account-20.svg b/src/components/Icons/icons-export/Flat/20/account-20.svg new file mode 100644 index 0000000000..aa040aa7e5 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/account-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/archive-20.svg b/src/components/Icons/icons-export/Flat/20/archive-20.svg new file mode 100644 index 0000000000..452a29853c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/archive-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg new file mode 100644 index 0000000000..854896944e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/arrow-left-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-left-20.svg new file mode 100644 index 0000000000..09a6b741b6 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/arrow-left-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/arrow-up-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-up-20.svg new file mode 100644 index 0000000000..c6bad306a5 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/arrow-up-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg new file mode 100644 index 0000000000..bad98c0bb7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/attachment-20.svg b/src/components/Icons/icons-export/Flat/20/attachment-20.svg new file mode 100644 index 0000000000..5efd80d896 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/attachment-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/audio-20.svg b/src/components/Icons/icons-export/Flat/20/audio-20.svg new file mode 100644 index 0000000000..6b780c9d6c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/audio-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/bell-20.svg b/src/components/Icons/icons-export/Flat/20/bell-20.svg new file mode 100644 index 0000000000..95561111bf --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/bell-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/bell-off-20.svg b/src/components/Icons/icons-export/Flat/20/bell-off-20.svg new file mode 100644 index 0000000000..2402a2a755 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/bell-off-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/bolt-20.svg b/src/components/Icons/icons-export/Flat/20/bolt-20.svg new file mode 100644 index 0000000000..785ee09ae1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/bolt-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/camera-20.svg b/src/components/Icons/icons-export/Flat/20/camera-20.svg new file mode 100644 index 0000000000..85d5eb4d40 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/camera-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/checkmark-20.svg b/src/components/Icons/icons-export/Flat/20/checkmark-20.svg new file mode 100644 index 0000000000..07b7ea8481 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/checkmark-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/checks-20.svg b/src/components/Icons/icons-export/Flat/20/checks-20.svg new file mode 100644 index 0000000000..74cc796a9c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/checks-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/chevron-down-20.svg b/src/components/Icons/icons-export/Flat/20/chevron-down-20.svg new file mode 100644 index 0000000000..1ef1d4b462 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/chevron-down-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/chevron-left-20.svg b/src/components/Icons/icons-export/Flat/20/chevron-left-20.svg new file mode 100644 index 0000000000..628001efc0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/chevron-left-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/chevron-right-20.svg b/src/components/Icons/icons-export/Flat/20/chevron-right-20.svg new file mode 100644 index 0000000000..e14038bf7f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/chevron-right-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/clock-20.svg b/src/components/Icons/icons-export/Flat/20/clock-20.svg new file mode 100644 index 0000000000..c7a573d6b0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/clock-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/command-20.svg b/src/components/Icons/icons-export/Flat/20/command-20.svg new file mode 100644 index 0000000000..9ed967c814 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/command-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/copy-20.svg b/src/components/Icons/icons-export/Flat/20/copy-20.svg new file mode 100644 index 0000000000..7c271b4902 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/copy-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/delete-20.svg b/src/components/Icons/icons-export/Flat/20/delete-20.svg new file mode 100644 index 0000000000..92ad03d0e2 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/delete-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/edit-20.svg b/src/components/Icons/icons-export/Flat/20/edit-20.svg new file mode 100644 index 0000000000..daf77f8f60 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/edit-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/emoji-20.svg b/src/components/Icons/icons-export/Flat/20/emoji-20.svg new file mode 100644 index 0000000000..55f5f8794d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/emoji-20.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/emoji-add-20.svg b/src/components/Icons/icons-export/Flat/20/emoji-add-20.svg new file mode 100644 index 0000000000..a0bacdaa70 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/emoji-add-20.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg new file mode 100644 index 0000000000..0d561e2332 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg new file mode 100644 index 0000000000..de802faa32 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg new file mode 100644 index 0000000000..39fffd8432 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg new file mode 100644 index 0000000000..d8ceab2b5a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/export-20.svg b/src/components/Icons/icons-export/Flat/20/export-20.svg new file mode 100644 index 0000000000..3d48804286 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/export-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/file-20.svg b/src/components/Icons/icons-export/Flat/20/file-20.svg new file mode 100644 index 0000000000..dbd12a5713 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/file-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/flag-20.svg b/src/components/Icons/icons-export/Flat/20/flag-20.svg new file mode 100644 index 0000000000..a36b054258 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/flag-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/folder-20.svg b/src/components/Icons/icons-export/Flat/20/folder-20.svg new file mode 100644 index 0000000000..776fa32792 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/folder-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/gallery-20.svg b/src/components/Icons/icons-export/Flat/20/gallery-20.svg new file mode 100644 index 0000000000..01b3ca8ef9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/gallery-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/giphy-20.svg b/src/components/Icons/icons-export/Flat/20/giphy-20.svg new file mode 100644 index 0000000000..71fdf81fb1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/giphy-20.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/image-20.svg b/src/components/Icons/icons-export/Flat/20/image-20.svg new file mode 100644 index 0000000000..1a117f7b0b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/image-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/imgur-20.svg b/src/components/Icons/icons-export/Flat/20/imgur-20.svg new file mode 100644 index 0000000000..0258687aca --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/imgur-20.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/link-20.svg b/src/components/Icons/icons-export/Flat/20/link-20.svg new file mode 100644 index 0000000000..86844b0616 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/link-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/loading-20.svg b/src/components/Icons/icons-export/Flat/20/loading-20.svg new file mode 100644 index 0000000000..e299e0d4bb --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/loading-20.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Flat/20/location-20.svg b/src/components/Icons/icons-export/Flat/20/location-20.svg new file mode 100644 index 0000000000..6a1dbd245d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/location-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/lock-20.svg b/src/components/Icons/icons-export/Flat/20/lock-20.svg new file mode 100644 index 0000000000..ca6b5cbf2c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/lock-20.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/mention-20.svg b/src/components/Icons/icons-export/Flat/20/mention-20.svg new file mode 100644 index 0000000000..8475c947a5 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/mention-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/message-bubble-20.svg b/src/components/Icons/icons-export/Flat/20/message-bubble-20.svg new file mode 100644 index 0000000000..83e5341d99 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/message-bubble-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg b/src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg new file mode 100644 index 0000000000..46a10bd82e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg b/src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg new file mode 100644 index 0000000000..41720e9d44 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/minus-20.svg b/src/components/Icons/icons-export/Flat/20/minus-20.svg new file mode 100644 index 0000000000..d72b76025d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/minus-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/more-20.svg b/src/components/Icons/icons-export/Flat/20/more-20.svg new file mode 100644 index 0000000000..dd66fec259 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/more-20.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/mute-20.svg b/src/components/Icons/icons-export/Flat/20/mute-20.svg new file mode 100644 index 0000000000..9c278f54fb --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/mute-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/no-sign-20.svg b/src/components/Icons/icons-export/Flat/20/no-sign-20.svg new file mode 100644 index 0000000000..3d5fadf71a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/no-sign-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/notification-20.svg b/src/components/Icons/icons-export/Flat/20/notification-20.svg new file mode 100644 index 0000000000..1ab424184a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/notification-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/pause-fill-20.svg b/src/components/Icons/icons-export/Flat/20/pause-fill-20.svg new file mode 100644 index 0000000000..e058d1798d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/pause-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/pin-20.svg b/src/components/Icons/icons-export/Flat/20/pin-20.svg new file mode 100644 index 0000000000..a97611a42f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/pin-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/play-fill-20.svg b/src/components/Icons/icons-export/Flat/20/play-fill-20.svg new file mode 100644 index 0000000000..5897b389fe --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/play-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/plus-20.svg b/src/components/Icons/icons-export/Flat/20/plus-20.svg new file mode 100644 index 0000000000..70857c682e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/plus-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/poll-20.svg b/src/components/Icons/icons-export/Flat/20/poll-20.svg new file mode 100644 index 0000000000..43ff0feba8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/poll-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/quote-20.svg b/src/components/Icons/icons-export/Flat/20/quote-20.svg new file mode 100644 index 0000000000..2db1884768 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/quote-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/refresh-20.svg b/src/components/Icons/icons-export/Flat/20/refresh-20.svg new file mode 100644 index 0000000000..faabac54c2 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/refresh-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/reorder-20.svg b/src/components/Icons/icons-export/Flat/20/reorder-20.svg new file mode 100644 index 0000000000..1be07317ef --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/reorder-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/reply-20.svg b/src/components/Icons/icons-export/Flat/20/reply-20.svg new file mode 100644 index 0000000000..a849d5e47c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/reply-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/retry-20.svg b/src/components/Icons/icons-export/Flat/20/retry-20.svg new file mode 100644 index 0000000000..cea251ba0b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/retry-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/save-20.svg b/src/components/Icons/icons-export/Flat/20/save-20.svg new file mode 100644 index 0000000000..552c1e352b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/save-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/search-20.svg b/src/components/Icons/icons-export/Flat/20/search-20.svg new file mode 100644 index 0000000000..e0a235d0cf --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/search-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/send-20.svg b/src/components/Icons/icons-export/Flat/20/send-20.svg new file mode 100644 index 0000000000..c2c36efc40 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/send-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/share-20.svg b/src/components/Icons/icons-export/Flat/20/share-20.svg new file mode 100644 index 0000000000..abd038ebe7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/share-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/stop-fill-20.svg b/src/components/Icons/icons-export/Flat/20/stop-fill-20.svg new file mode 100644 index 0000000000..78a4a19a4d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/stop-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/thread-20.svg b/src/components/Icons/icons-export/Flat/20/thread-20.svg new file mode 100644 index 0000000000..5c5851940e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/thread-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/thread-fill-20.svg b/src/components/Icons/icons-export/Flat/20/thread-fill-20.svg new file mode 100644 index 0000000000..dc0e831113 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/thread-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/translate-20.svg b/src/components/Icons/icons-export/Flat/20/translate-20.svg new file mode 100644 index 0000000000..b575865319 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/translate-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/trophy-20.svg b/src/components/Icons/icons-export/Flat/20/trophy-20.svg new file mode 100644 index 0000000000..37f78a881a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/trophy-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/unpin-20.svg b/src/components/Icons/icons-export/Flat/20/unpin-20.svg new file mode 100644 index 0000000000..7b2d42823d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/unpin-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/unsave-20.svg b/src/components/Icons/icons-export/Flat/20/unsave-20.svg new file mode 100644 index 0000000000..5041e4bbb1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/unsave-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/upload-20.svg b/src/components/Icons/icons-export/Flat/20/upload-20.svg new file mode 100644 index 0000000000..b40553977a --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/upload-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/user-20.svg b/src/components/Icons/icons-export/Flat/20/user-20.svg new file mode 100644 index 0000000000..2df8636b24 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/user-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/user-add-20.svg b/src/components/Icons/icons-export/Flat/20/user-add-20.svg new file mode 100644 index 0000000000..40936f67b7 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/user-add-20.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/user-check-20.svg b/src/components/Icons/icons-export/Flat/20/user-check-20.svg new file mode 100644 index 0000000000..e75425c9a9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/user-check-20.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/user-remove-20.svg b/src/components/Icons/icons-export/Flat/20/user-remove-20.svg new file mode 100644 index 0000000000..c7df63efb8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/user-remove-20.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/users-20.svg b/src/components/Icons/icons-export/Flat/20/users-20.svg new file mode 100644 index 0000000000..750987bd93 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/users-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/video-20.svg b/src/components/Icons/icons-export/Flat/20/video-20.svg new file mode 100644 index 0000000000..bdded5e91e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/video-20.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/video-fill-20.svg b/src/components/Icons/icons-export/Flat/20/video-fill-20.svg new file mode 100644 index 0000000000..f575817e43 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/video-fill-20.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/20/voice-20.svg b/src/components/Icons/icons-export/Flat/20/voice-20.svg new file mode 100644 index 0000000000..017095c82f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/voice-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/voice-fill-20.svg b/src/components/Icons/icons-export/Flat/20/voice-fill-20.svg new file mode 100644 index 0000000000..a7c251dabd --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/voice-fill-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/20/xmark-20.svg b/src/components/Icons/icons-export/Flat/20/xmark-20.svg new file mode 100644 index 0000000000..715ac01af6 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/20/xmark-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/account-32.svg b/src/components/Icons/icons-export/Flat/32/account-32.svg new file mode 100644 index 0000000000..964edaa4bf --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/account-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/archive-32.svg b/src/components/Icons/icons-export/Flat/32/archive-32.svg new file mode 100644 index 0000000000..2010c222a8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/archive-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg new file mode 100644 index 0000000000..3a2e1bf3ae --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/arrow-left-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-left-32.svg new file mode 100644 index 0000000000..d17a519d8d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/arrow-left-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/arrow-up-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-up-32.svg new file mode 100644 index 0000000000..3da94d77d9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/arrow-up-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg new file mode 100644 index 0000000000..718a45ce6f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/attachment-32.svg b/src/components/Icons/icons-export/Flat/32/attachment-32.svg new file mode 100644 index 0000000000..22e3aaebaa --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/attachment-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/audio-32.svg b/src/components/Icons/icons-export/Flat/32/audio-32.svg new file mode 100644 index 0000000000..bfa72c8ed3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/audio-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/bell-32.svg b/src/components/Icons/icons-export/Flat/32/bell-32.svg new file mode 100644 index 0000000000..72feba5155 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/bell-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/bell-off-32.svg b/src/components/Icons/icons-export/Flat/32/bell-off-32.svg new file mode 100644 index 0000000000..dfacd85f87 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/bell-off-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/bolt-32.svg b/src/components/Icons/icons-export/Flat/32/bolt-32.svg new file mode 100644 index 0000000000..db7d066634 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/bolt-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/camera-32.svg b/src/components/Icons/icons-export/Flat/32/camera-32.svg new file mode 100644 index 0000000000..b62ab4f252 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/camera-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/checkmark-32.svg b/src/components/Icons/icons-export/Flat/32/checkmark-32.svg new file mode 100644 index 0000000000..73b0c17454 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/checkmark-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/checks-32.svg b/src/components/Icons/icons-export/Flat/32/checks-32.svg new file mode 100644 index 0000000000..d683b63857 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/checks-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/chevron-down-32.svg b/src/components/Icons/icons-export/Flat/32/chevron-down-32.svg new file mode 100644 index 0000000000..ba9e99eff2 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/chevron-down-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/chevron-left-32.svg b/src/components/Icons/icons-export/Flat/32/chevron-left-32.svg new file mode 100644 index 0000000000..c50908ac82 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/chevron-left-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/chevron-right-32.svg b/src/components/Icons/icons-export/Flat/32/chevron-right-32.svg new file mode 100644 index 0000000000..553d60dbd3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/chevron-right-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/command-20.svg b/src/components/Icons/icons-export/Flat/32/command-20.svg new file mode 100644 index 0000000000..a4d3f6631b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/command-20.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/copy-32.svg b/src/components/Icons/icons-export/Flat/32/copy-32.svg new file mode 100644 index 0000000000..7439bc95af --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/copy-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/delete-.svg b/src/components/Icons/icons-export/Flat/32/delete-.svg new file mode 100644 index 0000000000..2faa9a220f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/delete-.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/edit-32.svg b/src/components/Icons/icons-export/Flat/32/edit-32.svg new file mode 100644 index 0000000000..e35af4af00 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/edit-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/emoji-.svg b/src/components/Icons/icons-export/Flat/32/emoji-.svg new file mode 100644 index 0000000000..85ed31b8af --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/emoji-.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/emoji-add-32.svg b/src/components/Icons/icons-export/Flat/32/emoji-add-32.svg new file mode 100644 index 0000000000..8543dae7ed --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/emoji-add-32.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg new file mode 100644 index 0000000000..5897518051 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg new file mode 100644 index 0000000000..772f883f02 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg new file mode 100644 index 0000000000..b1b374f270 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg new file mode 100644 index 0000000000..614b3746b9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/export-32.svg b/src/components/Icons/icons-export/Flat/32/export-32.svg new file mode 100644 index 0000000000..3e1896b4ba --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/export-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/file-32.svg b/src/components/Icons/icons-export/Flat/32/file-32.svg new file mode 100644 index 0000000000..ff2d2d3d22 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/file-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/flag-32.svg b/src/components/Icons/icons-export/Flat/32/flag-32.svg new file mode 100644 index 0000000000..3ae47bcaf9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/flag-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/folder-32.svg b/src/components/Icons/icons-export/Flat/32/folder-32.svg new file mode 100644 index 0000000000..8c5168d9b9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/folder-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/gallery-32.svg b/src/components/Icons/icons-export/Flat/32/gallery-32.svg new file mode 100644 index 0000000000..3f28a2287f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/gallery-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/giphy-32.svg b/src/components/Icons/icons-export/Flat/32/giphy-32.svg new file mode 100644 index 0000000000..801c42b161 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/giphy-32.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/icon-32.svg b/src/components/Icons/icons-export/Flat/32/icon-32.svg new file mode 100644 index 0000000000..cd6b8f1b27 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/icon-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/image-32.svg b/src/components/Icons/icons-export/Flat/32/image-32.svg new file mode 100644 index 0000000000..ca28402bc8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/image-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/imgur-32.svg b/src/components/Icons/icons-export/Flat/32/imgur-32.svg new file mode 100644 index 0000000000..7de20bba08 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/imgur-32.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/info-32.svg b/src/components/Icons/icons-export/Flat/32/info-32.svg new file mode 100644 index 0000000000..4e875a4714 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/info-32.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/leave-32.svg b/src/components/Icons/icons-export/Flat/32/leave-32.svg new file mode 100644 index 0000000000..c77539ce6c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/leave-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/link-32.svg b/src/components/Icons/icons-export/Flat/32/link-32.svg new file mode 100644 index 0000000000..3652c52181 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/link-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/loading-32.svg b/src/components/Icons/icons-export/Flat/32/loading-32.svg new file mode 100644 index 0000000000..0dcedc60c3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/loading-32.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Flat/32/location-32.svg b/src/components/Icons/icons-export/Flat/32/location-32.svg new file mode 100644 index 0000000000..558216f29e --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/location-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/lock-32.svg b/src/components/Icons/icons-export/Flat/32/lock-32.svg new file mode 100644 index 0000000000..2205482394 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/lock-32.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/mention-32.svg b/src/components/Icons/icons-export/Flat/32/mention-32.svg new file mode 100644 index 0000000000..618dc65efd --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/mention-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/message-bubble-32.svg b/src/components/Icons/icons-export/Flat/32/message-bubble-32.svg new file mode 100644 index 0000000000..c490909ae9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/message-bubble-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg b/src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg new file mode 100644 index 0000000000..cdb244c0fb --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg b/src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg new file mode 100644 index 0000000000..e18c5873c5 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/minus-32.svg b/src/components/Icons/icons-export/Flat/32/minus-32.svg new file mode 100644 index 0000000000..9d44c9c2bd --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/minus-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/minus-circle-32.svg b/src/components/Icons/icons-export/Flat/32/minus-circle-32.svg new file mode 100644 index 0000000000..140aaa0b01 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/minus-circle-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/more-32.svg b/src/components/Icons/icons-export/Flat/32/more-32.svg new file mode 100644 index 0000000000..ab94b540c8 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/more-32.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/mute-32.svg b/src/components/Icons/icons-export/Flat/32/mute-32.svg new file mode 100644 index 0000000000..5d5d1458a6 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/mute-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/no-sign-32.svg b/src/components/Icons/icons-export/Flat/32/no-sign-32.svg new file mode 100644 index 0000000000..75a0ff7bb3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/no-sign-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/notification-32.svg b/src/components/Icons/icons-export/Flat/32/notification-32.svg new file mode 100644 index 0000000000..e99148df20 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/notification-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/pause-fill-32.svg b/src/components/Icons/icons-export/Flat/32/pause-fill-32.svg new file mode 100644 index 0000000000..02273bb02c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/pause-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/pin-32.svg b/src/components/Icons/icons-export/Flat/32/pin-32.svg new file mode 100644 index 0000000000..2b9e1bcd98 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/pin-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/play-fill-32.svg b/src/components/Icons/icons-export/Flat/32/play-fill-32.svg new file mode 100644 index 0000000000..800d3d5bb3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/play-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/plus-32-1.svg b/src/components/Icons/icons-export/Flat/32/plus-32-1.svg new file mode 100644 index 0000000000..a290cb2fd9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/plus-32-1.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/plus-32.svg b/src/components/Icons/icons-export/Flat/32/plus-32.svg new file mode 100644 index 0000000000..a290cb2fd9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/plus-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/poll-32.svg b/src/components/Icons/icons-export/Flat/32/poll-32.svg new file mode 100644 index 0000000000..3013f5b013 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/poll-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/quote-.svg b/src/components/Icons/icons-export/Flat/32/quote-.svg new file mode 100644 index 0000000000..72ffa94c5f --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/quote-.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/refresh-32.svg b/src/components/Icons/icons-export/Flat/32/refresh-32.svg new file mode 100644 index 0000000000..4732c55364 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/refresh-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/reorder-32.svg b/src/components/Icons/icons-export/Flat/32/reorder-32.svg new file mode 100644 index 0000000000..20524cace5 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/reorder-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/reply-32.svg b/src/components/Icons/icons-export/Flat/32/reply-32.svg new file mode 100644 index 0000000000..70868790b1 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/reply-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/retry-32.svg b/src/components/Icons/icons-export/Flat/32/retry-32.svg new file mode 100644 index 0000000000..df4fce3188 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/retry-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/save-32.svg b/src/components/Icons/icons-export/Flat/32/save-32.svg new file mode 100644 index 0000000000..bfb57b5183 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/save-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/search-32.svg b/src/components/Icons/icons-export/Flat/32/search-32.svg new file mode 100644 index 0000000000..6d0f6262c4 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/search-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/send-32.svg b/src/components/Icons/icons-export/Flat/32/send-32.svg new file mode 100644 index 0000000000..83f5b34e53 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/send-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/share-32.svg b/src/components/Icons/icons-export/Flat/32/share-32.svg new file mode 100644 index 0000000000..8417952462 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/share-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/sidebar-32.svg b/src/components/Icons/icons-export/Flat/32/sidebar-32.svg new file mode 100644 index 0000000000..78dd9d01e3 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/sidebar-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/stop-fill-32.svg b/src/components/Icons/icons-export/Flat/32/stop-fill-32.svg new file mode 100644 index 0000000000..ac365149db --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/stop-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/thread-32.svg b/src/components/Icons/icons-export/Flat/32/thread-32.svg new file mode 100644 index 0000000000..d34ad8239d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/thread-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/thread-fill-32.svg b/src/components/Icons/icons-export/Flat/32/thread-fill-32.svg new file mode 100644 index 0000000000..d5746e4b29 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/thread-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/translate-32.svg b/src/components/Icons/icons-export/Flat/32/translate-32.svg new file mode 100644 index 0000000000..ac0c1e6999 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/translate-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/trophy-32.svg b/src/components/Icons/icons-export/Flat/32/trophy-32.svg new file mode 100644 index 0000000000..39172bd29c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/trophy-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/unlock-32.svg b/src/components/Icons/icons-export/Flat/32/unlock-32.svg new file mode 100644 index 0000000000..672c1eb510 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/unlock-32.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/unpin-32.svg b/src/components/Icons/icons-export/Flat/32/unpin-32.svg new file mode 100644 index 0000000000..245a33639d --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/unpin-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/unsave-32.svg b/src/components/Icons/icons-export/Flat/32/unsave-32.svg new file mode 100644 index 0000000000..1890d265e9 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/unsave-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/upload-32.svg b/src/components/Icons/icons-export/Flat/32/upload-32.svg new file mode 100644 index 0000000000..2d76d63191 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/upload-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/user-32.svg b/src/components/Icons/icons-export/Flat/32/user-32.svg new file mode 100644 index 0000000000..def0366880 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/user-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/user-add-32.svg b/src/components/Icons/icons-export/Flat/32/user-add-32.svg new file mode 100644 index 0000000000..d972f5ad77 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/user-add-32.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/user-check-32.svg b/src/components/Icons/icons-export/Flat/32/user-check-32.svg new file mode 100644 index 0000000000..09c8708d7c --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/user-check-32.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/user-remove-32.svg b/src/components/Icons/icons-export/Flat/32/user-remove-32.svg new file mode 100644 index 0000000000..0edb137d81 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/user-remove-32.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/users-32.svg b/src/components/Icons/icons-export/Flat/32/users-32.svg new file mode 100644 index 0000000000..8555133ffd --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/users-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/video-32.svg b/src/components/Icons/icons-export/Flat/32/video-32.svg new file mode 100644 index 0000000000..58ec572808 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/video-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/video-fill-32.svg b/src/components/Icons/icons-export/Flat/32/video-fill-32.svg new file mode 100644 index 0000000000..2273cc81a2 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/video-fill-32.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Flat/32/voice-32.svg b/src/components/Icons/icons-export/Flat/32/voice-32.svg new file mode 100644 index 0000000000..f0eb240cc0 --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/voice-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/voice-fill-32.svg b/src/components/Icons/icons-export/Flat/32/voice-fill-32.svg new file mode 100644 index 0000000000..966f56404b --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/voice-fill-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/x-circle-32.svg b/src/components/Icons/icons-export/Flat/32/x-circle-32.svg new file mode 100644 index 0000000000..a5ef8925cf --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/x-circle-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Flat/32/xmark-32.svg b/src/components/Icons/icons-export/Flat/32/xmark-32.svg new file mode 100644 index 0000000000..160ca23bbc --- /dev/null +++ b/src/components/Icons/icons-export/Flat/32/xmark-32.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/Mention.svg b/src/components/Icons/icons-export/Line/Mention.svg new file mode 100644 index 0000000000..b023d269d7 --- /dev/null +++ b/src/components/Icons/icons-export/Line/Mention.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/Retry.svg b/src/components/Icons/icons-export/Line/Retry.svg new file mode 100644 index 0000000000..d38cbaf13b --- /dev/null +++ b/src/components/Icons/icons-export/Line/Retry.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/account.svg b/src/components/Icons/icons-export/Line/account.svg new file mode 100644 index 0000000000..929c61ca3b --- /dev/null +++ b/src/components/Icons/icons-export/Line/account.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/archive.svg b/src/components/Icons/icons-export/Line/archive.svg new file mode 100644 index 0000000000..a171c24343 --- /dev/null +++ b/src/components/Icons/icons-export/Line/archive.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/arrow-down-circle.svg b/src/components/Icons/icons-export/Line/arrow-down-circle.svg new file mode 100644 index 0000000000..ef54878bbd --- /dev/null +++ b/src/components/Icons/icons-export/Line/arrow-down-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/arrow-left.svg b/src/components/Icons/icons-export/Line/arrow-left.svg new file mode 100644 index 0000000000..5442f6f41c --- /dev/null +++ b/src/components/Icons/icons-export/Line/arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/arrow-up-right.svg b/src/components/Icons/icons-export/Line/arrow-up-right.svg new file mode 100644 index 0000000000..910d882db0 --- /dev/null +++ b/src/components/Icons/icons-export/Line/arrow-up-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/arrow-up.svg b/src/components/Icons/icons-export/Line/arrow-up.svg new file mode 100644 index 0000000000..d18ec74f38 --- /dev/null +++ b/src/components/Icons/icons-export/Line/arrow-up.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/attachment.svg b/src/components/Icons/icons-export/Line/attachment.svg new file mode 100644 index 0000000000..025848818e --- /dev/null +++ b/src/components/Icons/icons-export/Line/attachment.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/audio.svg b/src/components/Icons/icons-export/Line/audio.svg new file mode 100644 index 0000000000..6b7fbb6c96 --- /dev/null +++ b/src/components/Icons/icons-export/Line/audio.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/bell-off.svg b/src/components/Icons/icons-export/Line/bell-off.svg new file mode 100644 index 0000000000..0c418e96f1 --- /dev/null +++ b/src/components/Icons/icons-export/Line/bell-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/bell.svg b/src/components/Icons/icons-export/Line/bell.svg new file mode 100644 index 0000000000..67d00038c4 --- /dev/null +++ b/src/components/Icons/icons-export/Line/bell.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/bolt.svg b/src/components/Icons/icons-export/Line/bolt.svg new file mode 100644 index 0000000000..785ee09ae1 --- /dev/null +++ b/src/components/Icons/icons-export/Line/bolt.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/camera.svg b/src/components/Icons/icons-export/Line/camera.svg new file mode 100644 index 0000000000..3638013f66 --- /dev/null +++ b/src/components/Icons/icons-export/Line/camera.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Line/checkmark.svg b/src/components/Icons/icons-export/Line/checkmark.svg new file mode 100644 index 0000000000..c00e3bff4e --- /dev/null +++ b/src/components/Icons/icons-export/Line/checkmark.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/checks.svg b/src/components/Icons/icons-export/Line/checks.svg new file mode 100644 index 0000000000..cfad881ce0 --- /dev/null +++ b/src/components/Icons/icons-export/Line/checks.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/chevron-down.svg b/src/components/Icons/icons-export/Line/chevron-down.svg new file mode 100644 index 0000000000..fa5e13ff62 --- /dev/null +++ b/src/components/Icons/icons-export/Line/chevron-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/chevron-left.svg b/src/components/Icons/icons-export/Line/chevron-left.svg new file mode 100644 index 0000000000..6c66b57316 --- /dev/null +++ b/src/components/Icons/icons-export/Line/chevron-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/chevron-right.svg b/src/components/Icons/icons-export/Line/chevron-right.svg new file mode 100644 index 0000000000..ca34765882 --- /dev/null +++ b/src/components/Icons/icons-export/Line/chevron-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/clock.svg b/src/components/Icons/icons-export/Line/clock.svg new file mode 100644 index 0000000000..fc1be19be2 --- /dev/null +++ b/src/components/Icons/icons-export/Line/clock.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/code.svg b/src/components/Icons/icons-export/Line/code.svg new file mode 100644 index 0000000000..d410b521e7 --- /dev/null +++ b/src/components/Icons/icons-export/Line/code.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/command.svg b/src/components/Icons/icons-export/Line/command.svg new file mode 100644 index 0000000000..5720ac5e46 --- /dev/null +++ b/src/components/Icons/icons-export/Line/command.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/copy.svg b/src/components/Icons/icons-export/Line/copy.svg new file mode 100644 index 0000000000..7894e599c4 --- /dev/null +++ b/src/components/Icons/icons-export/Line/copy.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/delete.svg b/src/components/Icons/icons-export/Line/delete.svg new file mode 100644 index 0000000000..ee9ce8a33a --- /dev/null +++ b/src/components/Icons/icons-export/Line/delete.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/edit.svg b/src/components/Icons/icons-export/Line/edit.svg new file mode 100644 index 0000000000..e8128d9b49 --- /dev/null +++ b/src/components/Icons/icons-export/Line/edit.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/emoji-add-1.svg b/src/components/Icons/icons-export/Line/emoji-add-1.svg new file mode 100644 index 0000000000..a0bacdaa70 --- /dev/null +++ b/src/components/Icons/icons-export/Line/emoji-add-1.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Icons/icons-export/Line/emoji-add.svg b/src/components/Icons/icons-export/Line/emoji-add.svg new file mode 100644 index 0000000000..78df48ca64 --- /dev/null +++ b/src/components/Icons/icons-export/Line/emoji-add.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/emoji.svg b/src/components/Icons/icons-export/Line/emoji.svg new file mode 100644 index 0000000000..55f5f8794d --- /dev/null +++ b/src/components/Icons/icons-export/Line/emoji.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Line/exclamation-circle-fill.svg b/src/components/Icons/icons-export/Line/exclamation-circle-fill.svg new file mode 100644 index 0000000000..0d561e2332 --- /dev/null +++ b/src/components/Icons/icons-export/Line/exclamation-circle-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/exclamation-circle.svg b/src/components/Icons/icons-export/Line/exclamation-circle.svg new file mode 100644 index 0000000000..de802faa32 --- /dev/null +++ b/src/components/Icons/icons-export/Line/exclamation-circle.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Line/exclamation-mark-fill.svg b/src/components/Icons/icons-export/Line/exclamation-mark-fill.svg new file mode 100644 index 0000000000..39fffd8432 --- /dev/null +++ b/src/components/Icons/icons-export/Line/exclamation-mark-fill.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg b/src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg new file mode 100644 index 0000000000..d8ceab2b5a --- /dev/null +++ b/src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/export.svg b/src/components/Icons/icons-export/Line/export.svg new file mode 100644 index 0000000000..23cf51bbf8 --- /dev/null +++ b/src/components/Icons/icons-export/Line/export.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/file.svg b/src/components/Icons/icons-export/Line/file.svg new file mode 100644 index 0000000000..ce658b2443 --- /dev/null +++ b/src/components/Icons/icons-export/Line/file.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/flag.svg b/src/components/Icons/icons-export/Line/flag.svg new file mode 100644 index 0000000000..d084c2351b --- /dev/null +++ b/src/components/Icons/icons-export/Line/flag.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/folder.svg b/src/components/Icons/icons-export/Line/folder.svg new file mode 100644 index 0000000000..7b210b46ac --- /dev/null +++ b/src/components/Icons/icons-export/Line/folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/gallery.svg b/src/components/Icons/icons-export/Line/gallery.svg new file mode 100644 index 0000000000..86573fce6a --- /dev/null +++ b/src/components/Icons/icons-export/Line/gallery.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Icons/icons-export/Line/giphy.svg b/src/components/Icons/icons-export/Line/giphy.svg new file mode 100644 index 0000000000..71fdf81fb1 --- /dev/null +++ b/src/components/Icons/icons-export/Line/giphy.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Line/image.svg b/src/components/Icons/icons-export/Line/image.svg new file mode 100644 index 0000000000..719cbe37d2 --- /dev/null +++ b/src/components/Icons/icons-export/Line/image.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/imgur.svg b/src/components/Icons/icons-export/Line/imgur.svg new file mode 100644 index 0000000000..0258687aca --- /dev/null +++ b/src/components/Icons/icons-export/Line/imgur.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Line/info.svg b/src/components/Icons/icons-export/Line/info.svg new file mode 100644 index 0000000000..1282e1fb8f --- /dev/null +++ b/src/components/Icons/icons-export/Line/info.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Line/leave.svg b/src/components/Icons/icons-export/Line/leave.svg new file mode 100644 index 0000000000..2a88912a38 --- /dev/null +++ b/src/components/Icons/icons-export/Line/leave.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/link.svg b/src/components/Icons/icons-export/Line/link.svg new file mode 100644 index 0000000000..34f08c8ddd --- /dev/null +++ b/src/components/Icons/icons-export/Line/link.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/loading.svg b/src/components/Icons/icons-export/Line/loading.svg new file mode 100644 index 0000000000..5e7bc706b0 --- /dev/null +++ b/src/components/Icons/icons-export/Line/loading.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Line/location.svg b/src/components/Icons/icons-export/Line/location.svg new file mode 100644 index 0000000000..3025df2809 --- /dev/null +++ b/src/components/Icons/icons-export/Line/location.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Icons/icons-export/Line/lock.svg b/src/components/Icons/icons-export/Line/lock.svg new file mode 100644 index 0000000000..6d57ca2856 --- /dev/null +++ b/src/components/Icons/icons-export/Line/lock.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Line/message-bubble-fill.svg b/src/components/Icons/icons-export/Line/message-bubble-fill.svg new file mode 100644 index 0000000000..46a10bd82e --- /dev/null +++ b/src/components/Icons/icons-export/Line/message-bubble-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/message-bubble.svg b/src/components/Icons/icons-export/Line/message-bubble.svg new file mode 100644 index 0000000000..8a236477e1 --- /dev/null +++ b/src/components/Icons/icons-export/Line/message-bubble.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/message-bubbles.svg b/src/components/Icons/icons-export/Line/message-bubbles.svg new file mode 100644 index 0000000000..c773c27f00 --- /dev/null +++ b/src/components/Icons/icons-export/Line/message-bubbles.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/minus-1.svg b/src/components/Icons/icons-export/Line/minus-1.svg new file mode 100644 index 0000000000..fd3c77469b --- /dev/null +++ b/src/components/Icons/icons-export/Line/minus-1.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/minus-circle.svg b/src/components/Icons/icons-export/Line/minus-circle.svg new file mode 100644 index 0000000000..6d01e86b4f --- /dev/null +++ b/src/components/Icons/icons-export/Line/minus-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/minus.svg b/src/components/Icons/icons-export/Line/minus.svg new file mode 100644 index 0000000000..fd3c77469b --- /dev/null +++ b/src/components/Icons/icons-export/Line/minus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/more.svg b/src/components/Icons/icons-export/Line/more.svg new file mode 100644 index 0000000000..dd66fec259 --- /dev/null +++ b/src/components/Icons/icons-export/Line/more.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Line/mute.svg b/src/components/Icons/icons-export/Line/mute.svg new file mode 100644 index 0000000000..e4d402f4f4 --- /dev/null +++ b/src/components/Icons/icons-export/Line/mute.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/no-sign.svg b/src/components/Icons/icons-export/Line/no-sign.svg new file mode 100644 index 0000000000..00bfd22151 --- /dev/null +++ b/src/components/Icons/icons-export/Line/no-sign.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/notification.svg b/src/components/Icons/icons-export/Line/notification.svg new file mode 100644 index 0000000000..ce9b2d3420 --- /dev/null +++ b/src/components/Icons/icons-export/Line/notification.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/pause-fill.svg b/src/components/Icons/icons-export/Line/pause-fill.svg new file mode 100644 index 0000000000..e058d1798d --- /dev/null +++ b/src/components/Icons/icons-export/Line/pause-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/pin.svg b/src/components/Icons/icons-export/Line/pin.svg new file mode 100644 index 0000000000..2ddac775f8 --- /dev/null +++ b/src/components/Icons/icons-export/Line/pin.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/play-fill.svg b/src/components/Icons/icons-export/Line/play-fill.svg new file mode 100644 index 0000000000..5897b389fe --- /dev/null +++ b/src/components/Icons/icons-export/Line/play-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/plus.svg b/src/components/Icons/icons-export/Line/plus.svg new file mode 100644 index 0000000000..c3d842ad64 --- /dev/null +++ b/src/components/Icons/icons-export/Line/plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/poll.svg b/src/components/Icons/icons-export/Line/poll.svg new file mode 100644 index 0000000000..134b18fb05 --- /dev/null +++ b/src/components/Icons/icons-export/Line/poll.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/presentation.svg b/src/components/Icons/icons-export/Line/presentation.svg new file mode 100644 index 0000000000..d824d9235e --- /dev/null +++ b/src/components/Icons/icons-export/Line/presentation.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/quote.svg b/src/components/Icons/icons-export/Line/quote.svg new file mode 100644 index 0000000000..3a6b9f5258 --- /dev/null +++ b/src/components/Icons/icons-export/Line/quote.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/refresh.svg b/src/components/Icons/icons-export/Line/refresh.svg new file mode 100644 index 0000000000..85a7acd295 --- /dev/null +++ b/src/components/Icons/icons-export/Line/refresh.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/reorder.svg b/src/components/Icons/icons-export/Line/reorder.svg new file mode 100644 index 0000000000..1be07317ef --- /dev/null +++ b/src/components/Icons/icons-export/Line/reorder.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/reply.svg b/src/components/Icons/icons-export/Line/reply.svg new file mode 100644 index 0000000000..a527ef2f77 --- /dev/null +++ b/src/components/Icons/icons-export/Line/reply.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/save.svg b/src/components/Icons/icons-export/Line/save.svg new file mode 100644 index 0000000000..06b1298d69 --- /dev/null +++ b/src/components/Icons/icons-export/Line/save.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/search.svg b/src/components/Icons/icons-export/Line/search.svg new file mode 100644 index 0000000000..1b27023458 --- /dev/null +++ b/src/components/Icons/icons-export/Line/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/send.svg b/src/components/Icons/icons-export/Line/send.svg new file mode 100644 index 0000000000..796dd25a0a --- /dev/null +++ b/src/components/Icons/icons-export/Line/send.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/share.svg b/src/components/Icons/icons-export/Line/share.svg new file mode 100644 index 0000000000..9325e1a55e --- /dev/null +++ b/src/components/Icons/icons-export/Line/share.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/sidebar.svg b/src/components/Icons/icons-export/Line/sidebar.svg new file mode 100644 index 0000000000..6ae217525a --- /dev/null +++ b/src/components/Icons/icons-export/Line/sidebar.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/spreadsheet.svg b/src/components/Icons/icons-export/Line/spreadsheet.svg new file mode 100644 index 0000000000..ae44650901 --- /dev/null +++ b/src/components/Icons/icons-export/Line/spreadsheet.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/stop-fill.svg b/src/components/Icons/icons-export/Line/stop-fill.svg new file mode 100644 index 0000000000..78a4a19a4d --- /dev/null +++ b/src/components/Icons/icons-export/Line/stop-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/thread-fill.svg b/src/components/Icons/icons-export/Line/thread-fill.svg new file mode 100644 index 0000000000..dc0e831113 --- /dev/null +++ b/src/components/Icons/icons-export/Line/thread-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/thread.svg b/src/components/Icons/icons-export/Line/thread.svg new file mode 100644 index 0000000000..b94bd9f6ab --- /dev/null +++ b/src/components/Icons/icons-export/Line/thread.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/translate.svg b/src/components/Icons/icons-export/Line/translate.svg new file mode 100644 index 0000000000..fcd72d1261 --- /dev/null +++ b/src/components/Icons/icons-export/Line/translate.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/trophy.svg b/src/components/Icons/icons-export/Line/trophy.svg new file mode 100644 index 0000000000..ba452e761a --- /dev/null +++ b/src/components/Icons/icons-export/Line/trophy.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/unlock.svg b/src/components/Icons/icons-export/Line/unlock.svg new file mode 100644 index 0000000000..141def3b71 --- /dev/null +++ b/src/components/Icons/icons-export/Line/unlock.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Icons/icons-export/Line/unpin.svg b/src/components/Icons/icons-export/Line/unpin.svg new file mode 100644 index 0000000000..d05922caed --- /dev/null +++ b/src/components/Icons/icons-export/Line/unpin.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/unsave.svg b/src/components/Icons/icons-export/Line/unsave.svg new file mode 100644 index 0000000000..afffbcfd56 --- /dev/null +++ b/src/components/Icons/icons-export/Line/unsave.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/upload.svg b/src/components/Icons/icons-export/Line/upload.svg new file mode 100644 index 0000000000..7d893f2f5c --- /dev/null +++ b/src/components/Icons/icons-export/Line/upload.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/user-add.svg b/src/components/Icons/icons-export/Line/user-add.svg new file mode 100644 index 0000000000..6d27d53ab8 --- /dev/null +++ b/src/components/Icons/icons-export/Line/user-add.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Line/user-check.svg b/src/components/Icons/icons-export/Line/user-check.svg new file mode 100644 index 0000000000..54d4d4cda5 --- /dev/null +++ b/src/components/Icons/icons-export/Line/user-check.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Line/user-remove.svg b/src/components/Icons/icons-export/Line/user-remove.svg new file mode 100644 index 0000000000..f688b0f7e5 --- /dev/null +++ b/src/components/Icons/icons-export/Line/user-remove.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Line/user.svg b/src/components/Icons/icons-export/Line/user.svg new file mode 100644 index 0000000000..14d2b1ec89 --- /dev/null +++ b/src/components/Icons/icons-export/Line/user.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/users.svg b/src/components/Icons/icons-export/Line/users.svg new file mode 100644 index 0000000000..177c35aff9 --- /dev/null +++ b/src/components/Icons/icons-export/Line/users.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/video-fill.svg b/src/components/Icons/icons-export/Line/video-fill.svg new file mode 100644 index 0000000000..8fd6343895 --- /dev/null +++ b/src/components/Icons/icons-export/Line/video-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Line/video.svg b/src/components/Icons/icons-export/Line/video.svg new file mode 100644 index 0000000000..79991805ca --- /dev/null +++ b/src/components/Icons/icons-export/Line/video.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/components/Icons/icons-export/Line/voice-fill.svg b/src/components/Icons/icons-export/Line/voice-fill.svg new file mode 100644 index 0000000000..80662e29b0 --- /dev/null +++ b/src/components/Icons/icons-export/Line/voice-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/voice.svg b/src/components/Icons/icons-export/Line/voice.svg new file mode 100644 index 0000000000..444bf45dfc --- /dev/null +++ b/src/components/Icons/icons-export/Line/voice.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/x-circle.svg b/src/components/Icons/icons-export/Line/x-circle.svg new file mode 100644 index 0000000000..0ed9ac25d0 --- /dev/null +++ b/src/components/Icons/icons-export/Line/x-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons-export/Line/xmark.svg b/src/components/Icons/icons-export/Line/xmark.svg new file mode 100644 index 0000000000..02c44492b9 --- /dev/null +++ b/src/components/Icons/icons-export/Line/xmark.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icons/icons.tsx b/src/components/Icons/icons.tsx index 18e4424cb7..17080f0dce 100644 --- a/src/components/Icons/icons.tsx +++ b/src/components/Icons/icons.tsx @@ -5,260 +5,505 @@ import { createIcon } from './createIcon'; // was: IconArrowBoxLeft export const IconLeave = createIcon( 'IconLeave', - , + , ); // no new icon mapping export const IconArrowDown = createIcon( 'IconArrowDown', , + { viewBox: '0 0 16 16' }, ); export const IconArrowDownCircle = createIcon( 'IconArrowDownCircle', - , + , ); export const IconArrowLeft = createIcon( 'IconArrowLeft', - , + , ); // no new icon mapping export const IconArrowRight = createIcon( 'IconArrowRight', , + { viewBox: '0 0 16 16' }, ); // was: IconArrowRightUp export const IconArrowUpRight = createIcon( 'IconArrowUpRight', - , + , ); // was: IconArrowRotateClockwise export const IconRetry = createIcon( 'IconRetry', - , + , ); // was: IconArrowRotateRightLeftRepeatRefresh export const IconRefresh = createIcon( 'IconRefresh', - , + , ); // was: IconArrowShareLeft export const IconReply = createIcon( 'IconReply', - , + , ); export const IconArrowUp = createIcon( 'IconArrowUp', - , + , ); // was: IconBellNotification export const IconBell = createIcon( 'IconBell', - , + , ); export const IconBellOff = createIcon( 'IconBellOff', - , + , ); // was: IconBookmark export const IconSave = createIcon( 'IconSave', - , + , ); // was: IconBookmarkRemove export const IconUnsave = createIcon( 'IconUnsave', - , + , ); // was: IconBubbles export const IconMessageBubbles = createIcon( 'IconMessageBubbles', - , + , ); // was: IconBubble2ChatMessage export const IconMessageBubble = createIcon( 'IconMessageBubble', - , + , ); // was: IconBubble2Solid export const IconMessageBubbleFill = createIcon( 'IconMessageBubbleFill', - , + , ); export const IconBubble3ChatMessage = createIcon( 'IconBubble3ChatMessage', , + { viewBox: '0 0 16 16' }, ); // was: IconBubbleText6ChatMessage export const IconThread = createIcon( 'IconThread', - , + , ); // no new icon mapping export const IconBubbleText6SolidChatMessage = createIcon( 'IconBubbleText6SolidChatMessage', , + { viewBox: '0 0 16 16' }, ); // was: IconBubbleText6Solid export const IconThreadFill = createIcon( 'IconThreadFill', - , + , ); // was: IconBubbleWideNotificationChatMessage export const IconNotification = createIcon( 'IconNotification', - , + , ); // was: IconCamera1 export const IconCamera = createIcon( 'IconCamera', - , + <> + + + , ); // was: IconChainLink export const IconLink = createIcon( 'IconLink', - , + , ); // was: IconChart5 export const IconPoll = createIcon( 'IconPoll', - , + , ); export const IconCheckmark1Small = createIcon( 'IconCheckmark1Small', - , + , ); // was: IconCheckmark2 export const IconCheckmark = createIcon( 'IconCheckmark', - , + , ); export const IconChevronDown = createIcon( 'IconChevronDown', - , + , ); export const IconChevronLeft = createIcon( 'IconChevronLeft', - , + , ); export const IconChevronRight = createIcon( 'IconChevronRight', - , + , ); // was: IconCircleBanSign export const IconNoSign = createIcon( 'IconNoSign', - , + , ); // was: IconCircleInfoTooltip export const IconInfo = createIcon( 'IconInfo', <> - - - + + + , ); // was: IconCircleMinus export const IconMinusCircle = createIcon( 'IconMinusCircle', - , + , ); // was: IconCircleX export const IconXCircle = createIcon( 'IconXCircle', - , + , ); export const IconClock = createIcon( 'IconClock', - , + , ); // was: IconCloseQuote2 export const IconQuote = createIcon( 'IconQuote', - , + , ); // was: IconCrossMedium export const IconXmark = createIcon( 'IconXmark', - , + , ); export const IconCrossSmall = createIcon( 'IconCrossSmall', - , + , ); // was: IconDotGrid1x3Horizontal export const IconMore = createIcon( 'IconMore', <> - - - + + + , ); // was: IconDotGrid2x3 export const IconReorder = createIcon( 'IconReorder', - , + , ); // was: IconDoubleCheckmark1Small export const IconChecks = createIcon( 'IconChecks', - , + , ); // was: IconEditBig export const IconEdit = createIcon( 'IconEdit', - , + , ); // was: IconEmojiSmile export const IconEmoji = createIcon( 'IconEmoji', <> - - - - + + + + , ); @@ -266,24 +511,24 @@ export const IconEmoji = createIcon( export const IconExclamationMarkFill = createIcon( 'IconExclamationMarkFill', <> - - + + , ); // was: IconExclamationCircle1 export const IconExclamationCircleFill = createIcon( 'IconExclamationCircleFill', - , + , ); // was: IconExclamationCircle export const IconExclamationMark = createIcon( 'IconExclamationMark', <> - - - + + + , ); @@ -291,51 +536,79 @@ export const IconExclamationMark = createIcon( export const IconExclamationTriangle = createIcon( 'IconExclamationTriangle', , + { viewBox: '0 0 16 16' }, ); // no new icon mapping export const IconEyeOpen = createIcon( 'IconEyeOpen', , + { viewBox: '0 0 16 16' }, ); // was: IconFileArrowLeftIn export const IconUpload = createIcon( 'IconUpload', - , + , ); // was: IconFileBend export const IconFile = createIcon( 'IconFile', - , + , ); // was: IconFlag2 export const IconFlag = createIcon( 'IconFlag', - , + , ); // was: IconImages1Alt export const IconImage = createIcon( 'IconImage', - , + , ); // no new icon mapping export const IconLayoutAlignLeft = createIcon( 'IconLayoutAlignLeft', - <> - - - , + , ); export const IconLightBulbSimple = createIcon( @@ -344,82 +617,163 @@ export const IconLightBulbSimple = createIcon( , + { viewBox: '0 0 16 16' }, ); // was: IconMagnifyingGlassSearch export const IconSearch = createIcon( 'IconSearch', - , + , ); // was: IconMapPin export const IconLocation = createIcon( 'IconLocation', - , + <> + + + , ); // was: IconMicrophone export const IconVoice = createIcon( 'IconVoice', - , + , ); // was: IconMicrophoneSolid export const IconVoiceFill = createIcon( 'IconVoiceFill', - , + , ); // was: IconMinusLarge export const IconMinus = createIcon( 'IconMinus', - , + , ); export const IconMinusSmall = createIcon( 'IconMinusSmall', - , + , ); export const IconMute = createIcon( 'IconMute', - , + , ); // was: IconPaperPlane export const IconSend = createIcon( 'IconSend', - , + , ); // was: IconPaperclip export const IconAttachment = createIcon( 'IconAttachment', - , + , ); // was: IconPause export const IconPauseFill = createIcon( 'IconPauseFill', - , + , ); // was: IconPeople export const IconUser = createIcon( 'IconUser', - , + , ); // was: IconPeopleAdd export const IconUserAdd = createIcon( 'IconUserAdd', <> - - + + - - + + , @@ -429,12 +783,19 @@ export const IconUserAdd = createIcon( export const IconUserCheck = createIcon( 'IconUserCheck', <> - - + + - - + + , @@ -444,12 +805,19 @@ export const IconUserCheck = createIcon( export const IconUserRemove = createIcon( 'IconUserRemove', <> - - + + - - + + , @@ -457,88 +825,150 @@ export const IconUserRemove = createIcon( export const IconPin = createIcon( 'IconPin', - , + , ); // was: IconPlaySolid export const IconPlayFill = createIcon( 'IconPlayFill', - , + , ); // was: IconPlusLarge export const IconPlus = createIcon( 'IconPlus', - , + , ); export const IconPlusSmall = createIcon( 'IconPlusSmall', - , + , ); // was: IconRunShortcut export const IconCommand = createIcon( 'IconCommand', - , + , ); export const IconSettingsGear2 = createIcon( 'IconSettingsGear2', , + { viewBox: '0 0 16 16' }, ); // was: IconSquareBehindSquare2_Copy export const IconCopy = createIcon( 'IconCopy', - , + , ); // no new icon mapping export const IconThunder = createIcon( 'IconThunder', - <> - - - - - - - - - , + , ); export const IconTranslate = createIcon( 'IconTranslate', - , + , ); // was: IconTrashBin export const IconDelete = createIcon( 'IconDelete', - , + , ); export const IconTrophy = createIcon( 'IconTrophy', - , + , ); export const IconUnpin = createIcon( 'IconUnpin', - , + , ); export const IconVideo = createIcon( 'IconVideo', <> - - + + - - + + , @@ -548,12 +978,12 @@ export const IconVideo = createIcon( export const IconVideoFill = createIcon( 'IconVideoFill', <> - - + + - - + + , @@ -562,19 +992,45 @@ export const IconVideoFill = createIcon( // was: IconVolumeFull export const IconAudio = createIcon( 'IconAudio', - , + , ); export const IconArchive = createIcon( 'IconArchive', - , + , ); // was: IconLoadingCircle export const IconLoading = createIcon( 'IconLoading', <> - - + + , ); diff --git a/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap b/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap index ee494eecb3..81d3e57805 100644 --- a/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap +++ b/src/components/Loading/__tests__/__snapshots__/LoadingIndicator.test.tsx.snap @@ -4,14 +4,22 @@ exports[`LoadingIndicator > should render with default props 1`] = `
diff --git a/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap b/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap index 1751547273..4a86a99751 100644 --- a/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap +++ b/src/components/MediaRecorder/AudioRecorder/__tests__/__snapshots__/AudioRecorder.test.tsx.snap @@ -19,11 +19,11 @@ exports[`AudioRecorder > does not render recording preview if paused 1`] = ` >
@@ -267,11 +267,16 @@ exports[`AudioRecorder > does not render recording preview if paused 1`] = ` >
@@ -285,11 +290,16 @@ exports[`AudioRecorder > does not render recording preview if paused 1`] = ` >
@@ -329,11 +339,16 @@ exports[`AudioRecorder > does not render recording preview if recording 1`] = ` >
does not render recording preview if recording 1`] = ` >
@@ -405,11 +420,16 @@ exports[`AudioRecorder > renders audio recording in progress UI 1`] = ` >
renders audio recording in progress UI 1`] = ` >
@@ -489,11 +509,16 @@ exports[`AudioRecorder > renders audio recording paused UI when paused 1`] = ` >
@@ -507,11 +532,16 @@ exports[`AudioRecorder > renders audio recording paused UI when paused 1`] = ` >
@@ -559,11 +589,16 @@ exports[`AudioRecorder > renders audio recording stopped UI when stopped without >
@@ -577,11 +612,16 @@ exports[`AudioRecorder > renders audio recording stopped UI when stopped without >
@@ -629,11 +669,11 @@ exports[`AudioRecorder > renders audio recording stopped UI with recording previ >
@@ -877,11 +917,16 @@ exports[`AudioRecorder > renders audio recording stopped UI with recording previ >
@@ -895,11 +940,16 @@ exports[`AudioRecorder > renders audio recording stopped UI with recording previ >
diff --git a/src/components/Message/__tests__/__snapshots__/MessageStatus.test.tsx.snap b/src/components/Message/__tests__/__snapshots__/MessageStatus.test.tsx.snap index 9fd7e46669..ec8e0e389f 100644 --- a/src/components/Message/__tests__/__snapshots__/MessageStatus.test.tsx.snap +++ b/src/components/Message/__tests__/__snapshots__/MessageStatus.test.tsx.snap @@ -7,11 +7,16 @@ exports[`MessageStatus > renders default sending UI 1`] = ` > diff --git a/src/components/Message/__tests__/__snapshots__/MessageText.test.tsx.snap b/src/components/Message/__tests__/__snapshots__/MessageText.test.tsx.snap index af37c22c86..c3348be493 100644 --- a/src/components/Message/__tests__/__snapshots__/MessageText.test.tsx.snap +++ b/src/components/Message/__tests__/__snapshots__/MessageText.test.tsx.snap @@ -42,14 +42,14 @@ exports[` > should render with a custom inner class when one is s >
@@ -104,14 +104,14 @@ exports[` > should render with a custom wrapper class when one is >
@@ -166,14 +166,14 @@ exports[` > should render with custom theme identifier in generat >
diff --git a/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap b/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap index d8089567ac..d418efdf00 100644 --- a/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap +++ b/src/components/Message/__tests__/__snapshots__/ReminderNotification.test.tsx.snap @@ -7,11 +7,16 @@ exports[`ReminderNotification > displays text for bookmark notifications (saved > @@ -28,11 +33,16 @@ exports[`ReminderNotification > displays text for reminder deadline if trespasse > @@ -57,11 +67,16 @@ exports[`ReminderNotification > displays text for time due in case of timed remi > diff --git a/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap b/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap index 43153eb326..35a005ca97 100644 --- a/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap +++ b/src/components/MessageComposer/__tests__/__snapshots__/AttachmentPreviewList.test.tsx.snap @@ -80,11 +80,16 @@ exports[`AttachmentPreviewList > should render custom BaseImage component 1`] = >
@@ -157,11 +162,16 @@ exports[`AttachmentPreviewList > should render custom BaseImage component 1`] = >
diff --git a/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap b/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap index 1e0a776741..bde26501f5 100644 --- a/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap +++ b/src/components/MessageList/__tests__/__snapshots__/VirtualizedMessageList.test.tsx.snap @@ -32,11 +32,16 @@ exports[`VirtualizedMessageList > should render the list without any message 1`] >

EmptyPlaceholder > should render for mai >

Header > should not render custom head i >

@@ -75,14 +88,22 @@ exports[`VirtualizedMessageComponents > Header > should render LoadingIndicator >
From 95c083580df727007a3ec1b0c12f636fe68b2d2d Mon Sep 17 00:00:00 2001 From: Oliver Lazoroski Date: Mon, 30 Mar 2026 12:55:17 +0200 Subject: [PATCH 5/5] chore: remove icon exports --- .../icons-export/Filetype/filetype-audio-lg.svg | 6 ------ .../icons-export/Filetype/filetype-audio-md.svg | 5 ----- .../icons-export/Filetype/filetype-audio-sm.svg | 5 ----- .../icons-export/Filetype/filetype-audio-xl.svg | 6 ------ .../icons-export/Filetype/filetype-code-lg.svg | 6 ------ .../icons-export/Filetype/filetype-code-md.svg | 12 ------------ .../icons-export/Filetype/filetype-code-sm.svg | 5 ----- .../icons-export/Filetype/filetype-code-xl.svg | 6 ------ .../Filetype/filetype-compression-lg.svg | 6 ------ .../Filetype/filetype-compression-md.svg | 5 ----- .../Filetype/filetype-compression-sm.svg | 5 ----- .../Filetype/filetype-compression-xl.svg | 6 ------ .../icons-export/Filetype/filetype-other-lg.svg | 7 ------- .../icons-export/Filetype/filetype-other-md.svg | 7 ------- .../icons-export/Filetype/filetype-other-sm.svg | 14 -------------- .../icons-export/Filetype/filetype-other-xl.svg | 7 ------- .../icons-export/Filetype/filetype-pdf-lg.svg | 13 ------------- .../icons-export/Filetype/filetype-pdf-md.svg | 12 ------------ .../icons-export/Filetype/filetype-pdf-sm.svg | 12 ------------ .../icons-export/Filetype/filetype-pdf-xl.svg | 13 ------------- .../Filetype/filetype-presentation-lg.svg | 6 ------ .../Filetype/filetype-presentation-md.svg | 5 ----- .../Filetype/filetype-presentation-sm.svg | 12 ------------ .../Filetype/filetype-presentation-xl.svg | 6 ------ .../Filetype/filetype-spreadsheet-lg.svg | 6 ------ .../Filetype/filetype-spreadsheet-md.svg | 5 ----- .../Filetype/filetype-spreadsheet-sm.svg | 5 ----- .../Filetype/filetype-spreadsheet-xl.svg | 6 ------ .../icons-export/Filetype/filetype-text-lg.svg | 8 -------- .../icons-export/Filetype/filetype-text-md.svg | 7 ------- .../icons-export/Filetype/filetype-text-sm.svg | 14 -------------- .../icons-export/Filetype/filetype-text-xl.svg | 8 -------- .../icons-export/Filetype/filetype-video-lg.svg | 13 ------------- .../icons-export/Filetype/filetype-video-md.svg | 12 ------------ .../icons-export/Filetype/filetype-video-sm.svg | 12 ------------ .../icons-export/Filetype/filetype-video-xl.svg | 13 ------------- .../Icons/icons-export/Flat/12/account-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/archive-12.svg | 3 --- .../icons-export/Flat/12/arrow-down-circle-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/arrow-left-12.svg | 3 --- .../Icons/icons-export/Flat/12/arrow-up-12.svg | 3 --- .../icons-export/Flat/12/arrow-up-right-12.svg | 3 --- .../Icons/icons-export/Flat/12/attachment-12.svg | 3 --- .../Icons/icons-export/Flat/12/audio-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/bell-12.svg | 3 --- .../Icons/icons-export/Flat/12/bell-off-12.svg | 3 --- .../Icons/icons-export/Flat/12/bolt-12.svg | 3 --- .../Icons/icons-export/Flat/12/camera-12.svg | 3 --- .../Icons/icons-export/Flat/12/checkmark-12.svg | 3 --- .../Icons/icons-export/Flat/12/checks-12.svg | 3 --- .../Icons/icons-export/Flat/12/chevron-down-12.svg | 3 --- .../Icons/icons-export/Flat/12/chevron-left-12.svg | 3 --- .../icons-export/Flat/12/chevron-right-12.svg | 3 --- .../Icons/icons-export/Flat/12/clock-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/command-12.svg | 3 --- .../Icons/icons-export/Flat/12/copy-12.svg | 3 --- .../Icons/icons-export/Flat/12/delete-12.svg | 3 --- .../Icons/icons-export/Flat/12/edit-12.svg | 3 --- .../Icons/icons-export/Flat/12/emoji-12.svg | 13 ------------- .../Icons/icons-export/Flat/12/emoji-add-12.svg | 14 -------------- .../Flat/12/exclamation-circle-fill-12.svg | 3 --- .../icons-export/Flat/12/exclamation-mark-12.svg | 12 ------------ .../Flat/12/exclamation-mark-fill-12.svg | 4 ---- .../Flat/12/exclamation-triangle-fill-12.svg | 3 --- .../Icons/icons-export/Flat/12/export-12.svg | 3 --- .../Icons/icons-export/Flat/12/file-12.svg | 3 --- .../Icons/icons-export/Flat/12/flag-12.svg | 3 --- .../Icons/icons-export/Flat/12/folder-12.svg | 3 --- .../Icons/icons-export/Flat/12/gallery-12.svg | 3 --- .../Icons/icons-export/Flat/12/giphy-12.svg | 11 ----------- .../Icons/icons-export/Flat/12/image-12.svg | 3 --- .../Icons/icons-export/Flat/12/imgur-12.svg | 5 ----- .../Icons/icons-export/Flat/12/info-12.svg | 12 ------------ .../Icons/icons-export/Flat/12/leave-12.svg | 3 --- .../Icons/icons-export/Flat/12/link-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/loading-12.svg | 11 ----------- .../Icons/icons-export/Flat/12/location-12.svg | 3 --- .../Icons/icons-export/Flat/12/lock-12.svg | 5 ----- .../Icons/icons-export/Flat/12/mention-12.svg | 10 ---------- .../icons-export/Flat/12/message-bubble-12.svg | 10 ---------- .../Flat/12/message-bubble-fill-12.svg | 3 --- .../icons-export/Flat/12/message-bubbles-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/minus-12.svg | 3 --- .../Icons/icons-export/Flat/12/minus-circle-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/more-12.svg | 5 ----- .../Icons/icons-export/Flat/12/mute-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/no-sign-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/notification-12.svg | 3 --- .../Icons/icons-export/Flat/12/pause-fill-12.svg | 3 --- .../Icons/icons-export/Flat/12/pin-12.svg | 3 --- .../Icons/icons-export/Flat/12/play-fill-12.svg | 3 --- .../Icons/icons-export/Flat/12/plus-12.svg | 3 --- .../Icons/icons-export/Flat/12/poll-12.svg | 3 --- .../Icons/icons-export/Flat/12/quote-12.svg | 3 --- .../Icons/icons-export/Flat/12/refresh-12.svg | 3 --- .../Icons/icons-export/Flat/12/reorder-12.svg | 3 --- .../Icons/icons-export/Flat/12/reply-12.svg | 3 --- .../Icons/icons-export/Flat/12/retry-12.svg | 3 --- .../Icons/icons-export/Flat/12/save-12.svg | 3 --- .../Icons/icons-export/Flat/12/search-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/send-12.svg | 3 --- .../Icons/icons-export/Flat/12/share-12.svg | 3 --- .../Icons/icons-export/Flat/12/sidebar-12.svg | 3 --- .../Icons/icons-export/Flat/12/stop-fill-12.svg | 3 --- .../Icons/icons-export/Flat/12/thread-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/thread-fill-12.svg | 3 --- .../Icons/icons-export/Flat/12/translate-12.svg | 3 --- .../Icons/icons-export/Flat/12/trophy-12.svg | 3 --- .../Icons/icons-export/Flat/12/unlock-12.svg | 5 ----- .../Icons/icons-export/Flat/12/unpin-12.svg | 3 --- .../Icons/icons-export/Flat/12/unsave-12.svg | 3 --- .../Icons/icons-export/Flat/12/upload-12.svg | 3 --- .../Icons/icons-export/Flat/12/user-12.svg | 3 --- .../Icons/icons-export/Flat/12/user-add-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/user-check-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/user-remove-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/users-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/video-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/video-fill-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/voice-12.svg | 3 --- .../Icons/icons-export/Flat/12/voice-fill-12.svg | 3 --- .../Icons/icons-export/Flat/12/x-circle-12.svg | 10 ---------- .../Icons/icons-export/Flat/12/xmark-12.svg | 3 --- .../Icons/icons-export/Flat/16/account-16.svg | 3 --- .../Icons/icons-export/Flat/16/archive-16.svg | 3 --- .../icons-export/Flat/16/arrow-down-circle-16.svg | 3 --- .../Icons/icons-export/Flat/16/arrow-left-16.svg | 3 --- .../Icons/icons-export/Flat/16/arrow-up-16.svg | 3 --- .../icons-export/Flat/16/arrow-up-right-16.svg | 3 --- .../Icons/icons-export/Flat/16/attachment-16.svg | 3 --- .../Icons/icons-export/Flat/16/audio-16.svg | 3 --- .../Icons/icons-export/Flat/16/bell-16.svg | 3 --- .../Icons/icons-export/Flat/16/bell-off-16.svg | 3 --- .../Icons/icons-export/Flat/16/bolt-16.svg | 3 --- .../Icons/icons-export/Flat/16/camera-16.svg | 3 --- .../Icons/icons-export/Flat/16/checkmark-16.svg | 3 --- .../Icons/icons-export/Flat/16/checks-16.svg | 3 --- .../Icons/icons-export/Flat/16/chevron-down-16.svg | 3 --- .../Icons/icons-export/Flat/16/chevron-left-16.svg | 3 --- .../icons-export/Flat/16/chevron-right-16.svg | 3 --- .../Icons/icons-export/Flat/16/clock-16.svg | 3 --- .../Icons/icons-export/Flat/16/command-16.svg | 3 --- .../Icons/icons-export/Flat/16/copy-16.svg | 3 --- .../Icons/icons-export/Flat/16/delete-16.svg | 3 --- .../Icons/icons-export/Flat/16/edit-16.svg | 3 --- .../Icons/icons-export/Flat/16/emoji-16.svg | 6 ------ .../Icons/icons-export/Flat/16/emoji-add-16.svg | 7 ------- .../Flat/16/exclamation-circle-fill-16.svg | 3 --- .../icons-export/Flat/16/exclamation-mark-16.svg | 5 ----- .../Flat/16/exclamation-mark-fill-16.svg | 4 ---- .../Flat/16/exclamation-triangle-fill-16.svg | 3 --- .../Icons/icons-export/Flat/16/export-16.svg | 3 --- .../Icons/icons-export/Flat/16/file-16.svg | 3 --- .../Icons/icons-export/Flat/16/flag-16.svg | 3 --- .../Icons/icons-export/Flat/16/folder-16.svg | 3 --- .../Icons/icons-export/Flat/16/gallery-16.svg | 3 --- .../Icons/icons-export/Flat/16/giphy-16.svg | 11 ----------- .../Icons/icons-export/Flat/16/image-16.svg | 3 --- .../Icons/icons-export/Flat/16/imgur-16.svg | 5 ----- .../Icons/icons-export/Flat/16/info-16.svg | 5 ----- .../Icons/icons-export/Flat/16/leave-16.svg | 3 --- .../Icons/icons-export/Flat/16/link-16.svg | 3 --- .../Icons/icons-export/Flat/16/loading-16.svg | 4 ---- .../Icons/icons-export/Flat/16/location-16.svg | 3 --- .../Icons/icons-export/Flat/16/lock-16.svg | 5 ----- .../Icons/icons-export/Flat/16/mention-16.svg | 3 --- .../icons-export/Flat/16/message-bubble-16.svg | 3 --- .../Flat/16/message-bubble-fill-16.svg | 3 --- .../icons-export/Flat/16/message-bubbles-16.svg | 3 --- .../Icons/icons-export/Flat/16/minus-16.svg | 3 --- .../Icons/icons-export/Flat/16/minus-circle-16.svg | 3 --- .../Icons/icons-export/Flat/16/more-16.svg | 5 ----- .../Icons/icons-export/Flat/16/mute-16.svg | 3 --- .../Icons/icons-export/Flat/16/no-sign-16.svg | 3 --- .../Icons/icons-export/Flat/16/notification-16.svg | 3 --- .../Icons/icons-export/Flat/16/pause-fill-16.svg | 3 --- .../Icons/icons-export/Flat/16/pin-16.svg | 3 --- .../Icons/icons-export/Flat/16/play-fill-16.svg | 3 --- .../Icons/icons-export/Flat/16/plus-16-1.svg | 3 --- .../Icons/icons-export/Flat/16/plus-16.svg | 3 --- .../Icons/icons-export/Flat/16/poll-16.svg | 3 --- .../Icons/icons-export/Flat/16/quote-16.svg | 3 --- .../Icons/icons-export/Flat/16/refresh-16.svg | 3 --- .../Icons/icons-export/Flat/16/reorder-16.svg | 3 --- .../Icons/icons-export/Flat/16/reply-16.svg | 3 --- .../Icons/icons-export/Flat/16/retry-16.svg | 3 --- .../Icons/icons-export/Flat/16/save-16.svg | 3 --- .../Icons/icons-export/Flat/16/search-16.svg | 3 --- .../Icons/icons-export/Flat/16/send-16.svg | 3 --- .../Icons/icons-export/Flat/16/share-16.svg | 3 --- .../Icons/icons-export/Flat/16/sidebar-16.svg | 3 --- .../Icons/icons-export/Flat/16/stop-fill-16.svg | 3 --- .../Icons/icons-export/Flat/16/thread-16.svg | 3 --- .../Icons/icons-export/Flat/16/thread-fill-16.svg | 3 --- .../Icons/icons-export/Flat/16/translate-16.svg | 3 --- .../Icons/icons-export/Flat/16/trophy-16.svg | 3 --- .../Icons/icons-export/Flat/16/unlock-16.svg | 5 ----- .../Icons/icons-export/Flat/16/unpin-16.svg | 3 --- .../Icons/icons-export/Flat/16/unsave-16.svg | 3 --- .../Icons/icons-export/Flat/16/upload-16.svg | 3 --- .../Icons/icons-export/Flat/16/user-16.svg | 3 --- .../Icons/icons-export/Flat/16/user-add-16.svg | 10 ---------- .../Icons/icons-export/Flat/16/user-check-16.svg | 10 ---------- .../Icons/icons-export/Flat/16/user-remove-16.svg | 10 ---------- .../Icons/icons-export/Flat/16/users-16.svg | 10 ---------- .../Icons/icons-export/Flat/16/video-16.svg | 10 ---------- .../Icons/icons-export/Flat/16/video-fill-16.svg | 10 ---------- .../Icons/icons-export/Flat/16/voice-16.svg | 3 --- .../Icons/icons-export/Flat/16/voice-fill-16.svg | 3 --- .../Icons/icons-export/Flat/16/x-circle-16.svg | 3 --- .../Icons/icons-export/Flat/16/xmark-16.svg | 3 --- .../Icons/icons-export/Flat/20/account-20.svg | 3 --- .../Icons/icons-export/Flat/20/archive-20.svg | 3 --- .../icons-export/Flat/20/arrow-down-circle-20.svg | 3 --- .../Icons/icons-export/Flat/20/arrow-left-20.svg | 3 --- .../Icons/icons-export/Flat/20/arrow-up-20.svg | 3 --- .../icons-export/Flat/20/arrow-up-right-20.svg | 3 --- .../Icons/icons-export/Flat/20/attachment-20.svg | 3 --- .../Icons/icons-export/Flat/20/audio-20.svg | 3 --- .../Icons/icons-export/Flat/20/bell-20.svg | 3 --- .../Icons/icons-export/Flat/20/bell-off-20.svg | 3 --- .../Icons/icons-export/Flat/20/bolt-20.svg | 3 --- .../Icons/icons-export/Flat/20/camera-20.svg | 3 --- .../Icons/icons-export/Flat/20/checkmark-20.svg | 3 --- .../Icons/icons-export/Flat/20/checks-20.svg | 3 --- .../Icons/icons-export/Flat/20/chevron-down-20.svg | 3 --- .../Icons/icons-export/Flat/20/chevron-left-20.svg | 3 --- .../icons-export/Flat/20/chevron-right-20.svg | 3 --- .../Icons/icons-export/Flat/20/clock-20.svg | 3 --- .../Icons/icons-export/Flat/20/command-20.svg | 3 --- .../Icons/icons-export/Flat/20/copy-20.svg | 3 --- .../Icons/icons-export/Flat/20/delete-20.svg | 3 --- .../Icons/icons-export/Flat/20/edit-20.svg | 3 --- .../Icons/icons-export/Flat/20/emoji-20.svg | 6 ------ .../Icons/icons-export/Flat/20/emoji-add-20.svg | 7 ------- .../Flat/20/exclamation-circle-fill-20.svg | 3 --- .../icons-export/Flat/20/exclamation-mark-20.svg | 5 ----- .../Flat/20/exclamation-mark-fill-20.svg | 4 ---- .../Flat/20/exclamation-triangle-fill-20.svg | 3 --- .../Icons/icons-export/Flat/20/export-20.svg | 3 --- .../Icons/icons-export/Flat/20/file-20.svg | 3 --- .../Icons/icons-export/Flat/20/flag-20.svg | 3 --- .../Icons/icons-export/Flat/20/folder-20.svg | 3 --- .../Icons/icons-export/Flat/20/gallery-20.svg | 3 --- .../Icons/icons-export/Flat/20/giphy-20.svg | 11 ----------- .../Icons/icons-export/Flat/20/image-20.svg | 3 --- .../Icons/icons-export/Flat/20/imgur-20.svg | 5 ----- .../Icons/icons-export/Flat/20/link-20.svg | 3 --- .../Icons/icons-export/Flat/20/loading-20.svg | 4 ---- .../Icons/icons-export/Flat/20/location-20.svg | 3 --- .../Icons/icons-export/Flat/20/lock-20.svg | 5 ----- .../Icons/icons-export/Flat/20/mention-20.svg | 3 --- .../icons-export/Flat/20/message-bubble-20.svg | 3 --- .../Flat/20/message-bubble-fill-20.svg | 3 --- .../icons-export/Flat/20/message-bubbles-20.svg | 3 --- .../Icons/icons-export/Flat/20/minus-20.svg | 3 --- .../Icons/icons-export/Flat/20/more-20.svg | 5 ----- .../Icons/icons-export/Flat/20/mute-20.svg | 3 --- .../Icons/icons-export/Flat/20/no-sign-20.svg | 3 --- .../Icons/icons-export/Flat/20/notification-20.svg | 3 --- .../Icons/icons-export/Flat/20/pause-fill-20.svg | 3 --- .../Icons/icons-export/Flat/20/pin-20.svg | 3 --- .../Icons/icons-export/Flat/20/play-fill-20.svg | 3 --- .../Icons/icons-export/Flat/20/plus-20.svg | 3 --- .../Icons/icons-export/Flat/20/poll-20.svg | 3 --- .../Icons/icons-export/Flat/20/quote-20.svg | 3 --- .../Icons/icons-export/Flat/20/refresh-20.svg | 3 --- .../Icons/icons-export/Flat/20/reorder-20.svg | 3 --- .../Icons/icons-export/Flat/20/reply-20.svg | 3 --- .../Icons/icons-export/Flat/20/retry-20.svg | 3 --- .../Icons/icons-export/Flat/20/save-20.svg | 3 --- .../Icons/icons-export/Flat/20/search-20.svg | 3 --- .../Icons/icons-export/Flat/20/send-20.svg | 3 --- .../Icons/icons-export/Flat/20/share-20.svg | 3 --- .../Icons/icons-export/Flat/20/stop-fill-20.svg | 3 --- .../Icons/icons-export/Flat/20/thread-20.svg | 3 --- .../Icons/icons-export/Flat/20/thread-fill-20.svg | 3 --- .../Icons/icons-export/Flat/20/translate-20.svg | 3 --- .../Icons/icons-export/Flat/20/trophy-20.svg | 3 --- .../Icons/icons-export/Flat/20/unpin-20.svg | 3 --- .../Icons/icons-export/Flat/20/unsave-20.svg | 3 --- .../Icons/icons-export/Flat/20/upload-20.svg | 3 --- .../Icons/icons-export/Flat/20/user-20.svg | 3 --- .../Icons/icons-export/Flat/20/user-add-20.svg | 10 ---------- .../Icons/icons-export/Flat/20/user-check-20.svg | 10 ---------- .../Icons/icons-export/Flat/20/user-remove-20.svg | 10 ---------- .../Icons/icons-export/Flat/20/users-20.svg | 3 --- .../Icons/icons-export/Flat/20/video-20.svg | 10 ---------- .../Icons/icons-export/Flat/20/video-fill-20.svg | 10 ---------- .../Icons/icons-export/Flat/20/voice-20.svg | 3 --- .../Icons/icons-export/Flat/20/voice-fill-20.svg | 3 --- .../Icons/icons-export/Flat/20/xmark-20.svg | 3 --- .../Icons/icons-export/Flat/32/account-32.svg | 3 --- .../Icons/icons-export/Flat/32/archive-32.svg | 3 --- .../icons-export/Flat/32/arrow-down-circle-32.svg | 3 --- .../Icons/icons-export/Flat/32/arrow-left-32.svg | 3 --- .../Icons/icons-export/Flat/32/arrow-up-32.svg | 3 --- .../icons-export/Flat/32/arrow-up-right-32.svg | 3 --- .../Icons/icons-export/Flat/32/attachment-32.svg | 3 --- .../Icons/icons-export/Flat/32/audio-32.svg | 3 --- .../Icons/icons-export/Flat/32/bell-32.svg | 3 --- .../Icons/icons-export/Flat/32/bell-off-32.svg | 3 --- .../Icons/icons-export/Flat/32/bolt-32.svg | 3 --- .../Icons/icons-export/Flat/32/camera-32.svg | 3 --- .../Icons/icons-export/Flat/32/checkmark-32.svg | 3 --- .../Icons/icons-export/Flat/32/checks-32.svg | 3 --- .../Icons/icons-export/Flat/32/chevron-down-32.svg | 3 --- .../Icons/icons-export/Flat/32/chevron-left-32.svg | 3 --- .../icons-export/Flat/32/chevron-right-32.svg | 3 --- .../Icons/icons-export/Flat/32/command-20.svg | 3 --- .../Icons/icons-export/Flat/32/copy-32.svg | 3 --- .../Icons/icons-export/Flat/32/delete-.svg | 3 --- .../Icons/icons-export/Flat/32/edit-32.svg | 3 --- .../Icons/icons-export/Flat/32/emoji-.svg | 6 ------ .../Icons/icons-export/Flat/32/emoji-add-32.svg | 7 ------- .../Flat/32/exclamation-circle-fill-32.svg | 3 --- .../icons-export/Flat/32/exclamation-mark-32.svg | 5 ----- .../Flat/32/exclamation-mark-fill-32.svg | 4 ---- .../Flat/32/exclamation-triangle-fill-32.svg | 3 --- .../Icons/icons-export/Flat/32/export-32.svg | 3 --- .../Icons/icons-export/Flat/32/file-32.svg | 3 --- .../Icons/icons-export/Flat/32/flag-32.svg | 3 --- .../Icons/icons-export/Flat/32/folder-32.svg | 3 --- .../Icons/icons-export/Flat/32/gallery-32.svg | 3 --- .../Icons/icons-export/Flat/32/giphy-32.svg | 11 ----------- .../Icons/icons-export/Flat/32/icon-32.svg | 3 --- .../Icons/icons-export/Flat/32/image-32.svg | 3 --- .../Icons/icons-export/Flat/32/imgur-32.svg | 5 ----- .../Icons/icons-export/Flat/32/info-32.svg | 5 ----- .../Icons/icons-export/Flat/32/leave-32.svg | 3 --- .../Icons/icons-export/Flat/32/link-32.svg | 3 --- .../Icons/icons-export/Flat/32/loading-32.svg | 4 ---- .../Icons/icons-export/Flat/32/location-32.svg | 3 --- .../Icons/icons-export/Flat/32/lock-32.svg | 5 ----- .../Icons/icons-export/Flat/32/mention-32.svg | 3 --- .../icons-export/Flat/32/message-bubble-32.svg | 3 --- .../Flat/32/message-bubble-fill-32.svg | 3 --- .../icons-export/Flat/32/message-bubbles-32.svg | 3 --- .../Icons/icons-export/Flat/32/minus-32.svg | 3 --- .../Icons/icons-export/Flat/32/minus-circle-32.svg | 3 --- .../Icons/icons-export/Flat/32/more-32.svg | 5 ----- .../Icons/icons-export/Flat/32/mute-32.svg | 3 --- .../Icons/icons-export/Flat/32/no-sign-32.svg | 3 --- .../Icons/icons-export/Flat/32/notification-32.svg | 3 --- .../Icons/icons-export/Flat/32/pause-fill-32.svg | 3 --- .../Icons/icons-export/Flat/32/pin-32.svg | 3 --- .../Icons/icons-export/Flat/32/play-fill-32.svg | 3 --- .../Icons/icons-export/Flat/32/plus-32-1.svg | 3 --- .../Icons/icons-export/Flat/32/plus-32.svg | 3 --- .../Icons/icons-export/Flat/32/poll-32.svg | 3 --- .../Icons/icons-export/Flat/32/quote-.svg | 3 --- .../Icons/icons-export/Flat/32/refresh-32.svg | 3 --- .../Icons/icons-export/Flat/32/reorder-32.svg | 3 --- .../Icons/icons-export/Flat/32/reply-32.svg | 3 --- .../Icons/icons-export/Flat/32/retry-32.svg | 3 --- .../Icons/icons-export/Flat/32/save-32.svg | 3 --- .../Icons/icons-export/Flat/32/search-32.svg | 3 --- .../Icons/icons-export/Flat/32/send-32.svg | 3 --- .../Icons/icons-export/Flat/32/share-32.svg | 3 --- .../Icons/icons-export/Flat/32/sidebar-32.svg | 3 --- .../Icons/icons-export/Flat/32/stop-fill-32.svg | 3 --- .../Icons/icons-export/Flat/32/thread-32.svg | 3 --- .../Icons/icons-export/Flat/32/thread-fill-32.svg | 3 --- .../Icons/icons-export/Flat/32/translate-32.svg | 3 --- .../Icons/icons-export/Flat/32/trophy-32.svg | 3 --- .../Icons/icons-export/Flat/32/unlock-32.svg | 5 ----- .../Icons/icons-export/Flat/32/unpin-32.svg | 3 --- .../Icons/icons-export/Flat/32/unsave-32.svg | 3 --- .../Icons/icons-export/Flat/32/upload-32.svg | 3 --- .../Icons/icons-export/Flat/32/user-32.svg | 3 --- .../Icons/icons-export/Flat/32/user-add-32.svg | 10 ---------- .../Icons/icons-export/Flat/32/user-check-32.svg | 10 ---------- .../Icons/icons-export/Flat/32/user-remove-32.svg | 10 ---------- .../Icons/icons-export/Flat/32/users-32.svg | 3 --- .../Icons/icons-export/Flat/32/video-32.svg | 3 --- .../Icons/icons-export/Flat/32/video-fill-32.svg | 10 ---------- .../Icons/icons-export/Flat/32/voice-32.svg | 3 --- .../Icons/icons-export/Flat/32/voice-fill-32.svg | 3 --- .../Icons/icons-export/Flat/32/x-circle-32.svg | 3 --- .../Icons/icons-export/Flat/32/xmark-32.svg | 3 --- src/components/Icons/icons-export/Line/Mention.svg | 3 --- src/components/Icons/icons-export/Line/Retry.svg | 3 --- src/components/Icons/icons-export/Line/account.svg | 3 --- src/components/Icons/icons-export/Line/archive.svg | 3 --- .../Icons/icons-export/Line/arrow-down-circle.svg | 3 --- .../Icons/icons-export/Line/arrow-left.svg | 3 --- .../Icons/icons-export/Line/arrow-up-right.svg | 3 --- .../Icons/icons-export/Line/arrow-up.svg | 3 --- .../Icons/icons-export/Line/attachment.svg | 3 --- src/components/Icons/icons-export/Line/audio.svg | 3 --- .../Icons/icons-export/Line/bell-off.svg | 3 --- src/components/Icons/icons-export/Line/bell.svg | 3 --- src/components/Icons/icons-export/Line/bolt.svg | 3 --- src/components/Icons/icons-export/Line/camera.svg | 4 ---- .../Icons/icons-export/Line/checkmark.svg | 3 --- src/components/Icons/icons-export/Line/checks.svg | 3 --- .../Icons/icons-export/Line/chevron-down.svg | 3 --- .../Icons/icons-export/Line/chevron-left.svg | 3 --- .../Icons/icons-export/Line/chevron-right.svg | 3 --- src/components/Icons/icons-export/Line/clock.svg | 3 --- src/components/Icons/icons-export/Line/code.svg | 3 --- src/components/Icons/icons-export/Line/command.svg | 3 --- src/components/Icons/icons-export/Line/copy.svg | 3 --- src/components/Icons/icons-export/Line/delete.svg | 3 --- src/components/Icons/icons-export/Line/edit.svg | 3 --- .../Icons/icons-export/Line/emoji-add-1.svg | 7 ------- .../Icons/icons-export/Line/emoji-add.svg | 3 --- src/components/Icons/icons-export/Line/emoji.svg | 6 ------ .../icons-export/Line/exclamation-circle-fill.svg | 3 --- .../Icons/icons-export/Line/exclamation-circle.svg | 5 ----- .../icons-export/Line/exclamation-mark-fill.svg | 4 ---- .../Line/exclamation-triangle-fill.svg | 3 --- src/components/Icons/icons-export/Line/export.svg | 3 --- src/components/Icons/icons-export/Line/file.svg | 3 --- src/components/Icons/icons-export/Line/flag.svg | 3 --- src/components/Icons/icons-export/Line/folder.svg | 3 --- src/components/Icons/icons-export/Line/gallery.svg | 6 ------ src/components/Icons/icons-export/Line/giphy.svg | 11 ----------- src/components/Icons/icons-export/Line/image.svg | 3 --- src/components/Icons/icons-export/Line/imgur.svg | 5 ----- src/components/Icons/icons-export/Line/info.svg | 5 ----- src/components/Icons/icons-export/Line/leave.svg | 3 --- src/components/Icons/icons-export/Line/link.svg | 3 --- src/components/Icons/icons-export/Line/loading.svg | 4 ---- .../Icons/icons-export/Line/location.svg | 4 ---- src/components/Icons/icons-export/Line/lock.svg | 5 ----- .../icons-export/Line/message-bubble-fill.svg | 3 --- .../Icons/icons-export/Line/message-bubble.svg | 3 --- .../Icons/icons-export/Line/message-bubbles.svg | 3 --- src/components/Icons/icons-export/Line/minus-1.svg | 3 --- .../Icons/icons-export/Line/minus-circle.svg | 3 --- src/components/Icons/icons-export/Line/minus.svg | 3 --- src/components/Icons/icons-export/Line/more.svg | 5 ----- src/components/Icons/icons-export/Line/mute.svg | 3 --- src/components/Icons/icons-export/Line/no-sign.svg | 3 --- .../Icons/icons-export/Line/notification.svg | 3 --- .../Icons/icons-export/Line/pause-fill.svg | 3 --- src/components/Icons/icons-export/Line/pin.svg | 3 --- .../Icons/icons-export/Line/play-fill.svg | 3 --- src/components/Icons/icons-export/Line/plus.svg | 3 --- src/components/Icons/icons-export/Line/poll.svg | 3 --- .../Icons/icons-export/Line/presentation.svg | 3 --- src/components/Icons/icons-export/Line/quote.svg | 3 --- src/components/Icons/icons-export/Line/refresh.svg | 3 --- src/components/Icons/icons-export/Line/reorder.svg | 3 --- src/components/Icons/icons-export/Line/reply.svg | 3 --- src/components/Icons/icons-export/Line/save.svg | 3 --- src/components/Icons/icons-export/Line/search.svg | 3 --- src/components/Icons/icons-export/Line/send.svg | 3 --- src/components/Icons/icons-export/Line/share.svg | 3 --- src/components/Icons/icons-export/Line/sidebar.svg | 3 --- .../Icons/icons-export/Line/spreadsheet.svg | 3 --- .../Icons/icons-export/Line/stop-fill.svg | 3 --- .../Icons/icons-export/Line/thread-fill.svg | 3 --- src/components/Icons/icons-export/Line/thread.svg | 3 --- .../Icons/icons-export/Line/translate.svg | 3 --- src/components/Icons/icons-export/Line/trophy.svg | 3 --- src/components/Icons/icons-export/Line/unlock.svg | 5 ----- src/components/Icons/icons-export/Line/unpin.svg | 3 --- src/components/Icons/icons-export/Line/unsave.svg | 3 --- src/components/Icons/icons-export/Line/upload.svg | 3 --- .../Icons/icons-export/Line/user-add.svg | 10 ---------- .../Icons/icons-export/Line/user-check.svg | 10 ---------- .../Icons/icons-export/Line/user-remove.svg | 10 ---------- src/components/Icons/icons-export/Line/user.svg | 3 --- src/components/Icons/icons-export/Line/users.svg | 3 --- .../Icons/icons-export/Line/video-fill.svg | 10 ---------- src/components/Icons/icons-export/Line/video.svg | 10 ---------- .../Icons/icons-export/Line/voice-fill.svg | 3 --- src/components/Icons/icons-export/Line/voice.svg | 3 --- .../Icons/icons-export/Line/x-circle.svg | 3 --- src/components/Icons/icons-export/Line/xmark.svg | 3 --- 472 files changed, 2065 deletions(-) delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-code-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-other-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-text-xl.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-lg.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-md.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-sm.svg delete mode 100644 src/components/Icons/icons-export/Filetype/filetype-video-xl.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/account-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/archive-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/arrow-left-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/arrow-up-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/attachment-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/audio-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/bell-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/bell-off-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/bolt-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/camera-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/checkmark-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/checks-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/chevron-down-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/chevron-left-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/chevron-right-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/clock-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/command-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/copy-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/delete-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/edit-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/emoji-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/emoji-add-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/export-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/file-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/flag-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/folder-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/gallery-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/giphy-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/image-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/imgur-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/info-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/leave-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/link-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/loading-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/location-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/lock-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/mention-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/message-bubble-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/minus-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/minus-circle-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/more-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/mute-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/no-sign-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/notification-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/pause-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/pin-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/play-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/plus-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/poll-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/quote-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/refresh-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/reorder-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/reply-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/retry-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/save-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/search-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/send-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/share-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/sidebar-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/stop-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/thread-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/thread-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/translate-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/trophy-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/unlock-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/unpin-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/unsave-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/upload-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/user-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/user-add-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/user-check-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/user-remove-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/users-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/video-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/video-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/voice-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/voice-fill-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/x-circle-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/12/xmark-12.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/account-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/archive-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/arrow-left-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/arrow-up-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/attachment-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/audio-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/bell-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/bell-off-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/bolt-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/camera-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/checkmark-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/checks-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/chevron-down-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/chevron-left-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/chevron-right-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/clock-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/command-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/copy-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/delete-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/edit-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/emoji-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/emoji-add-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/export-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/file-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/flag-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/folder-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/gallery-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/giphy-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/image-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/imgur-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/info-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/leave-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/link-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/loading-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/location-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/lock-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/mention-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/message-bubble-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/minus-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/minus-circle-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/more-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/mute-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/no-sign-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/notification-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/pause-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/pin-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/play-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/plus-16-1.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/plus-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/poll-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/quote-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/refresh-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/reorder-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/reply-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/retry-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/save-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/search-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/send-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/share-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/sidebar-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/stop-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/thread-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/thread-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/translate-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/trophy-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/unlock-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/unpin-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/unsave-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/upload-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/user-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/user-add-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/user-check-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/user-remove-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/users-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/video-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/video-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/voice-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/voice-fill-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/x-circle-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/16/xmark-16.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/account-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/archive-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/arrow-left-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/arrow-up-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/attachment-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/audio-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/bell-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/bell-off-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/bolt-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/camera-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/checkmark-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/checks-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/chevron-down-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/chevron-left-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/chevron-right-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/clock-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/command-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/copy-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/delete-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/edit-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/emoji-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/emoji-add-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/export-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/file-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/flag-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/folder-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/gallery-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/giphy-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/image-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/imgur-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/link-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/loading-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/location-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/lock-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/mention-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/message-bubble-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/minus-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/more-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/mute-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/no-sign-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/notification-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/pause-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/pin-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/play-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/plus-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/poll-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/quote-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/refresh-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/reorder-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/reply-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/retry-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/save-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/search-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/send-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/share-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/stop-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/thread-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/thread-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/translate-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/trophy-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/unpin-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/unsave-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/upload-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/user-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/user-add-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/user-check-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/user-remove-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/users-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/video-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/video-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/voice-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/voice-fill-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/20/xmark-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/account-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/archive-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/arrow-left-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/arrow-up-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/attachment-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/audio-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/bell-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/bell-off-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/bolt-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/camera-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/checkmark-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/checks-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/chevron-down-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/chevron-left-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/chevron-right-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/command-20.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/copy-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/delete-.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/edit-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/emoji-.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/emoji-add-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/export-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/file-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/flag-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/folder-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/gallery-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/giphy-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/icon-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/image-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/imgur-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/info-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/leave-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/link-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/loading-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/location-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/lock-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/mention-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/message-bubble-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/minus-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/minus-circle-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/more-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/mute-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/no-sign-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/notification-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/pause-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/pin-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/play-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/plus-32-1.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/plus-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/poll-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/quote-.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/refresh-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/reorder-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/reply-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/retry-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/save-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/search-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/send-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/share-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/sidebar-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/stop-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/thread-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/thread-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/translate-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/trophy-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/unlock-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/unpin-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/unsave-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/upload-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/user-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/user-add-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/user-check-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/user-remove-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/users-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/video-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/video-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/voice-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/voice-fill-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/x-circle-32.svg delete mode 100644 src/components/Icons/icons-export/Flat/32/xmark-32.svg delete mode 100644 src/components/Icons/icons-export/Line/Mention.svg delete mode 100644 src/components/Icons/icons-export/Line/Retry.svg delete mode 100644 src/components/Icons/icons-export/Line/account.svg delete mode 100644 src/components/Icons/icons-export/Line/archive.svg delete mode 100644 src/components/Icons/icons-export/Line/arrow-down-circle.svg delete mode 100644 src/components/Icons/icons-export/Line/arrow-left.svg delete mode 100644 src/components/Icons/icons-export/Line/arrow-up-right.svg delete mode 100644 src/components/Icons/icons-export/Line/arrow-up.svg delete mode 100644 src/components/Icons/icons-export/Line/attachment.svg delete mode 100644 src/components/Icons/icons-export/Line/audio.svg delete mode 100644 src/components/Icons/icons-export/Line/bell-off.svg delete mode 100644 src/components/Icons/icons-export/Line/bell.svg delete mode 100644 src/components/Icons/icons-export/Line/bolt.svg delete mode 100644 src/components/Icons/icons-export/Line/camera.svg delete mode 100644 src/components/Icons/icons-export/Line/checkmark.svg delete mode 100644 src/components/Icons/icons-export/Line/checks.svg delete mode 100644 src/components/Icons/icons-export/Line/chevron-down.svg delete mode 100644 src/components/Icons/icons-export/Line/chevron-left.svg delete mode 100644 src/components/Icons/icons-export/Line/chevron-right.svg delete mode 100644 src/components/Icons/icons-export/Line/clock.svg delete mode 100644 src/components/Icons/icons-export/Line/code.svg delete mode 100644 src/components/Icons/icons-export/Line/command.svg delete mode 100644 src/components/Icons/icons-export/Line/copy.svg delete mode 100644 src/components/Icons/icons-export/Line/delete.svg delete mode 100644 src/components/Icons/icons-export/Line/edit.svg delete mode 100644 src/components/Icons/icons-export/Line/emoji-add-1.svg delete mode 100644 src/components/Icons/icons-export/Line/emoji-add.svg delete mode 100644 src/components/Icons/icons-export/Line/emoji.svg delete mode 100644 src/components/Icons/icons-export/Line/exclamation-circle-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/exclamation-circle.svg delete mode 100644 src/components/Icons/icons-export/Line/exclamation-mark-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/export.svg delete mode 100644 src/components/Icons/icons-export/Line/file.svg delete mode 100644 src/components/Icons/icons-export/Line/flag.svg delete mode 100644 src/components/Icons/icons-export/Line/folder.svg delete mode 100644 src/components/Icons/icons-export/Line/gallery.svg delete mode 100644 src/components/Icons/icons-export/Line/giphy.svg delete mode 100644 src/components/Icons/icons-export/Line/image.svg delete mode 100644 src/components/Icons/icons-export/Line/imgur.svg delete mode 100644 src/components/Icons/icons-export/Line/info.svg delete mode 100644 src/components/Icons/icons-export/Line/leave.svg delete mode 100644 src/components/Icons/icons-export/Line/link.svg delete mode 100644 src/components/Icons/icons-export/Line/loading.svg delete mode 100644 src/components/Icons/icons-export/Line/location.svg delete mode 100644 src/components/Icons/icons-export/Line/lock.svg delete mode 100644 src/components/Icons/icons-export/Line/message-bubble-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/message-bubble.svg delete mode 100644 src/components/Icons/icons-export/Line/message-bubbles.svg delete mode 100644 src/components/Icons/icons-export/Line/minus-1.svg delete mode 100644 src/components/Icons/icons-export/Line/minus-circle.svg delete mode 100644 src/components/Icons/icons-export/Line/minus.svg delete mode 100644 src/components/Icons/icons-export/Line/more.svg delete mode 100644 src/components/Icons/icons-export/Line/mute.svg delete mode 100644 src/components/Icons/icons-export/Line/no-sign.svg delete mode 100644 src/components/Icons/icons-export/Line/notification.svg delete mode 100644 src/components/Icons/icons-export/Line/pause-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/pin.svg delete mode 100644 src/components/Icons/icons-export/Line/play-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/plus.svg delete mode 100644 src/components/Icons/icons-export/Line/poll.svg delete mode 100644 src/components/Icons/icons-export/Line/presentation.svg delete mode 100644 src/components/Icons/icons-export/Line/quote.svg delete mode 100644 src/components/Icons/icons-export/Line/refresh.svg delete mode 100644 src/components/Icons/icons-export/Line/reorder.svg delete mode 100644 src/components/Icons/icons-export/Line/reply.svg delete mode 100644 src/components/Icons/icons-export/Line/save.svg delete mode 100644 src/components/Icons/icons-export/Line/search.svg delete mode 100644 src/components/Icons/icons-export/Line/send.svg delete mode 100644 src/components/Icons/icons-export/Line/share.svg delete mode 100644 src/components/Icons/icons-export/Line/sidebar.svg delete mode 100644 src/components/Icons/icons-export/Line/spreadsheet.svg delete mode 100644 src/components/Icons/icons-export/Line/stop-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/thread-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/thread.svg delete mode 100644 src/components/Icons/icons-export/Line/translate.svg delete mode 100644 src/components/Icons/icons-export/Line/trophy.svg delete mode 100644 src/components/Icons/icons-export/Line/unlock.svg delete mode 100644 src/components/Icons/icons-export/Line/unpin.svg delete mode 100644 src/components/Icons/icons-export/Line/unsave.svg delete mode 100644 src/components/Icons/icons-export/Line/upload.svg delete mode 100644 src/components/Icons/icons-export/Line/user-add.svg delete mode 100644 src/components/Icons/icons-export/Line/user-check.svg delete mode 100644 src/components/Icons/icons-export/Line/user-remove.svg delete mode 100644 src/components/Icons/icons-export/Line/user.svg delete mode 100644 src/components/Icons/icons-export/Line/users.svg delete mode 100644 src/components/Icons/icons-export/Line/video-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/video.svg delete mode 100644 src/components/Icons/icons-export/Line/voice-fill.svg delete mode 100644 src/components/Icons/icons-export/Line/voice.svg delete mode 100644 src/components/Icons/icons-export/Line/x-circle.svg delete mode 100644 src/components/Icons/icons-export/Line/xmark.svg diff --git a/src/components/Icons/icons-export/Filetype/filetype-audio-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-audio-lg.svg deleted file mode 100644 index c149a66eb1..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-audio-lg.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-audio-md.svg b/src/components/Icons/icons-export/Filetype/filetype-audio-md.svg deleted file mode 100644 index e172374768..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-audio-md.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg deleted file mode 100644 index 2cc0b4c37d..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-audio-sm.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg deleted file mode 100644 index 004f8b2d0e..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-audio-xl.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-code-lg.svg deleted file mode 100644 index 2b6b346abb..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-code-lg.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-md.svg b/src/components/Icons/icons-export/Filetype/filetype-code-md.svg deleted file mode 100644 index 02e1cadcbf..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-code-md.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-code-sm.svg deleted file mode 100644 index f949c53b8a..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-code-sm.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-code-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-code-xl.svg deleted file mode 100644 index e51ebcf9d3..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-code-xl.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg deleted file mode 100644 index 0c0250d590..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-compression-lg.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-md.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-md.svg deleted file mode 100644 index 9eff5d3294..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-compression-md.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg deleted file mode 100644 index bc5d7f52ce..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-compression-sm.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg deleted file mode 100644 index f757cf8f0b..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-compression-xl.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-other-lg.svg deleted file mode 100644 index cc58bbf698..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-other-lg.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-md.svg b/src/components/Icons/icons-export/Filetype/filetype-other-md.svg deleted file mode 100644 index 0540f2cb8c..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-other-md.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-other-sm.svg deleted file mode 100644 index 1dcb6153ec..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-other-sm.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-other-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-other-xl.svg deleted file mode 100644 index 416ec79d8f..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-other-xl.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg deleted file mode 100644 index b29b99887d..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-pdf-lg.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg deleted file mode 100644 index d8ded6a35b..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-pdf-md.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg deleted file mode 100644 index d104db3150..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-pdf-sm.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg deleted file mode 100644 index 7913c0fa20..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-pdf-xl.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg deleted file mode 100644 index ce63f64bd6..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-presentation-lg.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg deleted file mode 100644 index baccf9083a..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-presentation-md.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg deleted file mode 100644 index d6723981c0..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-presentation-sm.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg deleted file mode 100644 index f66fceb0d6..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-presentation-xl.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg deleted file mode 100644 index edc1e963ea..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-lg.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg deleted file mode 100644 index 3eb5c6d298..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-md.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg deleted file mode 100644 index 83511a862c..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-sm.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg deleted file mode 100644 index 984bea8d4b..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-spreadsheet-xl.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-text-lg.svg deleted file mode 100644 index 8117d0e8ef..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-text-lg.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-md.svg b/src/components/Icons/icons-export/Filetype/filetype-text-md.svg deleted file mode 100644 index 5319b9c983..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-text-md.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-text-sm.svg deleted file mode 100644 index 219659606d..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-text-sm.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-text-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-text-xl.svg deleted file mode 100644 index 0628ad7423..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-text-xl.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-lg.svg b/src/components/Icons/icons-export/Filetype/filetype-video-lg.svg deleted file mode 100644 index a0d4bbe73e..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-video-lg.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-md.svg b/src/components/Icons/icons-export/Filetype/filetype-video-md.svg deleted file mode 100644 index e59b03c81f..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-video-md.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-sm.svg b/src/components/Icons/icons-export/Filetype/filetype-video-sm.svg deleted file mode 100644 index e20ff74a24..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-video-sm.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Filetype/filetype-video-xl.svg b/src/components/Icons/icons-export/Filetype/filetype-video-xl.svg deleted file mode 100644 index 07b9165558..0000000000 --- a/src/components/Icons/icons-export/Filetype/filetype-video-xl.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/account-12.svg b/src/components/Icons/icons-export/Flat/12/account-12.svg deleted file mode 100644 index 309e15ffde..0000000000 --- a/src/components/Icons/icons-export/Flat/12/account-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/archive-12.svg b/src/components/Icons/icons-export/Flat/12/archive-12.svg deleted file mode 100644 index ab7f60d7f1..0000000000 --- a/src/components/Icons/icons-export/Flat/12/archive-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg deleted file mode 100644 index 260556b755..0000000000 --- a/src/components/Icons/icons-export/Flat/12/arrow-down-circle-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/arrow-left-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-left-12.svg deleted file mode 100644 index 8de97a865e..0000000000 --- a/src/components/Icons/icons-export/Flat/12/arrow-left-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/arrow-up-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-up-12.svg deleted file mode 100644 index 0e0ee0a6c7..0000000000 --- a/src/components/Icons/icons-export/Flat/12/arrow-up-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg b/src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg deleted file mode 100644 index 1076164a92..0000000000 --- a/src/components/Icons/icons-export/Flat/12/arrow-up-right-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/attachment-12.svg b/src/components/Icons/icons-export/Flat/12/attachment-12.svg deleted file mode 100644 index 6a74f98fd0..0000000000 --- a/src/components/Icons/icons-export/Flat/12/attachment-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/audio-12.svg b/src/components/Icons/icons-export/Flat/12/audio-12.svg deleted file mode 100644 index 8be733084c..0000000000 --- a/src/components/Icons/icons-export/Flat/12/audio-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/bell-12.svg b/src/components/Icons/icons-export/Flat/12/bell-12.svg deleted file mode 100644 index 62b2d469e1..0000000000 --- a/src/components/Icons/icons-export/Flat/12/bell-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/bell-off-12.svg b/src/components/Icons/icons-export/Flat/12/bell-off-12.svg deleted file mode 100644 index 45bf4f3b82..0000000000 --- a/src/components/Icons/icons-export/Flat/12/bell-off-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/bolt-12.svg b/src/components/Icons/icons-export/Flat/12/bolt-12.svg deleted file mode 100644 index b4f91a0e59..0000000000 --- a/src/components/Icons/icons-export/Flat/12/bolt-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/camera-12.svg b/src/components/Icons/icons-export/Flat/12/camera-12.svg deleted file mode 100644 index ac3cdd9ec8..0000000000 --- a/src/components/Icons/icons-export/Flat/12/camera-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/checkmark-12.svg b/src/components/Icons/icons-export/Flat/12/checkmark-12.svg deleted file mode 100644 index 7b349c1678..0000000000 --- a/src/components/Icons/icons-export/Flat/12/checkmark-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/checks-12.svg b/src/components/Icons/icons-export/Flat/12/checks-12.svg deleted file mode 100644 index 1b07c91dc0..0000000000 --- a/src/components/Icons/icons-export/Flat/12/checks-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/chevron-down-12.svg b/src/components/Icons/icons-export/Flat/12/chevron-down-12.svg deleted file mode 100644 index 2e2652d0e4..0000000000 --- a/src/components/Icons/icons-export/Flat/12/chevron-down-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/chevron-left-12.svg b/src/components/Icons/icons-export/Flat/12/chevron-left-12.svg deleted file mode 100644 index 04349fbe8e..0000000000 --- a/src/components/Icons/icons-export/Flat/12/chevron-left-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/chevron-right-12.svg b/src/components/Icons/icons-export/Flat/12/chevron-right-12.svg deleted file mode 100644 index 41620eda1b..0000000000 --- a/src/components/Icons/icons-export/Flat/12/chevron-right-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/clock-12.svg b/src/components/Icons/icons-export/Flat/12/clock-12.svg deleted file mode 100644 index 0930f390a1..0000000000 --- a/src/components/Icons/icons-export/Flat/12/clock-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/command-12.svg b/src/components/Icons/icons-export/Flat/12/command-12.svg deleted file mode 100644 index d8bc7e530a..0000000000 --- a/src/components/Icons/icons-export/Flat/12/command-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/copy-12.svg b/src/components/Icons/icons-export/Flat/12/copy-12.svg deleted file mode 100644 index 35a34ea01d..0000000000 --- a/src/components/Icons/icons-export/Flat/12/copy-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/delete-12.svg b/src/components/Icons/icons-export/Flat/12/delete-12.svg deleted file mode 100644 index 52a71f4e21..0000000000 --- a/src/components/Icons/icons-export/Flat/12/delete-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/edit-12.svg b/src/components/Icons/icons-export/Flat/12/edit-12.svg deleted file mode 100644 index f3523676a9..0000000000 --- a/src/components/Icons/icons-export/Flat/12/edit-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/emoji-12.svg b/src/components/Icons/icons-export/Flat/12/emoji-12.svg deleted file mode 100644 index a3a87da223..0000000000 --- a/src/components/Icons/icons-export/Flat/12/emoji-12.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/emoji-add-12.svg b/src/components/Icons/icons-export/Flat/12/emoji-add-12.svg deleted file mode 100644 index 3c498ba601..0000000000 --- a/src/components/Icons/icons-export/Flat/12/emoji-add-12.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg deleted file mode 100644 index dc17ba45ae..0000000000 --- a/src/components/Icons/icons-export/Flat/12/exclamation-circle-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg deleted file mode 100644 index 674165894c..0000000000 --- a/src/components/Icons/icons-export/Flat/12/exclamation-mark-12.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg deleted file mode 100644 index 620719e43b..0000000000 --- a/src/components/Icons/icons-export/Flat/12/exclamation-mark-fill-12.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg b/src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg deleted file mode 100644 index 95c1a5e998..0000000000 --- a/src/components/Icons/icons-export/Flat/12/exclamation-triangle-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/export-12.svg b/src/components/Icons/icons-export/Flat/12/export-12.svg deleted file mode 100644 index b37a519b2f..0000000000 --- a/src/components/Icons/icons-export/Flat/12/export-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/file-12.svg b/src/components/Icons/icons-export/Flat/12/file-12.svg deleted file mode 100644 index 3fb51d055f..0000000000 --- a/src/components/Icons/icons-export/Flat/12/file-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/flag-12.svg b/src/components/Icons/icons-export/Flat/12/flag-12.svg deleted file mode 100644 index e248643f76..0000000000 --- a/src/components/Icons/icons-export/Flat/12/flag-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/folder-12.svg b/src/components/Icons/icons-export/Flat/12/folder-12.svg deleted file mode 100644 index 5e994ad9bd..0000000000 --- a/src/components/Icons/icons-export/Flat/12/folder-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/gallery-12.svg b/src/components/Icons/icons-export/Flat/12/gallery-12.svg deleted file mode 100644 index c44188443f..0000000000 --- a/src/components/Icons/icons-export/Flat/12/gallery-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/giphy-12.svg b/src/components/Icons/icons-export/Flat/12/giphy-12.svg deleted file mode 100644 index 1e5821c08c..0000000000 --- a/src/components/Icons/icons-export/Flat/12/giphy-12.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/image-12.svg b/src/components/Icons/icons-export/Flat/12/image-12.svg deleted file mode 100644 index ef1ef85c14..0000000000 --- a/src/components/Icons/icons-export/Flat/12/image-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/imgur-12.svg b/src/components/Icons/icons-export/Flat/12/imgur-12.svg deleted file mode 100644 index a2b8cb3161..0000000000 --- a/src/components/Icons/icons-export/Flat/12/imgur-12.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/info-12.svg b/src/components/Icons/icons-export/Flat/12/info-12.svg deleted file mode 100644 index aec75576a3..0000000000 --- a/src/components/Icons/icons-export/Flat/12/info-12.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/leave-12.svg b/src/components/Icons/icons-export/Flat/12/leave-12.svg deleted file mode 100644 index c2a2699ffc..0000000000 --- a/src/components/Icons/icons-export/Flat/12/leave-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/link-12.svg b/src/components/Icons/icons-export/Flat/12/link-12.svg deleted file mode 100644 index ec4b3d4823..0000000000 --- a/src/components/Icons/icons-export/Flat/12/link-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/loading-12.svg b/src/components/Icons/icons-export/Flat/12/loading-12.svg deleted file mode 100644 index 45dbe210dd..0000000000 --- a/src/components/Icons/icons-export/Flat/12/loading-12.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/location-12.svg b/src/components/Icons/icons-export/Flat/12/location-12.svg deleted file mode 100644 index 2a4929a6f7..0000000000 --- a/src/components/Icons/icons-export/Flat/12/location-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/lock-12.svg b/src/components/Icons/icons-export/Flat/12/lock-12.svg deleted file mode 100644 index e3babc9b2c..0000000000 --- a/src/components/Icons/icons-export/Flat/12/lock-12.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/mention-12.svg b/src/components/Icons/icons-export/Flat/12/mention-12.svg deleted file mode 100644 index 77f3cd88a0..0000000000 --- a/src/components/Icons/icons-export/Flat/12/mention-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/message-bubble-12.svg b/src/components/Icons/icons-export/Flat/12/message-bubble-12.svg deleted file mode 100644 index b441b5e4c9..0000000000 --- a/src/components/Icons/icons-export/Flat/12/message-bubble-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg b/src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg deleted file mode 100644 index c1a974cf81..0000000000 --- a/src/components/Icons/icons-export/Flat/12/message-bubble-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg b/src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg deleted file mode 100644 index 920e276bd7..0000000000 --- a/src/components/Icons/icons-export/Flat/12/message-bubbles-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/minus-12.svg b/src/components/Icons/icons-export/Flat/12/minus-12.svg deleted file mode 100644 index c52f8a6cd7..0000000000 --- a/src/components/Icons/icons-export/Flat/12/minus-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/minus-circle-12.svg b/src/components/Icons/icons-export/Flat/12/minus-circle-12.svg deleted file mode 100644 index e950eb02b6..0000000000 --- a/src/components/Icons/icons-export/Flat/12/minus-circle-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/more-12.svg b/src/components/Icons/icons-export/Flat/12/more-12.svg deleted file mode 100644 index 888a715f13..0000000000 --- a/src/components/Icons/icons-export/Flat/12/more-12.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/mute-12.svg b/src/components/Icons/icons-export/Flat/12/mute-12.svg deleted file mode 100644 index 054b911ff2..0000000000 --- a/src/components/Icons/icons-export/Flat/12/mute-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/no-sign-12.svg b/src/components/Icons/icons-export/Flat/12/no-sign-12.svg deleted file mode 100644 index 9862b82b25..0000000000 --- a/src/components/Icons/icons-export/Flat/12/no-sign-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/notification-12.svg b/src/components/Icons/icons-export/Flat/12/notification-12.svg deleted file mode 100644 index 02d3ea76a5..0000000000 --- a/src/components/Icons/icons-export/Flat/12/notification-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/pause-fill-12.svg b/src/components/Icons/icons-export/Flat/12/pause-fill-12.svg deleted file mode 100644 index f04c92a479..0000000000 --- a/src/components/Icons/icons-export/Flat/12/pause-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/pin-12.svg b/src/components/Icons/icons-export/Flat/12/pin-12.svg deleted file mode 100644 index 250c03c31a..0000000000 --- a/src/components/Icons/icons-export/Flat/12/pin-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/play-fill-12.svg b/src/components/Icons/icons-export/Flat/12/play-fill-12.svg deleted file mode 100644 index 346ba66830..0000000000 --- a/src/components/Icons/icons-export/Flat/12/play-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/plus-12.svg b/src/components/Icons/icons-export/Flat/12/plus-12.svg deleted file mode 100644 index 506fe3381a..0000000000 --- a/src/components/Icons/icons-export/Flat/12/plus-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/poll-12.svg b/src/components/Icons/icons-export/Flat/12/poll-12.svg deleted file mode 100644 index de189e4b6f..0000000000 --- a/src/components/Icons/icons-export/Flat/12/poll-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/quote-12.svg b/src/components/Icons/icons-export/Flat/12/quote-12.svg deleted file mode 100644 index 4157b14046..0000000000 --- a/src/components/Icons/icons-export/Flat/12/quote-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/refresh-12.svg b/src/components/Icons/icons-export/Flat/12/refresh-12.svg deleted file mode 100644 index 697aeb566d..0000000000 --- a/src/components/Icons/icons-export/Flat/12/refresh-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/reorder-12.svg b/src/components/Icons/icons-export/Flat/12/reorder-12.svg deleted file mode 100644 index bd48717384..0000000000 --- a/src/components/Icons/icons-export/Flat/12/reorder-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/reply-12.svg b/src/components/Icons/icons-export/Flat/12/reply-12.svg deleted file mode 100644 index d63c51bb8a..0000000000 --- a/src/components/Icons/icons-export/Flat/12/reply-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/retry-12.svg b/src/components/Icons/icons-export/Flat/12/retry-12.svg deleted file mode 100644 index 3a3be23238..0000000000 --- a/src/components/Icons/icons-export/Flat/12/retry-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/save-12.svg b/src/components/Icons/icons-export/Flat/12/save-12.svg deleted file mode 100644 index 6c64184fd4..0000000000 --- a/src/components/Icons/icons-export/Flat/12/save-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/search-12.svg b/src/components/Icons/icons-export/Flat/12/search-12.svg deleted file mode 100644 index 043cecb485..0000000000 --- a/src/components/Icons/icons-export/Flat/12/search-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/send-12.svg b/src/components/Icons/icons-export/Flat/12/send-12.svg deleted file mode 100644 index 584d1e2989..0000000000 --- a/src/components/Icons/icons-export/Flat/12/send-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/share-12.svg b/src/components/Icons/icons-export/Flat/12/share-12.svg deleted file mode 100644 index 1fcb8eb486..0000000000 --- a/src/components/Icons/icons-export/Flat/12/share-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/sidebar-12.svg b/src/components/Icons/icons-export/Flat/12/sidebar-12.svg deleted file mode 100644 index 61a53feb20..0000000000 --- a/src/components/Icons/icons-export/Flat/12/sidebar-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/stop-fill-12.svg b/src/components/Icons/icons-export/Flat/12/stop-fill-12.svg deleted file mode 100644 index 29d779deb4..0000000000 --- a/src/components/Icons/icons-export/Flat/12/stop-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/thread-12.svg b/src/components/Icons/icons-export/Flat/12/thread-12.svg deleted file mode 100644 index 9cf5a41481..0000000000 --- a/src/components/Icons/icons-export/Flat/12/thread-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/thread-fill-12.svg b/src/components/Icons/icons-export/Flat/12/thread-fill-12.svg deleted file mode 100644 index a62d63964e..0000000000 --- a/src/components/Icons/icons-export/Flat/12/thread-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/translate-12.svg b/src/components/Icons/icons-export/Flat/12/translate-12.svg deleted file mode 100644 index ddde99d5c1..0000000000 --- a/src/components/Icons/icons-export/Flat/12/translate-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/trophy-12.svg b/src/components/Icons/icons-export/Flat/12/trophy-12.svg deleted file mode 100644 index 8d43117cf9..0000000000 --- a/src/components/Icons/icons-export/Flat/12/trophy-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/unlock-12.svg b/src/components/Icons/icons-export/Flat/12/unlock-12.svg deleted file mode 100644 index c954d4ab7b..0000000000 --- a/src/components/Icons/icons-export/Flat/12/unlock-12.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/unpin-12.svg b/src/components/Icons/icons-export/Flat/12/unpin-12.svg deleted file mode 100644 index e4416d9784..0000000000 --- a/src/components/Icons/icons-export/Flat/12/unpin-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/unsave-12.svg b/src/components/Icons/icons-export/Flat/12/unsave-12.svg deleted file mode 100644 index adc90755f3..0000000000 --- a/src/components/Icons/icons-export/Flat/12/unsave-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/upload-12.svg b/src/components/Icons/icons-export/Flat/12/upload-12.svg deleted file mode 100644 index f225eb598b..0000000000 --- a/src/components/Icons/icons-export/Flat/12/upload-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/user-12.svg b/src/components/Icons/icons-export/Flat/12/user-12.svg deleted file mode 100644 index d827d1418d..0000000000 --- a/src/components/Icons/icons-export/Flat/12/user-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/user-add-12.svg b/src/components/Icons/icons-export/Flat/12/user-add-12.svg deleted file mode 100644 index ac8d2612f3..0000000000 --- a/src/components/Icons/icons-export/Flat/12/user-add-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/user-check-12.svg b/src/components/Icons/icons-export/Flat/12/user-check-12.svg deleted file mode 100644 index 34354497f1..0000000000 --- a/src/components/Icons/icons-export/Flat/12/user-check-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/user-remove-12.svg b/src/components/Icons/icons-export/Flat/12/user-remove-12.svg deleted file mode 100644 index a26d0829a3..0000000000 --- a/src/components/Icons/icons-export/Flat/12/user-remove-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/users-12.svg b/src/components/Icons/icons-export/Flat/12/users-12.svg deleted file mode 100644 index 37281fa270..0000000000 --- a/src/components/Icons/icons-export/Flat/12/users-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/video-12.svg b/src/components/Icons/icons-export/Flat/12/video-12.svg deleted file mode 100644 index f3ad0f1b1b..0000000000 --- a/src/components/Icons/icons-export/Flat/12/video-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/video-fill-12.svg b/src/components/Icons/icons-export/Flat/12/video-fill-12.svg deleted file mode 100644 index ae334be4fb..0000000000 --- a/src/components/Icons/icons-export/Flat/12/video-fill-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/voice-12.svg b/src/components/Icons/icons-export/Flat/12/voice-12.svg deleted file mode 100644 index 6adf512102..0000000000 --- a/src/components/Icons/icons-export/Flat/12/voice-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/voice-fill-12.svg b/src/components/Icons/icons-export/Flat/12/voice-fill-12.svg deleted file mode 100644 index bd9da6d1da..0000000000 --- a/src/components/Icons/icons-export/Flat/12/voice-fill-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/12/x-circle-12.svg b/src/components/Icons/icons-export/Flat/12/x-circle-12.svg deleted file mode 100644 index 336872eac2..0000000000 --- a/src/components/Icons/icons-export/Flat/12/x-circle-12.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/12/xmark-12.svg b/src/components/Icons/icons-export/Flat/12/xmark-12.svg deleted file mode 100644 index db746701f0..0000000000 --- a/src/components/Icons/icons-export/Flat/12/xmark-12.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/account-16.svg b/src/components/Icons/icons-export/Flat/16/account-16.svg deleted file mode 100644 index 8005ad3737..0000000000 --- a/src/components/Icons/icons-export/Flat/16/account-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/archive-16.svg b/src/components/Icons/icons-export/Flat/16/archive-16.svg deleted file mode 100644 index 8f16f9a701..0000000000 --- a/src/components/Icons/icons-export/Flat/16/archive-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg deleted file mode 100644 index 0450eb1dce..0000000000 --- a/src/components/Icons/icons-export/Flat/16/arrow-down-circle-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/arrow-left-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-left-16.svg deleted file mode 100644 index 1e57ba9975..0000000000 --- a/src/components/Icons/icons-export/Flat/16/arrow-left-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/arrow-up-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-up-16.svg deleted file mode 100644 index a7c525c278..0000000000 --- a/src/components/Icons/icons-export/Flat/16/arrow-up-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg b/src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg deleted file mode 100644 index d7e73b8228..0000000000 --- a/src/components/Icons/icons-export/Flat/16/arrow-up-right-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/attachment-16.svg b/src/components/Icons/icons-export/Flat/16/attachment-16.svg deleted file mode 100644 index f661680010..0000000000 --- a/src/components/Icons/icons-export/Flat/16/attachment-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/audio-16.svg b/src/components/Icons/icons-export/Flat/16/audio-16.svg deleted file mode 100644 index 67ee129dfc..0000000000 --- a/src/components/Icons/icons-export/Flat/16/audio-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/bell-16.svg b/src/components/Icons/icons-export/Flat/16/bell-16.svg deleted file mode 100644 index f3adbb1fb6..0000000000 --- a/src/components/Icons/icons-export/Flat/16/bell-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/bell-off-16.svg b/src/components/Icons/icons-export/Flat/16/bell-off-16.svg deleted file mode 100644 index 319d57d460..0000000000 --- a/src/components/Icons/icons-export/Flat/16/bell-off-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/bolt-16.svg b/src/components/Icons/icons-export/Flat/16/bolt-16.svg deleted file mode 100644 index 4d4ec05729..0000000000 --- a/src/components/Icons/icons-export/Flat/16/bolt-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/camera-16.svg b/src/components/Icons/icons-export/Flat/16/camera-16.svg deleted file mode 100644 index 03578c5ebc..0000000000 --- a/src/components/Icons/icons-export/Flat/16/camera-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/checkmark-16.svg b/src/components/Icons/icons-export/Flat/16/checkmark-16.svg deleted file mode 100644 index ad23fd6d80..0000000000 --- a/src/components/Icons/icons-export/Flat/16/checkmark-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/checks-16.svg b/src/components/Icons/icons-export/Flat/16/checks-16.svg deleted file mode 100644 index 5ea2692987..0000000000 --- a/src/components/Icons/icons-export/Flat/16/checks-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/chevron-down-16.svg b/src/components/Icons/icons-export/Flat/16/chevron-down-16.svg deleted file mode 100644 index 967b89d38d..0000000000 --- a/src/components/Icons/icons-export/Flat/16/chevron-down-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/chevron-left-16.svg b/src/components/Icons/icons-export/Flat/16/chevron-left-16.svg deleted file mode 100644 index 812921cdc1..0000000000 --- a/src/components/Icons/icons-export/Flat/16/chevron-left-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/chevron-right-16.svg b/src/components/Icons/icons-export/Flat/16/chevron-right-16.svg deleted file mode 100644 index 8c907e1270..0000000000 --- a/src/components/Icons/icons-export/Flat/16/chevron-right-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/clock-16.svg b/src/components/Icons/icons-export/Flat/16/clock-16.svg deleted file mode 100644 index 066803684d..0000000000 --- a/src/components/Icons/icons-export/Flat/16/clock-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/command-16.svg b/src/components/Icons/icons-export/Flat/16/command-16.svg deleted file mode 100644 index 7b187aec84..0000000000 --- a/src/components/Icons/icons-export/Flat/16/command-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/copy-16.svg b/src/components/Icons/icons-export/Flat/16/copy-16.svg deleted file mode 100644 index e04c7db55b..0000000000 --- a/src/components/Icons/icons-export/Flat/16/copy-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/delete-16.svg b/src/components/Icons/icons-export/Flat/16/delete-16.svg deleted file mode 100644 index 0311ae7daa..0000000000 --- a/src/components/Icons/icons-export/Flat/16/delete-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/edit-16.svg b/src/components/Icons/icons-export/Flat/16/edit-16.svg deleted file mode 100644 index 72ed455bff..0000000000 --- a/src/components/Icons/icons-export/Flat/16/edit-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/emoji-16.svg b/src/components/Icons/icons-export/Flat/16/emoji-16.svg deleted file mode 100644 index c3f5159006..0000000000 --- a/src/components/Icons/icons-export/Flat/16/emoji-16.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/emoji-add-16.svg b/src/components/Icons/icons-export/Flat/16/emoji-add-16.svg deleted file mode 100644 index db9ce38c27..0000000000 --- a/src/components/Icons/icons-export/Flat/16/emoji-add-16.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg deleted file mode 100644 index 831bbb03c0..0000000000 --- a/src/components/Icons/icons-export/Flat/16/exclamation-circle-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg deleted file mode 100644 index 672ebc081e..0000000000 --- a/src/components/Icons/icons-export/Flat/16/exclamation-mark-16.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg deleted file mode 100644 index 7287746bb1..0000000000 --- a/src/components/Icons/icons-export/Flat/16/exclamation-mark-fill-16.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg b/src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg deleted file mode 100644 index 35fc98cdc0..0000000000 --- a/src/components/Icons/icons-export/Flat/16/exclamation-triangle-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/export-16.svg b/src/components/Icons/icons-export/Flat/16/export-16.svg deleted file mode 100644 index b9a56a398f..0000000000 --- a/src/components/Icons/icons-export/Flat/16/export-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/file-16.svg b/src/components/Icons/icons-export/Flat/16/file-16.svg deleted file mode 100644 index d4048cc26a..0000000000 --- a/src/components/Icons/icons-export/Flat/16/file-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/flag-16.svg b/src/components/Icons/icons-export/Flat/16/flag-16.svg deleted file mode 100644 index 0319903189..0000000000 --- a/src/components/Icons/icons-export/Flat/16/flag-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/folder-16.svg b/src/components/Icons/icons-export/Flat/16/folder-16.svg deleted file mode 100644 index e5bca44cce..0000000000 --- a/src/components/Icons/icons-export/Flat/16/folder-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/gallery-16.svg b/src/components/Icons/icons-export/Flat/16/gallery-16.svg deleted file mode 100644 index 4f10c22aec..0000000000 --- a/src/components/Icons/icons-export/Flat/16/gallery-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/giphy-16.svg b/src/components/Icons/icons-export/Flat/16/giphy-16.svg deleted file mode 100644 index 6c74675ce0..0000000000 --- a/src/components/Icons/icons-export/Flat/16/giphy-16.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/image-16.svg b/src/components/Icons/icons-export/Flat/16/image-16.svg deleted file mode 100644 index 91cdef609d..0000000000 --- a/src/components/Icons/icons-export/Flat/16/image-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/imgur-16.svg b/src/components/Icons/icons-export/Flat/16/imgur-16.svg deleted file mode 100644 index ee2c2da72f..0000000000 --- a/src/components/Icons/icons-export/Flat/16/imgur-16.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/info-16.svg b/src/components/Icons/icons-export/Flat/16/info-16.svg deleted file mode 100644 index 6d837bf30d..0000000000 --- a/src/components/Icons/icons-export/Flat/16/info-16.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/leave-16.svg b/src/components/Icons/icons-export/Flat/16/leave-16.svg deleted file mode 100644 index 3b61c621f1..0000000000 --- a/src/components/Icons/icons-export/Flat/16/leave-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/link-16.svg b/src/components/Icons/icons-export/Flat/16/link-16.svg deleted file mode 100644 index 4165fbe177..0000000000 --- a/src/components/Icons/icons-export/Flat/16/link-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/loading-16.svg b/src/components/Icons/icons-export/Flat/16/loading-16.svg deleted file mode 100644 index abad0c9426..0000000000 --- a/src/components/Icons/icons-export/Flat/16/loading-16.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Flat/16/location-16.svg b/src/components/Icons/icons-export/Flat/16/location-16.svg deleted file mode 100644 index e587406c04..0000000000 --- a/src/components/Icons/icons-export/Flat/16/location-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/lock-16.svg b/src/components/Icons/icons-export/Flat/16/lock-16.svg deleted file mode 100644 index 4cdf8139cf..0000000000 --- a/src/components/Icons/icons-export/Flat/16/lock-16.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/mention-16.svg b/src/components/Icons/icons-export/Flat/16/mention-16.svg deleted file mode 100644 index 55d80aafcd..0000000000 --- a/src/components/Icons/icons-export/Flat/16/mention-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/message-bubble-16.svg b/src/components/Icons/icons-export/Flat/16/message-bubble-16.svg deleted file mode 100644 index cd3d19898c..0000000000 --- a/src/components/Icons/icons-export/Flat/16/message-bubble-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg b/src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg deleted file mode 100644 index e72bf75d9b..0000000000 --- a/src/components/Icons/icons-export/Flat/16/message-bubble-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg b/src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg deleted file mode 100644 index 77f90d76d1..0000000000 --- a/src/components/Icons/icons-export/Flat/16/message-bubbles-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/minus-16.svg b/src/components/Icons/icons-export/Flat/16/minus-16.svg deleted file mode 100644 index 9465abc6be..0000000000 --- a/src/components/Icons/icons-export/Flat/16/minus-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/minus-circle-16.svg b/src/components/Icons/icons-export/Flat/16/minus-circle-16.svg deleted file mode 100644 index 2c6d6e2d84..0000000000 --- a/src/components/Icons/icons-export/Flat/16/minus-circle-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/more-16.svg b/src/components/Icons/icons-export/Flat/16/more-16.svg deleted file mode 100644 index e712d0538f..0000000000 --- a/src/components/Icons/icons-export/Flat/16/more-16.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/mute-16.svg b/src/components/Icons/icons-export/Flat/16/mute-16.svg deleted file mode 100644 index c286cd5c54..0000000000 --- a/src/components/Icons/icons-export/Flat/16/mute-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/no-sign-16.svg b/src/components/Icons/icons-export/Flat/16/no-sign-16.svg deleted file mode 100644 index 175ae3b4e9..0000000000 --- a/src/components/Icons/icons-export/Flat/16/no-sign-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/notification-16.svg b/src/components/Icons/icons-export/Flat/16/notification-16.svg deleted file mode 100644 index 2254c4cbff..0000000000 --- a/src/components/Icons/icons-export/Flat/16/notification-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/pause-fill-16.svg b/src/components/Icons/icons-export/Flat/16/pause-fill-16.svg deleted file mode 100644 index c2e9d43f96..0000000000 --- a/src/components/Icons/icons-export/Flat/16/pause-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/pin-16.svg b/src/components/Icons/icons-export/Flat/16/pin-16.svg deleted file mode 100644 index da321d5b21..0000000000 --- a/src/components/Icons/icons-export/Flat/16/pin-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/play-fill-16.svg b/src/components/Icons/icons-export/Flat/16/play-fill-16.svg deleted file mode 100644 index 859890cc89..0000000000 --- a/src/components/Icons/icons-export/Flat/16/play-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/plus-16-1.svg b/src/components/Icons/icons-export/Flat/16/plus-16-1.svg deleted file mode 100644 index 24c448ff12..0000000000 --- a/src/components/Icons/icons-export/Flat/16/plus-16-1.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/plus-16.svg b/src/components/Icons/icons-export/Flat/16/plus-16.svg deleted file mode 100644 index 24c448ff12..0000000000 --- a/src/components/Icons/icons-export/Flat/16/plus-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/poll-16.svg b/src/components/Icons/icons-export/Flat/16/poll-16.svg deleted file mode 100644 index ca77da301a..0000000000 --- a/src/components/Icons/icons-export/Flat/16/poll-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/quote-16.svg b/src/components/Icons/icons-export/Flat/16/quote-16.svg deleted file mode 100644 index 334a1e86d5..0000000000 --- a/src/components/Icons/icons-export/Flat/16/quote-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/refresh-16.svg b/src/components/Icons/icons-export/Flat/16/refresh-16.svg deleted file mode 100644 index 697aeb566d..0000000000 --- a/src/components/Icons/icons-export/Flat/16/refresh-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/reorder-16.svg b/src/components/Icons/icons-export/Flat/16/reorder-16.svg deleted file mode 100644 index 263ca91daf..0000000000 --- a/src/components/Icons/icons-export/Flat/16/reorder-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/reply-16.svg b/src/components/Icons/icons-export/Flat/16/reply-16.svg deleted file mode 100644 index 1e49bca116..0000000000 --- a/src/components/Icons/icons-export/Flat/16/reply-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/retry-16.svg b/src/components/Icons/icons-export/Flat/16/retry-16.svg deleted file mode 100644 index 76e4ba72e1..0000000000 --- a/src/components/Icons/icons-export/Flat/16/retry-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/save-16.svg b/src/components/Icons/icons-export/Flat/16/save-16.svg deleted file mode 100644 index b52f96fc35..0000000000 --- a/src/components/Icons/icons-export/Flat/16/save-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/search-16.svg b/src/components/Icons/icons-export/Flat/16/search-16.svg deleted file mode 100644 index 587018b04e..0000000000 --- a/src/components/Icons/icons-export/Flat/16/search-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/send-16.svg b/src/components/Icons/icons-export/Flat/16/send-16.svg deleted file mode 100644 index 4a250c2199..0000000000 --- a/src/components/Icons/icons-export/Flat/16/send-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/share-16.svg b/src/components/Icons/icons-export/Flat/16/share-16.svg deleted file mode 100644 index 6798e02fda..0000000000 --- a/src/components/Icons/icons-export/Flat/16/share-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/sidebar-16.svg b/src/components/Icons/icons-export/Flat/16/sidebar-16.svg deleted file mode 100644 index 93a5d75f9a..0000000000 --- a/src/components/Icons/icons-export/Flat/16/sidebar-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/stop-fill-16.svg b/src/components/Icons/icons-export/Flat/16/stop-fill-16.svg deleted file mode 100644 index 2394b28ef4..0000000000 --- a/src/components/Icons/icons-export/Flat/16/stop-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/thread-16.svg b/src/components/Icons/icons-export/Flat/16/thread-16.svg deleted file mode 100644 index 5d5bb9ed2c..0000000000 --- a/src/components/Icons/icons-export/Flat/16/thread-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/thread-fill-16.svg b/src/components/Icons/icons-export/Flat/16/thread-fill-16.svg deleted file mode 100644 index b87b7a1ff6..0000000000 --- a/src/components/Icons/icons-export/Flat/16/thread-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/translate-16.svg b/src/components/Icons/icons-export/Flat/16/translate-16.svg deleted file mode 100644 index 06d129f788..0000000000 --- a/src/components/Icons/icons-export/Flat/16/translate-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/trophy-16.svg b/src/components/Icons/icons-export/Flat/16/trophy-16.svg deleted file mode 100644 index d3e6e716f4..0000000000 --- a/src/components/Icons/icons-export/Flat/16/trophy-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/unlock-16.svg b/src/components/Icons/icons-export/Flat/16/unlock-16.svg deleted file mode 100644 index 38f59ab2e8..0000000000 --- a/src/components/Icons/icons-export/Flat/16/unlock-16.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/unpin-16.svg b/src/components/Icons/icons-export/Flat/16/unpin-16.svg deleted file mode 100644 index 1b12862048..0000000000 --- a/src/components/Icons/icons-export/Flat/16/unpin-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/unsave-16.svg b/src/components/Icons/icons-export/Flat/16/unsave-16.svg deleted file mode 100644 index 9b66320511..0000000000 --- a/src/components/Icons/icons-export/Flat/16/unsave-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/upload-16.svg b/src/components/Icons/icons-export/Flat/16/upload-16.svg deleted file mode 100644 index 997064ffec..0000000000 --- a/src/components/Icons/icons-export/Flat/16/upload-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/user-16.svg b/src/components/Icons/icons-export/Flat/16/user-16.svg deleted file mode 100644 index 360ede178d..0000000000 --- a/src/components/Icons/icons-export/Flat/16/user-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/user-add-16.svg b/src/components/Icons/icons-export/Flat/16/user-add-16.svg deleted file mode 100644 index d73ae12f59..0000000000 --- a/src/components/Icons/icons-export/Flat/16/user-add-16.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/user-check-16.svg b/src/components/Icons/icons-export/Flat/16/user-check-16.svg deleted file mode 100644 index 4425f43a9b..0000000000 --- a/src/components/Icons/icons-export/Flat/16/user-check-16.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/user-remove-16.svg b/src/components/Icons/icons-export/Flat/16/user-remove-16.svg deleted file mode 100644 index 7622072ca4..0000000000 --- a/src/components/Icons/icons-export/Flat/16/user-remove-16.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/users-16.svg b/src/components/Icons/icons-export/Flat/16/users-16.svg deleted file mode 100644 index dd574e445a..0000000000 --- a/src/components/Icons/icons-export/Flat/16/users-16.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/video-16.svg b/src/components/Icons/icons-export/Flat/16/video-16.svg deleted file mode 100644 index f058d512e4..0000000000 --- a/src/components/Icons/icons-export/Flat/16/video-16.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/video-fill-16.svg b/src/components/Icons/icons-export/Flat/16/video-fill-16.svg deleted file mode 100644 index cbdaaa49b9..0000000000 --- a/src/components/Icons/icons-export/Flat/16/video-fill-16.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/16/voice-16.svg b/src/components/Icons/icons-export/Flat/16/voice-16.svg deleted file mode 100644 index 2a8de253b7..0000000000 --- a/src/components/Icons/icons-export/Flat/16/voice-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/voice-fill-16.svg b/src/components/Icons/icons-export/Flat/16/voice-fill-16.svg deleted file mode 100644 index 7560201491..0000000000 --- a/src/components/Icons/icons-export/Flat/16/voice-fill-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/x-circle-16.svg b/src/components/Icons/icons-export/Flat/16/x-circle-16.svg deleted file mode 100644 index fd0f22c4f2..0000000000 --- a/src/components/Icons/icons-export/Flat/16/x-circle-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/16/xmark-16.svg b/src/components/Icons/icons-export/Flat/16/xmark-16.svg deleted file mode 100644 index d82c1b36b8..0000000000 --- a/src/components/Icons/icons-export/Flat/16/xmark-16.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/account-20.svg b/src/components/Icons/icons-export/Flat/20/account-20.svg deleted file mode 100644 index aa040aa7e5..0000000000 --- a/src/components/Icons/icons-export/Flat/20/account-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/archive-20.svg b/src/components/Icons/icons-export/Flat/20/archive-20.svg deleted file mode 100644 index 452a29853c..0000000000 --- a/src/components/Icons/icons-export/Flat/20/archive-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg deleted file mode 100644 index 854896944e..0000000000 --- a/src/components/Icons/icons-export/Flat/20/arrow-down-circle-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/arrow-left-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-left-20.svg deleted file mode 100644 index 09a6b741b6..0000000000 --- a/src/components/Icons/icons-export/Flat/20/arrow-left-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/arrow-up-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-up-20.svg deleted file mode 100644 index c6bad306a5..0000000000 --- a/src/components/Icons/icons-export/Flat/20/arrow-up-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg b/src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg deleted file mode 100644 index bad98c0bb7..0000000000 --- a/src/components/Icons/icons-export/Flat/20/arrow-up-right-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/attachment-20.svg b/src/components/Icons/icons-export/Flat/20/attachment-20.svg deleted file mode 100644 index 5efd80d896..0000000000 --- a/src/components/Icons/icons-export/Flat/20/attachment-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/audio-20.svg b/src/components/Icons/icons-export/Flat/20/audio-20.svg deleted file mode 100644 index 6b780c9d6c..0000000000 --- a/src/components/Icons/icons-export/Flat/20/audio-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/bell-20.svg b/src/components/Icons/icons-export/Flat/20/bell-20.svg deleted file mode 100644 index 95561111bf..0000000000 --- a/src/components/Icons/icons-export/Flat/20/bell-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/bell-off-20.svg b/src/components/Icons/icons-export/Flat/20/bell-off-20.svg deleted file mode 100644 index 2402a2a755..0000000000 --- a/src/components/Icons/icons-export/Flat/20/bell-off-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/bolt-20.svg b/src/components/Icons/icons-export/Flat/20/bolt-20.svg deleted file mode 100644 index 785ee09ae1..0000000000 --- a/src/components/Icons/icons-export/Flat/20/bolt-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/camera-20.svg b/src/components/Icons/icons-export/Flat/20/camera-20.svg deleted file mode 100644 index 85d5eb4d40..0000000000 --- a/src/components/Icons/icons-export/Flat/20/camera-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/checkmark-20.svg b/src/components/Icons/icons-export/Flat/20/checkmark-20.svg deleted file mode 100644 index 07b7ea8481..0000000000 --- a/src/components/Icons/icons-export/Flat/20/checkmark-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/checks-20.svg b/src/components/Icons/icons-export/Flat/20/checks-20.svg deleted file mode 100644 index 74cc796a9c..0000000000 --- a/src/components/Icons/icons-export/Flat/20/checks-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/chevron-down-20.svg b/src/components/Icons/icons-export/Flat/20/chevron-down-20.svg deleted file mode 100644 index 1ef1d4b462..0000000000 --- a/src/components/Icons/icons-export/Flat/20/chevron-down-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/chevron-left-20.svg b/src/components/Icons/icons-export/Flat/20/chevron-left-20.svg deleted file mode 100644 index 628001efc0..0000000000 --- a/src/components/Icons/icons-export/Flat/20/chevron-left-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/chevron-right-20.svg b/src/components/Icons/icons-export/Flat/20/chevron-right-20.svg deleted file mode 100644 index e14038bf7f..0000000000 --- a/src/components/Icons/icons-export/Flat/20/chevron-right-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/clock-20.svg b/src/components/Icons/icons-export/Flat/20/clock-20.svg deleted file mode 100644 index c7a573d6b0..0000000000 --- a/src/components/Icons/icons-export/Flat/20/clock-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/command-20.svg b/src/components/Icons/icons-export/Flat/20/command-20.svg deleted file mode 100644 index 9ed967c814..0000000000 --- a/src/components/Icons/icons-export/Flat/20/command-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/copy-20.svg b/src/components/Icons/icons-export/Flat/20/copy-20.svg deleted file mode 100644 index 7c271b4902..0000000000 --- a/src/components/Icons/icons-export/Flat/20/copy-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/delete-20.svg b/src/components/Icons/icons-export/Flat/20/delete-20.svg deleted file mode 100644 index 92ad03d0e2..0000000000 --- a/src/components/Icons/icons-export/Flat/20/delete-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/edit-20.svg b/src/components/Icons/icons-export/Flat/20/edit-20.svg deleted file mode 100644 index daf77f8f60..0000000000 --- a/src/components/Icons/icons-export/Flat/20/edit-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/emoji-20.svg b/src/components/Icons/icons-export/Flat/20/emoji-20.svg deleted file mode 100644 index 55f5f8794d..0000000000 --- a/src/components/Icons/icons-export/Flat/20/emoji-20.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/emoji-add-20.svg b/src/components/Icons/icons-export/Flat/20/emoji-add-20.svg deleted file mode 100644 index a0bacdaa70..0000000000 --- a/src/components/Icons/icons-export/Flat/20/emoji-add-20.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg deleted file mode 100644 index 0d561e2332..0000000000 --- a/src/components/Icons/icons-export/Flat/20/exclamation-circle-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg deleted file mode 100644 index de802faa32..0000000000 --- a/src/components/Icons/icons-export/Flat/20/exclamation-mark-20.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg deleted file mode 100644 index 39fffd8432..0000000000 --- a/src/components/Icons/icons-export/Flat/20/exclamation-mark-fill-20.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg b/src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg deleted file mode 100644 index d8ceab2b5a..0000000000 --- a/src/components/Icons/icons-export/Flat/20/exclamation-triangle-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/export-20.svg b/src/components/Icons/icons-export/Flat/20/export-20.svg deleted file mode 100644 index 3d48804286..0000000000 --- a/src/components/Icons/icons-export/Flat/20/export-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/file-20.svg b/src/components/Icons/icons-export/Flat/20/file-20.svg deleted file mode 100644 index dbd12a5713..0000000000 --- a/src/components/Icons/icons-export/Flat/20/file-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/flag-20.svg b/src/components/Icons/icons-export/Flat/20/flag-20.svg deleted file mode 100644 index a36b054258..0000000000 --- a/src/components/Icons/icons-export/Flat/20/flag-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/folder-20.svg b/src/components/Icons/icons-export/Flat/20/folder-20.svg deleted file mode 100644 index 776fa32792..0000000000 --- a/src/components/Icons/icons-export/Flat/20/folder-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/gallery-20.svg b/src/components/Icons/icons-export/Flat/20/gallery-20.svg deleted file mode 100644 index 01b3ca8ef9..0000000000 --- a/src/components/Icons/icons-export/Flat/20/gallery-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/giphy-20.svg b/src/components/Icons/icons-export/Flat/20/giphy-20.svg deleted file mode 100644 index 71fdf81fb1..0000000000 --- a/src/components/Icons/icons-export/Flat/20/giphy-20.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/image-20.svg b/src/components/Icons/icons-export/Flat/20/image-20.svg deleted file mode 100644 index 1a117f7b0b..0000000000 --- a/src/components/Icons/icons-export/Flat/20/image-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/imgur-20.svg b/src/components/Icons/icons-export/Flat/20/imgur-20.svg deleted file mode 100644 index 0258687aca..0000000000 --- a/src/components/Icons/icons-export/Flat/20/imgur-20.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/link-20.svg b/src/components/Icons/icons-export/Flat/20/link-20.svg deleted file mode 100644 index 86844b0616..0000000000 --- a/src/components/Icons/icons-export/Flat/20/link-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/loading-20.svg b/src/components/Icons/icons-export/Flat/20/loading-20.svg deleted file mode 100644 index e299e0d4bb..0000000000 --- a/src/components/Icons/icons-export/Flat/20/loading-20.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Flat/20/location-20.svg b/src/components/Icons/icons-export/Flat/20/location-20.svg deleted file mode 100644 index 6a1dbd245d..0000000000 --- a/src/components/Icons/icons-export/Flat/20/location-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/lock-20.svg b/src/components/Icons/icons-export/Flat/20/lock-20.svg deleted file mode 100644 index ca6b5cbf2c..0000000000 --- a/src/components/Icons/icons-export/Flat/20/lock-20.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/mention-20.svg b/src/components/Icons/icons-export/Flat/20/mention-20.svg deleted file mode 100644 index 8475c947a5..0000000000 --- a/src/components/Icons/icons-export/Flat/20/mention-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/message-bubble-20.svg b/src/components/Icons/icons-export/Flat/20/message-bubble-20.svg deleted file mode 100644 index 83e5341d99..0000000000 --- a/src/components/Icons/icons-export/Flat/20/message-bubble-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg b/src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg deleted file mode 100644 index 46a10bd82e..0000000000 --- a/src/components/Icons/icons-export/Flat/20/message-bubble-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg b/src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg deleted file mode 100644 index 41720e9d44..0000000000 --- a/src/components/Icons/icons-export/Flat/20/message-bubbles-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/minus-20.svg b/src/components/Icons/icons-export/Flat/20/minus-20.svg deleted file mode 100644 index d72b76025d..0000000000 --- a/src/components/Icons/icons-export/Flat/20/minus-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/more-20.svg b/src/components/Icons/icons-export/Flat/20/more-20.svg deleted file mode 100644 index dd66fec259..0000000000 --- a/src/components/Icons/icons-export/Flat/20/more-20.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/mute-20.svg b/src/components/Icons/icons-export/Flat/20/mute-20.svg deleted file mode 100644 index 9c278f54fb..0000000000 --- a/src/components/Icons/icons-export/Flat/20/mute-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/no-sign-20.svg b/src/components/Icons/icons-export/Flat/20/no-sign-20.svg deleted file mode 100644 index 3d5fadf71a..0000000000 --- a/src/components/Icons/icons-export/Flat/20/no-sign-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/notification-20.svg b/src/components/Icons/icons-export/Flat/20/notification-20.svg deleted file mode 100644 index 1ab424184a..0000000000 --- a/src/components/Icons/icons-export/Flat/20/notification-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/pause-fill-20.svg b/src/components/Icons/icons-export/Flat/20/pause-fill-20.svg deleted file mode 100644 index e058d1798d..0000000000 --- a/src/components/Icons/icons-export/Flat/20/pause-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/pin-20.svg b/src/components/Icons/icons-export/Flat/20/pin-20.svg deleted file mode 100644 index a97611a42f..0000000000 --- a/src/components/Icons/icons-export/Flat/20/pin-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/play-fill-20.svg b/src/components/Icons/icons-export/Flat/20/play-fill-20.svg deleted file mode 100644 index 5897b389fe..0000000000 --- a/src/components/Icons/icons-export/Flat/20/play-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/plus-20.svg b/src/components/Icons/icons-export/Flat/20/plus-20.svg deleted file mode 100644 index 70857c682e..0000000000 --- a/src/components/Icons/icons-export/Flat/20/plus-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/poll-20.svg b/src/components/Icons/icons-export/Flat/20/poll-20.svg deleted file mode 100644 index 43ff0feba8..0000000000 --- a/src/components/Icons/icons-export/Flat/20/poll-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/quote-20.svg b/src/components/Icons/icons-export/Flat/20/quote-20.svg deleted file mode 100644 index 2db1884768..0000000000 --- a/src/components/Icons/icons-export/Flat/20/quote-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/refresh-20.svg b/src/components/Icons/icons-export/Flat/20/refresh-20.svg deleted file mode 100644 index faabac54c2..0000000000 --- a/src/components/Icons/icons-export/Flat/20/refresh-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/reorder-20.svg b/src/components/Icons/icons-export/Flat/20/reorder-20.svg deleted file mode 100644 index 1be07317ef..0000000000 --- a/src/components/Icons/icons-export/Flat/20/reorder-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/reply-20.svg b/src/components/Icons/icons-export/Flat/20/reply-20.svg deleted file mode 100644 index a849d5e47c..0000000000 --- a/src/components/Icons/icons-export/Flat/20/reply-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/retry-20.svg b/src/components/Icons/icons-export/Flat/20/retry-20.svg deleted file mode 100644 index cea251ba0b..0000000000 --- a/src/components/Icons/icons-export/Flat/20/retry-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/save-20.svg b/src/components/Icons/icons-export/Flat/20/save-20.svg deleted file mode 100644 index 552c1e352b..0000000000 --- a/src/components/Icons/icons-export/Flat/20/save-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/search-20.svg b/src/components/Icons/icons-export/Flat/20/search-20.svg deleted file mode 100644 index e0a235d0cf..0000000000 --- a/src/components/Icons/icons-export/Flat/20/search-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/send-20.svg b/src/components/Icons/icons-export/Flat/20/send-20.svg deleted file mode 100644 index c2c36efc40..0000000000 --- a/src/components/Icons/icons-export/Flat/20/send-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/share-20.svg b/src/components/Icons/icons-export/Flat/20/share-20.svg deleted file mode 100644 index abd038ebe7..0000000000 --- a/src/components/Icons/icons-export/Flat/20/share-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/stop-fill-20.svg b/src/components/Icons/icons-export/Flat/20/stop-fill-20.svg deleted file mode 100644 index 78a4a19a4d..0000000000 --- a/src/components/Icons/icons-export/Flat/20/stop-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/thread-20.svg b/src/components/Icons/icons-export/Flat/20/thread-20.svg deleted file mode 100644 index 5c5851940e..0000000000 --- a/src/components/Icons/icons-export/Flat/20/thread-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/thread-fill-20.svg b/src/components/Icons/icons-export/Flat/20/thread-fill-20.svg deleted file mode 100644 index dc0e831113..0000000000 --- a/src/components/Icons/icons-export/Flat/20/thread-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/translate-20.svg b/src/components/Icons/icons-export/Flat/20/translate-20.svg deleted file mode 100644 index b575865319..0000000000 --- a/src/components/Icons/icons-export/Flat/20/translate-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/trophy-20.svg b/src/components/Icons/icons-export/Flat/20/trophy-20.svg deleted file mode 100644 index 37f78a881a..0000000000 --- a/src/components/Icons/icons-export/Flat/20/trophy-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/unpin-20.svg b/src/components/Icons/icons-export/Flat/20/unpin-20.svg deleted file mode 100644 index 7b2d42823d..0000000000 --- a/src/components/Icons/icons-export/Flat/20/unpin-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/unsave-20.svg b/src/components/Icons/icons-export/Flat/20/unsave-20.svg deleted file mode 100644 index 5041e4bbb1..0000000000 --- a/src/components/Icons/icons-export/Flat/20/unsave-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/upload-20.svg b/src/components/Icons/icons-export/Flat/20/upload-20.svg deleted file mode 100644 index b40553977a..0000000000 --- a/src/components/Icons/icons-export/Flat/20/upload-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/user-20.svg b/src/components/Icons/icons-export/Flat/20/user-20.svg deleted file mode 100644 index 2df8636b24..0000000000 --- a/src/components/Icons/icons-export/Flat/20/user-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/user-add-20.svg b/src/components/Icons/icons-export/Flat/20/user-add-20.svg deleted file mode 100644 index 40936f67b7..0000000000 --- a/src/components/Icons/icons-export/Flat/20/user-add-20.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/user-check-20.svg b/src/components/Icons/icons-export/Flat/20/user-check-20.svg deleted file mode 100644 index e75425c9a9..0000000000 --- a/src/components/Icons/icons-export/Flat/20/user-check-20.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/user-remove-20.svg b/src/components/Icons/icons-export/Flat/20/user-remove-20.svg deleted file mode 100644 index c7df63efb8..0000000000 --- a/src/components/Icons/icons-export/Flat/20/user-remove-20.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/users-20.svg b/src/components/Icons/icons-export/Flat/20/users-20.svg deleted file mode 100644 index 750987bd93..0000000000 --- a/src/components/Icons/icons-export/Flat/20/users-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/video-20.svg b/src/components/Icons/icons-export/Flat/20/video-20.svg deleted file mode 100644 index bdded5e91e..0000000000 --- a/src/components/Icons/icons-export/Flat/20/video-20.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/video-fill-20.svg b/src/components/Icons/icons-export/Flat/20/video-fill-20.svg deleted file mode 100644 index f575817e43..0000000000 --- a/src/components/Icons/icons-export/Flat/20/video-fill-20.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/20/voice-20.svg b/src/components/Icons/icons-export/Flat/20/voice-20.svg deleted file mode 100644 index 017095c82f..0000000000 --- a/src/components/Icons/icons-export/Flat/20/voice-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/voice-fill-20.svg b/src/components/Icons/icons-export/Flat/20/voice-fill-20.svg deleted file mode 100644 index a7c251dabd..0000000000 --- a/src/components/Icons/icons-export/Flat/20/voice-fill-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/20/xmark-20.svg b/src/components/Icons/icons-export/Flat/20/xmark-20.svg deleted file mode 100644 index 715ac01af6..0000000000 --- a/src/components/Icons/icons-export/Flat/20/xmark-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/account-32.svg b/src/components/Icons/icons-export/Flat/32/account-32.svg deleted file mode 100644 index 964edaa4bf..0000000000 --- a/src/components/Icons/icons-export/Flat/32/account-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/archive-32.svg b/src/components/Icons/icons-export/Flat/32/archive-32.svg deleted file mode 100644 index 2010c222a8..0000000000 --- a/src/components/Icons/icons-export/Flat/32/archive-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg deleted file mode 100644 index 3a2e1bf3ae..0000000000 --- a/src/components/Icons/icons-export/Flat/32/arrow-down-circle-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/arrow-left-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-left-32.svg deleted file mode 100644 index d17a519d8d..0000000000 --- a/src/components/Icons/icons-export/Flat/32/arrow-left-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/arrow-up-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-up-32.svg deleted file mode 100644 index 3da94d77d9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/arrow-up-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg b/src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg deleted file mode 100644 index 718a45ce6f..0000000000 --- a/src/components/Icons/icons-export/Flat/32/arrow-up-right-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/attachment-32.svg b/src/components/Icons/icons-export/Flat/32/attachment-32.svg deleted file mode 100644 index 22e3aaebaa..0000000000 --- a/src/components/Icons/icons-export/Flat/32/attachment-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/audio-32.svg b/src/components/Icons/icons-export/Flat/32/audio-32.svg deleted file mode 100644 index bfa72c8ed3..0000000000 --- a/src/components/Icons/icons-export/Flat/32/audio-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/bell-32.svg b/src/components/Icons/icons-export/Flat/32/bell-32.svg deleted file mode 100644 index 72feba5155..0000000000 --- a/src/components/Icons/icons-export/Flat/32/bell-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/bell-off-32.svg b/src/components/Icons/icons-export/Flat/32/bell-off-32.svg deleted file mode 100644 index dfacd85f87..0000000000 --- a/src/components/Icons/icons-export/Flat/32/bell-off-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/bolt-32.svg b/src/components/Icons/icons-export/Flat/32/bolt-32.svg deleted file mode 100644 index db7d066634..0000000000 --- a/src/components/Icons/icons-export/Flat/32/bolt-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/camera-32.svg b/src/components/Icons/icons-export/Flat/32/camera-32.svg deleted file mode 100644 index b62ab4f252..0000000000 --- a/src/components/Icons/icons-export/Flat/32/camera-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/checkmark-32.svg b/src/components/Icons/icons-export/Flat/32/checkmark-32.svg deleted file mode 100644 index 73b0c17454..0000000000 --- a/src/components/Icons/icons-export/Flat/32/checkmark-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/checks-32.svg b/src/components/Icons/icons-export/Flat/32/checks-32.svg deleted file mode 100644 index d683b63857..0000000000 --- a/src/components/Icons/icons-export/Flat/32/checks-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/chevron-down-32.svg b/src/components/Icons/icons-export/Flat/32/chevron-down-32.svg deleted file mode 100644 index ba9e99eff2..0000000000 --- a/src/components/Icons/icons-export/Flat/32/chevron-down-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/chevron-left-32.svg b/src/components/Icons/icons-export/Flat/32/chevron-left-32.svg deleted file mode 100644 index c50908ac82..0000000000 --- a/src/components/Icons/icons-export/Flat/32/chevron-left-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/chevron-right-32.svg b/src/components/Icons/icons-export/Flat/32/chevron-right-32.svg deleted file mode 100644 index 553d60dbd3..0000000000 --- a/src/components/Icons/icons-export/Flat/32/chevron-right-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/command-20.svg b/src/components/Icons/icons-export/Flat/32/command-20.svg deleted file mode 100644 index a4d3f6631b..0000000000 --- a/src/components/Icons/icons-export/Flat/32/command-20.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/copy-32.svg b/src/components/Icons/icons-export/Flat/32/copy-32.svg deleted file mode 100644 index 7439bc95af..0000000000 --- a/src/components/Icons/icons-export/Flat/32/copy-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/delete-.svg b/src/components/Icons/icons-export/Flat/32/delete-.svg deleted file mode 100644 index 2faa9a220f..0000000000 --- a/src/components/Icons/icons-export/Flat/32/delete-.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/edit-32.svg b/src/components/Icons/icons-export/Flat/32/edit-32.svg deleted file mode 100644 index e35af4af00..0000000000 --- a/src/components/Icons/icons-export/Flat/32/edit-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/emoji-.svg b/src/components/Icons/icons-export/Flat/32/emoji-.svg deleted file mode 100644 index 85ed31b8af..0000000000 --- a/src/components/Icons/icons-export/Flat/32/emoji-.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/emoji-add-32.svg b/src/components/Icons/icons-export/Flat/32/emoji-add-32.svg deleted file mode 100644 index 8543dae7ed..0000000000 --- a/src/components/Icons/icons-export/Flat/32/emoji-add-32.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg deleted file mode 100644 index 5897518051..0000000000 --- a/src/components/Icons/icons-export/Flat/32/exclamation-circle-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg deleted file mode 100644 index 772f883f02..0000000000 --- a/src/components/Icons/icons-export/Flat/32/exclamation-mark-32.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg deleted file mode 100644 index b1b374f270..0000000000 --- a/src/components/Icons/icons-export/Flat/32/exclamation-mark-fill-32.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg b/src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg deleted file mode 100644 index 614b3746b9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/exclamation-triangle-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/export-32.svg b/src/components/Icons/icons-export/Flat/32/export-32.svg deleted file mode 100644 index 3e1896b4ba..0000000000 --- a/src/components/Icons/icons-export/Flat/32/export-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/file-32.svg b/src/components/Icons/icons-export/Flat/32/file-32.svg deleted file mode 100644 index ff2d2d3d22..0000000000 --- a/src/components/Icons/icons-export/Flat/32/file-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/flag-32.svg b/src/components/Icons/icons-export/Flat/32/flag-32.svg deleted file mode 100644 index 3ae47bcaf9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/flag-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/folder-32.svg b/src/components/Icons/icons-export/Flat/32/folder-32.svg deleted file mode 100644 index 8c5168d9b9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/folder-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/gallery-32.svg b/src/components/Icons/icons-export/Flat/32/gallery-32.svg deleted file mode 100644 index 3f28a2287f..0000000000 --- a/src/components/Icons/icons-export/Flat/32/gallery-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/giphy-32.svg b/src/components/Icons/icons-export/Flat/32/giphy-32.svg deleted file mode 100644 index 801c42b161..0000000000 --- a/src/components/Icons/icons-export/Flat/32/giphy-32.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/icon-32.svg b/src/components/Icons/icons-export/Flat/32/icon-32.svg deleted file mode 100644 index cd6b8f1b27..0000000000 --- a/src/components/Icons/icons-export/Flat/32/icon-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/image-32.svg b/src/components/Icons/icons-export/Flat/32/image-32.svg deleted file mode 100644 index ca28402bc8..0000000000 --- a/src/components/Icons/icons-export/Flat/32/image-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/imgur-32.svg b/src/components/Icons/icons-export/Flat/32/imgur-32.svg deleted file mode 100644 index 7de20bba08..0000000000 --- a/src/components/Icons/icons-export/Flat/32/imgur-32.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/info-32.svg b/src/components/Icons/icons-export/Flat/32/info-32.svg deleted file mode 100644 index 4e875a4714..0000000000 --- a/src/components/Icons/icons-export/Flat/32/info-32.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/leave-32.svg b/src/components/Icons/icons-export/Flat/32/leave-32.svg deleted file mode 100644 index c77539ce6c..0000000000 --- a/src/components/Icons/icons-export/Flat/32/leave-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/link-32.svg b/src/components/Icons/icons-export/Flat/32/link-32.svg deleted file mode 100644 index 3652c52181..0000000000 --- a/src/components/Icons/icons-export/Flat/32/link-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/loading-32.svg b/src/components/Icons/icons-export/Flat/32/loading-32.svg deleted file mode 100644 index 0dcedc60c3..0000000000 --- a/src/components/Icons/icons-export/Flat/32/loading-32.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Flat/32/location-32.svg b/src/components/Icons/icons-export/Flat/32/location-32.svg deleted file mode 100644 index 558216f29e..0000000000 --- a/src/components/Icons/icons-export/Flat/32/location-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/lock-32.svg b/src/components/Icons/icons-export/Flat/32/lock-32.svg deleted file mode 100644 index 2205482394..0000000000 --- a/src/components/Icons/icons-export/Flat/32/lock-32.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/mention-32.svg b/src/components/Icons/icons-export/Flat/32/mention-32.svg deleted file mode 100644 index 618dc65efd..0000000000 --- a/src/components/Icons/icons-export/Flat/32/mention-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/message-bubble-32.svg b/src/components/Icons/icons-export/Flat/32/message-bubble-32.svg deleted file mode 100644 index c490909ae9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/message-bubble-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg b/src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg deleted file mode 100644 index cdb244c0fb..0000000000 --- a/src/components/Icons/icons-export/Flat/32/message-bubble-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg b/src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg deleted file mode 100644 index e18c5873c5..0000000000 --- a/src/components/Icons/icons-export/Flat/32/message-bubbles-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/minus-32.svg b/src/components/Icons/icons-export/Flat/32/minus-32.svg deleted file mode 100644 index 9d44c9c2bd..0000000000 --- a/src/components/Icons/icons-export/Flat/32/minus-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/minus-circle-32.svg b/src/components/Icons/icons-export/Flat/32/minus-circle-32.svg deleted file mode 100644 index 140aaa0b01..0000000000 --- a/src/components/Icons/icons-export/Flat/32/minus-circle-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/more-32.svg b/src/components/Icons/icons-export/Flat/32/more-32.svg deleted file mode 100644 index ab94b540c8..0000000000 --- a/src/components/Icons/icons-export/Flat/32/more-32.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/mute-32.svg b/src/components/Icons/icons-export/Flat/32/mute-32.svg deleted file mode 100644 index 5d5d1458a6..0000000000 --- a/src/components/Icons/icons-export/Flat/32/mute-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/no-sign-32.svg b/src/components/Icons/icons-export/Flat/32/no-sign-32.svg deleted file mode 100644 index 75a0ff7bb3..0000000000 --- a/src/components/Icons/icons-export/Flat/32/no-sign-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/notification-32.svg b/src/components/Icons/icons-export/Flat/32/notification-32.svg deleted file mode 100644 index e99148df20..0000000000 --- a/src/components/Icons/icons-export/Flat/32/notification-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/pause-fill-32.svg b/src/components/Icons/icons-export/Flat/32/pause-fill-32.svg deleted file mode 100644 index 02273bb02c..0000000000 --- a/src/components/Icons/icons-export/Flat/32/pause-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/pin-32.svg b/src/components/Icons/icons-export/Flat/32/pin-32.svg deleted file mode 100644 index 2b9e1bcd98..0000000000 --- a/src/components/Icons/icons-export/Flat/32/pin-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/play-fill-32.svg b/src/components/Icons/icons-export/Flat/32/play-fill-32.svg deleted file mode 100644 index 800d3d5bb3..0000000000 --- a/src/components/Icons/icons-export/Flat/32/play-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/plus-32-1.svg b/src/components/Icons/icons-export/Flat/32/plus-32-1.svg deleted file mode 100644 index a290cb2fd9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/plus-32-1.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/plus-32.svg b/src/components/Icons/icons-export/Flat/32/plus-32.svg deleted file mode 100644 index a290cb2fd9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/plus-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/poll-32.svg b/src/components/Icons/icons-export/Flat/32/poll-32.svg deleted file mode 100644 index 3013f5b013..0000000000 --- a/src/components/Icons/icons-export/Flat/32/poll-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/quote-.svg b/src/components/Icons/icons-export/Flat/32/quote-.svg deleted file mode 100644 index 72ffa94c5f..0000000000 --- a/src/components/Icons/icons-export/Flat/32/quote-.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/refresh-32.svg b/src/components/Icons/icons-export/Flat/32/refresh-32.svg deleted file mode 100644 index 4732c55364..0000000000 --- a/src/components/Icons/icons-export/Flat/32/refresh-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/reorder-32.svg b/src/components/Icons/icons-export/Flat/32/reorder-32.svg deleted file mode 100644 index 20524cace5..0000000000 --- a/src/components/Icons/icons-export/Flat/32/reorder-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/reply-32.svg b/src/components/Icons/icons-export/Flat/32/reply-32.svg deleted file mode 100644 index 70868790b1..0000000000 --- a/src/components/Icons/icons-export/Flat/32/reply-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/retry-32.svg b/src/components/Icons/icons-export/Flat/32/retry-32.svg deleted file mode 100644 index df4fce3188..0000000000 --- a/src/components/Icons/icons-export/Flat/32/retry-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/save-32.svg b/src/components/Icons/icons-export/Flat/32/save-32.svg deleted file mode 100644 index bfb57b5183..0000000000 --- a/src/components/Icons/icons-export/Flat/32/save-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/search-32.svg b/src/components/Icons/icons-export/Flat/32/search-32.svg deleted file mode 100644 index 6d0f6262c4..0000000000 --- a/src/components/Icons/icons-export/Flat/32/search-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/send-32.svg b/src/components/Icons/icons-export/Flat/32/send-32.svg deleted file mode 100644 index 83f5b34e53..0000000000 --- a/src/components/Icons/icons-export/Flat/32/send-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/share-32.svg b/src/components/Icons/icons-export/Flat/32/share-32.svg deleted file mode 100644 index 8417952462..0000000000 --- a/src/components/Icons/icons-export/Flat/32/share-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/sidebar-32.svg b/src/components/Icons/icons-export/Flat/32/sidebar-32.svg deleted file mode 100644 index 78dd9d01e3..0000000000 --- a/src/components/Icons/icons-export/Flat/32/sidebar-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/stop-fill-32.svg b/src/components/Icons/icons-export/Flat/32/stop-fill-32.svg deleted file mode 100644 index ac365149db..0000000000 --- a/src/components/Icons/icons-export/Flat/32/stop-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/thread-32.svg b/src/components/Icons/icons-export/Flat/32/thread-32.svg deleted file mode 100644 index d34ad8239d..0000000000 --- a/src/components/Icons/icons-export/Flat/32/thread-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/thread-fill-32.svg b/src/components/Icons/icons-export/Flat/32/thread-fill-32.svg deleted file mode 100644 index d5746e4b29..0000000000 --- a/src/components/Icons/icons-export/Flat/32/thread-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/translate-32.svg b/src/components/Icons/icons-export/Flat/32/translate-32.svg deleted file mode 100644 index ac0c1e6999..0000000000 --- a/src/components/Icons/icons-export/Flat/32/translate-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/trophy-32.svg b/src/components/Icons/icons-export/Flat/32/trophy-32.svg deleted file mode 100644 index 39172bd29c..0000000000 --- a/src/components/Icons/icons-export/Flat/32/trophy-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/unlock-32.svg b/src/components/Icons/icons-export/Flat/32/unlock-32.svg deleted file mode 100644 index 672c1eb510..0000000000 --- a/src/components/Icons/icons-export/Flat/32/unlock-32.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/unpin-32.svg b/src/components/Icons/icons-export/Flat/32/unpin-32.svg deleted file mode 100644 index 245a33639d..0000000000 --- a/src/components/Icons/icons-export/Flat/32/unpin-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/unsave-32.svg b/src/components/Icons/icons-export/Flat/32/unsave-32.svg deleted file mode 100644 index 1890d265e9..0000000000 --- a/src/components/Icons/icons-export/Flat/32/unsave-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/upload-32.svg b/src/components/Icons/icons-export/Flat/32/upload-32.svg deleted file mode 100644 index 2d76d63191..0000000000 --- a/src/components/Icons/icons-export/Flat/32/upload-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/user-32.svg b/src/components/Icons/icons-export/Flat/32/user-32.svg deleted file mode 100644 index def0366880..0000000000 --- a/src/components/Icons/icons-export/Flat/32/user-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/user-add-32.svg b/src/components/Icons/icons-export/Flat/32/user-add-32.svg deleted file mode 100644 index d972f5ad77..0000000000 --- a/src/components/Icons/icons-export/Flat/32/user-add-32.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/user-check-32.svg b/src/components/Icons/icons-export/Flat/32/user-check-32.svg deleted file mode 100644 index 09c8708d7c..0000000000 --- a/src/components/Icons/icons-export/Flat/32/user-check-32.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/user-remove-32.svg b/src/components/Icons/icons-export/Flat/32/user-remove-32.svg deleted file mode 100644 index 0edb137d81..0000000000 --- a/src/components/Icons/icons-export/Flat/32/user-remove-32.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/users-32.svg b/src/components/Icons/icons-export/Flat/32/users-32.svg deleted file mode 100644 index 8555133ffd..0000000000 --- a/src/components/Icons/icons-export/Flat/32/users-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/video-32.svg b/src/components/Icons/icons-export/Flat/32/video-32.svg deleted file mode 100644 index 58ec572808..0000000000 --- a/src/components/Icons/icons-export/Flat/32/video-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/video-fill-32.svg b/src/components/Icons/icons-export/Flat/32/video-fill-32.svg deleted file mode 100644 index 2273cc81a2..0000000000 --- a/src/components/Icons/icons-export/Flat/32/video-fill-32.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Flat/32/voice-32.svg b/src/components/Icons/icons-export/Flat/32/voice-32.svg deleted file mode 100644 index f0eb240cc0..0000000000 --- a/src/components/Icons/icons-export/Flat/32/voice-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/voice-fill-32.svg b/src/components/Icons/icons-export/Flat/32/voice-fill-32.svg deleted file mode 100644 index 966f56404b..0000000000 --- a/src/components/Icons/icons-export/Flat/32/voice-fill-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/x-circle-32.svg b/src/components/Icons/icons-export/Flat/32/x-circle-32.svg deleted file mode 100644 index a5ef8925cf..0000000000 --- a/src/components/Icons/icons-export/Flat/32/x-circle-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Flat/32/xmark-32.svg b/src/components/Icons/icons-export/Flat/32/xmark-32.svg deleted file mode 100644 index 160ca23bbc..0000000000 --- a/src/components/Icons/icons-export/Flat/32/xmark-32.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/Mention.svg b/src/components/Icons/icons-export/Line/Mention.svg deleted file mode 100644 index b023d269d7..0000000000 --- a/src/components/Icons/icons-export/Line/Mention.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/Retry.svg b/src/components/Icons/icons-export/Line/Retry.svg deleted file mode 100644 index d38cbaf13b..0000000000 --- a/src/components/Icons/icons-export/Line/Retry.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/account.svg b/src/components/Icons/icons-export/Line/account.svg deleted file mode 100644 index 929c61ca3b..0000000000 --- a/src/components/Icons/icons-export/Line/account.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/archive.svg b/src/components/Icons/icons-export/Line/archive.svg deleted file mode 100644 index a171c24343..0000000000 --- a/src/components/Icons/icons-export/Line/archive.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/arrow-down-circle.svg b/src/components/Icons/icons-export/Line/arrow-down-circle.svg deleted file mode 100644 index ef54878bbd..0000000000 --- a/src/components/Icons/icons-export/Line/arrow-down-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/arrow-left.svg b/src/components/Icons/icons-export/Line/arrow-left.svg deleted file mode 100644 index 5442f6f41c..0000000000 --- a/src/components/Icons/icons-export/Line/arrow-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/arrow-up-right.svg b/src/components/Icons/icons-export/Line/arrow-up-right.svg deleted file mode 100644 index 910d882db0..0000000000 --- a/src/components/Icons/icons-export/Line/arrow-up-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/arrow-up.svg b/src/components/Icons/icons-export/Line/arrow-up.svg deleted file mode 100644 index d18ec74f38..0000000000 --- a/src/components/Icons/icons-export/Line/arrow-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/attachment.svg b/src/components/Icons/icons-export/Line/attachment.svg deleted file mode 100644 index 025848818e..0000000000 --- a/src/components/Icons/icons-export/Line/attachment.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/audio.svg b/src/components/Icons/icons-export/Line/audio.svg deleted file mode 100644 index 6b7fbb6c96..0000000000 --- a/src/components/Icons/icons-export/Line/audio.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/bell-off.svg b/src/components/Icons/icons-export/Line/bell-off.svg deleted file mode 100644 index 0c418e96f1..0000000000 --- a/src/components/Icons/icons-export/Line/bell-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/bell.svg b/src/components/Icons/icons-export/Line/bell.svg deleted file mode 100644 index 67d00038c4..0000000000 --- a/src/components/Icons/icons-export/Line/bell.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/bolt.svg b/src/components/Icons/icons-export/Line/bolt.svg deleted file mode 100644 index 785ee09ae1..0000000000 --- a/src/components/Icons/icons-export/Line/bolt.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/camera.svg b/src/components/Icons/icons-export/Line/camera.svg deleted file mode 100644 index 3638013f66..0000000000 --- a/src/components/Icons/icons-export/Line/camera.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Line/checkmark.svg b/src/components/Icons/icons-export/Line/checkmark.svg deleted file mode 100644 index c00e3bff4e..0000000000 --- a/src/components/Icons/icons-export/Line/checkmark.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/checks.svg b/src/components/Icons/icons-export/Line/checks.svg deleted file mode 100644 index cfad881ce0..0000000000 --- a/src/components/Icons/icons-export/Line/checks.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/chevron-down.svg b/src/components/Icons/icons-export/Line/chevron-down.svg deleted file mode 100644 index fa5e13ff62..0000000000 --- a/src/components/Icons/icons-export/Line/chevron-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/chevron-left.svg b/src/components/Icons/icons-export/Line/chevron-left.svg deleted file mode 100644 index 6c66b57316..0000000000 --- a/src/components/Icons/icons-export/Line/chevron-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/chevron-right.svg b/src/components/Icons/icons-export/Line/chevron-right.svg deleted file mode 100644 index ca34765882..0000000000 --- a/src/components/Icons/icons-export/Line/chevron-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/clock.svg b/src/components/Icons/icons-export/Line/clock.svg deleted file mode 100644 index fc1be19be2..0000000000 --- a/src/components/Icons/icons-export/Line/clock.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/code.svg b/src/components/Icons/icons-export/Line/code.svg deleted file mode 100644 index d410b521e7..0000000000 --- a/src/components/Icons/icons-export/Line/code.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/command.svg b/src/components/Icons/icons-export/Line/command.svg deleted file mode 100644 index 5720ac5e46..0000000000 --- a/src/components/Icons/icons-export/Line/command.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/copy.svg b/src/components/Icons/icons-export/Line/copy.svg deleted file mode 100644 index 7894e599c4..0000000000 --- a/src/components/Icons/icons-export/Line/copy.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/delete.svg b/src/components/Icons/icons-export/Line/delete.svg deleted file mode 100644 index ee9ce8a33a..0000000000 --- a/src/components/Icons/icons-export/Line/delete.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/edit.svg b/src/components/Icons/icons-export/Line/edit.svg deleted file mode 100644 index e8128d9b49..0000000000 --- a/src/components/Icons/icons-export/Line/edit.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/emoji-add-1.svg b/src/components/Icons/icons-export/Line/emoji-add-1.svg deleted file mode 100644 index a0bacdaa70..0000000000 --- a/src/components/Icons/icons-export/Line/emoji-add-1.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/components/Icons/icons-export/Line/emoji-add.svg b/src/components/Icons/icons-export/Line/emoji-add.svg deleted file mode 100644 index 78df48ca64..0000000000 --- a/src/components/Icons/icons-export/Line/emoji-add.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/emoji.svg b/src/components/Icons/icons-export/Line/emoji.svg deleted file mode 100644 index 55f5f8794d..0000000000 --- a/src/components/Icons/icons-export/Line/emoji.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Line/exclamation-circle-fill.svg b/src/components/Icons/icons-export/Line/exclamation-circle-fill.svg deleted file mode 100644 index 0d561e2332..0000000000 --- a/src/components/Icons/icons-export/Line/exclamation-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/exclamation-circle.svg b/src/components/Icons/icons-export/Line/exclamation-circle.svg deleted file mode 100644 index de802faa32..0000000000 --- a/src/components/Icons/icons-export/Line/exclamation-circle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Line/exclamation-mark-fill.svg b/src/components/Icons/icons-export/Line/exclamation-mark-fill.svg deleted file mode 100644 index 39fffd8432..0000000000 --- a/src/components/Icons/icons-export/Line/exclamation-mark-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg b/src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg deleted file mode 100644 index d8ceab2b5a..0000000000 --- a/src/components/Icons/icons-export/Line/exclamation-triangle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/export.svg b/src/components/Icons/icons-export/Line/export.svg deleted file mode 100644 index 23cf51bbf8..0000000000 --- a/src/components/Icons/icons-export/Line/export.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/file.svg b/src/components/Icons/icons-export/Line/file.svg deleted file mode 100644 index ce658b2443..0000000000 --- a/src/components/Icons/icons-export/Line/file.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/flag.svg b/src/components/Icons/icons-export/Line/flag.svg deleted file mode 100644 index d084c2351b..0000000000 --- a/src/components/Icons/icons-export/Line/flag.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/folder.svg b/src/components/Icons/icons-export/Line/folder.svg deleted file mode 100644 index 7b210b46ac..0000000000 --- a/src/components/Icons/icons-export/Line/folder.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/gallery.svg b/src/components/Icons/icons-export/Line/gallery.svg deleted file mode 100644 index 86573fce6a..0000000000 --- a/src/components/Icons/icons-export/Line/gallery.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/components/Icons/icons-export/Line/giphy.svg b/src/components/Icons/icons-export/Line/giphy.svg deleted file mode 100644 index 71fdf81fb1..0000000000 --- a/src/components/Icons/icons-export/Line/giphy.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Line/image.svg b/src/components/Icons/icons-export/Line/image.svg deleted file mode 100644 index 719cbe37d2..0000000000 --- a/src/components/Icons/icons-export/Line/image.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/imgur.svg b/src/components/Icons/icons-export/Line/imgur.svg deleted file mode 100644 index 0258687aca..0000000000 --- a/src/components/Icons/icons-export/Line/imgur.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Line/info.svg b/src/components/Icons/icons-export/Line/info.svg deleted file mode 100644 index 1282e1fb8f..0000000000 --- a/src/components/Icons/icons-export/Line/info.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Line/leave.svg b/src/components/Icons/icons-export/Line/leave.svg deleted file mode 100644 index 2a88912a38..0000000000 --- a/src/components/Icons/icons-export/Line/leave.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/link.svg b/src/components/Icons/icons-export/Line/link.svg deleted file mode 100644 index 34f08c8ddd..0000000000 --- a/src/components/Icons/icons-export/Line/link.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/loading.svg b/src/components/Icons/icons-export/Line/loading.svg deleted file mode 100644 index 5e7bc706b0..0000000000 --- a/src/components/Icons/icons-export/Line/loading.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Line/location.svg b/src/components/Icons/icons-export/Line/location.svg deleted file mode 100644 index 3025df2809..0000000000 --- a/src/components/Icons/icons-export/Line/location.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/Icons/icons-export/Line/lock.svg b/src/components/Icons/icons-export/Line/lock.svg deleted file mode 100644 index 6d57ca2856..0000000000 --- a/src/components/Icons/icons-export/Line/lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Line/message-bubble-fill.svg b/src/components/Icons/icons-export/Line/message-bubble-fill.svg deleted file mode 100644 index 46a10bd82e..0000000000 --- a/src/components/Icons/icons-export/Line/message-bubble-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/message-bubble.svg b/src/components/Icons/icons-export/Line/message-bubble.svg deleted file mode 100644 index 8a236477e1..0000000000 --- a/src/components/Icons/icons-export/Line/message-bubble.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/message-bubbles.svg b/src/components/Icons/icons-export/Line/message-bubbles.svg deleted file mode 100644 index c773c27f00..0000000000 --- a/src/components/Icons/icons-export/Line/message-bubbles.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/minus-1.svg b/src/components/Icons/icons-export/Line/minus-1.svg deleted file mode 100644 index fd3c77469b..0000000000 --- a/src/components/Icons/icons-export/Line/minus-1.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/minus-circle.svg b/src/components/Icons/icons-export/Line/minus-circle.svg deleted file mode 100644 index 6d01e86b4f..0000000000 --- a/src/components/Icons/icons-export/Line/minus-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/minus.svg b/src/components/Icons/icons-export/Line/minus.svg deleted file mode 100644 index fd3c77469b..0000000000 --- a/src/components/Icons/icons-export/Line/minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/more.svg b/src/components/Icons/icons-export/Line/more.svg deleted file mode 100644 index dd66fec259..0000000000 --- a/src/components/Icons/icons-export/Line/more.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Line/mute.svg b/src/components/Icons/icons-export/Line/mute.svg deleted file mode 100644 index e4d402f4f4..0000000000 --- a/src/components/Icons/icons-export/Line/mute.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/no-sign.svg b/src/components/Icons/icons-export/Line/no-sign.svg deleted file mode 100644 index 00bfd22151..0000000000 --- a/src/components/Icons/icons-export/Line/no-sign.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/notification.svg b/src/components/Icons/icons-export/Line/notification.svg deleted file mode 100644 index ce9b2d3420..0000000000 --- a/src/components/Icons/icons-export/Line/notification.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/pause-fill.svg b/src/components/Icons/icons-export/Line/pause-fill.svg deleted file mode 100644 index e058d1798d..0000000000 --- a/src/components/Icons/icons-export/Line/pause-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/pin.svg b/src/components/Icons/icons-export/Line/pin.svg deleted file mode 100644 index 2ddac775f8..0000000000 --- a/src/components/Icons/icons-export/Line/pin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/play-fill.svg b/src/components/Icons/icons-export/Line/play-fill.svg deleted file mode 100644 index 5897b389fe..0000000000 --- a/src/components/Icons/icons-export/Line/play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/plus.svg b/src/components/Icons/icons-export/Line/plus.svg deleted file mode 100644 index c3d842ad64..0000000000 --- a/src/components/Icons/icons-export/Line/plus.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/poll.svg b/src/components/Icons/icons-export/Line/poll.svg deleted file mode 100644 index 134b18fb05..0000000000 --- a/src/components/Icons/icons-export/Line/poll.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/presentation.svg b/src/components/Icons/icons-export/Line/presentation.svg deleted file mode 100644 index d824d9235e..0000000000 --- a/src/components/Icons/icons-export/Line/presentation.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/quote.svg b/src/components/Icons/icons-export/Line/quote.svg deleted file mode 100644 index 3a6b9f5258..0000000000 --- a/src/components/Icons/icons-export/Line/quote.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/refresh.svg b/src/components/Icons/icons-export/Line/refresh.svg deleted file mode 100644 index 85a7acd295..0000000000 --- a/src/components/Icons/icons-export/Line/refresh.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/reorder.svg b/src/components/Icons/icons-export/Line/reorder.svg deleted file mode 100644 index 1be07317ef..0000000000 --- a/src/components/Icons/icons-export/Line/reorder.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/reply.svg b/src/components/Icons/icons-export/Line/reply.svg deleted file mode 100644 index a527ef2f77..0000000000 --- a/src/components/Icons/icons-export/Line/reply.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/save.svg b/src/components/Icons/icons-export/Line/save.svg deleted file mode 100644 index 06b1298d69..0000000000 --- a/src/components/Icons/icons-export/Line/save.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/search.svg b/src/components/Icons/icons-export/Line/search.svg deleted file mode 100644 index 1b27023458..0000000000 --- a/src/components/Icons/icons-export/Line/search.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/send.svg b/src/components/Icons/icons-export/Line/send.svg deleted file mode 100644 index 796dd25a0a..0000000000 --- a/src/components/Icons/icons-export/Line/send.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/share.svg b/src/components/Icons/icons-export/Line/share.svg deleted file mode 100644 index 9325e1a55e..0000000000 --- a/src/components/Icons/icons-export/Line/share.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/sidebar.svg b/src/components/Icons/icons-export/Line/sidebar.svg deleted file mode 100644 index 6ae217525a..0000000000 --- a/src/components/Icons/icons-export/Line/sidebar.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/spreadsheet.svg b/src/components/Icons/icons-export/Line/spreadsheet.svg deleted file mode 100644 index ae44650901..0000000000 --- a/src/components/Icons/icons-export/Line/spreadsheet.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/stop-fill.svg b/src/components/Icons/icons-export/Line/stop-fill.svg deleted file mode 100644 index 78a4a19a4d..0000000000 --- a/src/components/Icons/icons-export/Line/stop-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/thread-fill.svg b/src/components/Icons/icons-export/Line/thread-fill.svg deleted file mode 100644 index dc0e831113..0000000000 --- a/src/components/Icons/icons-export/Line/thread-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/thread.svg b/src/components/Icons/icons-export/Line/thread.svg deleted file mode 100644 index b94bd9f6ab..0000000000 --- a/src/components/Icons/icons-export/Line/thread.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/translate.svg b/src/components/Icons/icons-export/Line/translate.svg deleted file mode 100644 index fcd72d1261..0000000000 --- a/src/components/Icons/icons-export/Line/translate.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/trophy.svg b/src/components/Icons/icons-export/Line/trophy.svg deleted file mode 100644 index ba452e761a..0000000000 --- a/src/components/Icons/icons-export/Line/trophy.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/unlock.svg b/src/components/Icons/icons-export/Line/unlock.svg deleted file mode 100644 index 141def3b71..0000000000 --- a/src/components/Icons/icons-export/Line/unlock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/components/Icons/icons-export/Line/unpin.svg b/src/components/Icons/icons-export/Line/unpin.svg deleted file mode 100644 index d05922caed..0000000000 --- a/src/components/Icons/icons-export/Line/unpin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/unsave.svg b/src/components/Icons/icons-export/Line/unsave.svg deleted file mode 100644 index afffbcfd56..0000000000 --- a/src/components/Icons/icons-export/Line/unsave.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/upload.svg b/src/components/Icons/icons-export/Line/upload.svg deleted file mode 100644 index 7d893f2f5c..0000000000 --- a/src/components/Icons/icons-export/Line/upload.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/user-add.svg b/src/components/Icons/icons-export/Line/user-add.svg deleted file mode 100644 index 6d27d53ab8..0000000000 --- a/src/components/Icons/icons-export/Line/user-add.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Line/user-check.svg b/src/components/Icons/icons-export/Line/user-check.svg deleted file mode 100644 index 54d4d4cda5..0000000000 --- a/src/components/Icons/icons-export/Line/user-check.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Line/user-remove.svg b/src/components/Icons/icons-export/Line/user-remove.svg deleted file mode 100644 index f688b0f7e5..0000000000 --- a/src/components/Icons/icons-export/Line/user-remove.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Line/user.svg b/src/components/Icons/icons-export/Line/user.svg deleted file mode 100644 index 14d2b1ec89..0000000000 --- a/src/components/Icons/icons-export/Line/user.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/users.svg b/src/components/Icons/icons-export/Line/users.svg deleted file mode 100644 index 177c35aff9..0000000000 --- a/src/components/Icons/icons-export/Line/users.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/video-fill.svg b/src/components/Icons/icons-export/Line/video-fill.svg deleted file mode 100644 index 8fd6343895..0000000000 --- a/src/components/Icons/icons-export/Line/video-fill.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Line/video.svg b/src/components/Icons/icons-export/Line/video.svg deleted file mode 100644 index 79991805ca..0000000000 --- a/src/components/Icons/icons-export/Line/video.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/components/Icons/icons-export/Line/voice-fill.svg b/src/components/Icons/icons-export/Line/voice-fill.svg deleted file mode 100644 index 80662e29b0..0000000000 --- a/src/components/Icons/icons-export/Line/voice-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/voice.svg b/src/components/Icons/icons-export/Line/voice.svg deleted file mode 100644 index 444bf45dfc..0000000000 --- a/src/components/Icons/icons-export/Line/voice.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/x-circle.svg b/src/components/Icons/icons-export/Line/x-circle.svg deleted file mode 100644 index 0ed9ac25d0..0000000000 --- a/src/components/Icons/icons-export/Line/x-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/components/Icons/icons-export/Line/xmark.svg b/src/components/Icons/icons-export/Line/xmark.svg deleted file mode 100644 index 02c44492b9..0000000000 --- a/src/components/Icons/icons-export/Line/xmark.svg +++ /dev/null @@ -1,3 +0,0 @@ - - -