From 177f740d1fca8e08a47b86d14151cf9687425408 Mon Sep 17 00:00:00 2001 From: Bonn Date: Wed, 24 Jan 2024 15:26:42 +0700 Subject: [PATCH] fix: remove unused files and fix types --- readme.md | 4 +- src/core/components/Files/File.tsx | 2 +- .../components/Uploaders/File/StyledFile.tsx | 2 +- src/icons/ArrowLeft.tsx | 9 - src/icons/ArrowRight.tsx | 21 -- src/icons/Balloon.tsx | 35 --- src/icons/Ban.tsx | 10 - src/icons/Camera.tsx | 8 - src/icons/Category.tsx | 22 -- src/icons/Check.tsx | 9 - src/icons/CheckCircle.tsx | 9 - src/icons/ChevronDown.tsx | 9 - src/icons/ChevronLeft.tsx | 11 - src/icons/ChevronRight.tsx | 11 - src/icons/CircleRemove.tsx | 28 --- src/icons/Close.tsx | 3 - src/icons/Comment.tsx | 9 - src/icons/Community.tsx | 22 -- src/icons/CommunityAlt.tsx | 59 ----- src/icons/CommunityCoverPicture.tsx | 176 -------------- src/icons/CreateChat.tsx | 9 - src/icons/Dots.tsx | 11 - src/icons/EllipsisH.tsx | 8 - src/icons/EllipsisV.tsx | 8 - src/icons/EmptyFeed.tsx | 21 -- src/icons/EmptyImageGallery.tsx | 16 -- src/icons/EmptyLivestreamGallery.tsx | 16 -- src/icons/EmptyVideoGallery.tsx | 16 -- src/icons/ExclamationCircle.tsx | 9 - src/icons/FileAttachment.tsx | 8 - src/icons/Globe.tsx | 9 - src/icons/ImageAttachment.tsx | 8 - src/icons/LivestreamCover.tsx | 223 ------------------ src/icons/Lock.tsx | 8 - src/icons/MagicWand.tsx | 12 - src/icons/Message.tsx | 9 - src/icons/Minus.tsx | 21 -- src/icons/MinusCircle.tsx | 9 - src/icons/Newspaper.tsx | 9 - src/icons/NewspaperLight.tsx | 9 - src/icons/Pencil.tsx | 9 - src/icons/Pending.tsx | 35 --- src/icons/Play.tsx | 19 -- src/icons/PlayCircle.tsx | 8 - src/icons/Plus.tsx | 9 - src/icons/Poll.tsx | 29 --- src/icons/Remove.tsx | 11 - src/icons/Reply.tsx | 9 - src/icons/Save.tsx | 9 - src/icons/Search.tsx | 9 - src/icons/SendMessage.tsx | 9 - src/icons/Shield.tsx | 9 - src/icons/Sky.tsx | 20 -- src/icons/SolarSystem.tsx | 9 - src/icons/SortDown.tsx | 9 - src/icons/Tab.tsx | 21 -- src/icons/ThumbsUp.tsx | 9 - src/icons/Trash.tsx | 9 - src/icons/UnknownPost.tsx | 27 --- src/icons/User.tsx | 26 -- src/icons/UserPlus.tsx | 9 - src/icons/UserRegular.tsx | 9 - src/icons/Verified.tsx | 9 - src/icons/VideoAttachment.tsx | 16 -- src/icons/files/Audio.jsx | 15 -- src/icons/files/Avi.jsx | 13 - src/icons/files/Csv.jsx | 15 -- src/icons/files/Default.jsx | 15 -- src/icons/files/Doc.jsx | 15 -- src/icons/files/Exe.jsx | 13 - src/icons/files/File.jsx | 35 --- src/icons/files/Html.jsx | 15 -- src/icons/files/Img.jsx | 25 -- src/icons/files/Mov.jsx | 13 - src/icons/files/Mp3.jsx | 15 -- src/icons/files/Mp4.jsx | 13 - src/icons/files/Mpeg.jsx | 13 - src/icons/files/Pdf.jsx | 15 -- src/icons/files/Ppt.jsx | 21 -- src/icons/files/Ppx.jsx | 19 -- src/icons/files/Rar.jsx | 31 --- src/icons/files/Txt.jsx | 15 -- src/icons/files/Xls.jsx | 15 -- src/icons/files/Zip.jsx | 15 -- src/icons/files/index.jsx | 74 ------ src/icons/index.jsx | 84 ------- .../components/LoadMoreWrapper/styles.tsx | 2 +- .../category/CategoryChip/UICategoryChip.tsx | 2 +- 88 files changed, 6 insertions(+), 1738 deletions(-) delete mode 100644 src/icons/ArrowLeft.tsx delete mode 100644 src/icons/ArrowRight.tsx delete mode 100644 src/icons/Balloon.tsx delete mode 100644 src/icons/Ban.tsx delete mode 100644 src/icons/Camera.tsx delete mode 100644 src/icons/Category.tsx delete mode 100644 src/icons/Check.tsx delete mode 100644 src/icons/CheckCircle.tsx delete mode 100644 src/icons/ChevronDown.tsx delete mode 100644 src/icons/ChevronLeft.tsx delete mode 100644 src/icons/ChevronRight.tsx delete mode 100644 src/icons/CircleRemove.tsx delete mode 100644 src/icons/Close.tsx delete mode 100644 src/icons/Comment.tsx delete mode 100644 src/icons/Community.tsx delete mode 100644 src/icons/CommunityAlt.tsx delete mode 100644 src/icons/CommunityCoverPicture.tsx delete mode 100644 src/icons/CreateChat.tsx delete mode 100644 src/icons/Dots.tsx delete mode 100644 src/icons/EllipsisH.tsx delete mode 100644 src/icons/EllipsisV.tsx delete mode 100644 src/icons/EmptyFeed.tsx delete mode 100644 src/icons/EmptyImageGallery.tsx delete mode 100644 src/icons/EmptyLivestreamGallery.tsx delete mode 100644 src/icons/EmptyVideoGallery.tsx delete mode 100644 src/icons/ExclamationCircle.tsx delete mode 100644 src/icons/FileAttachment.tsx delete mode 100644 src/icons/Globe.tsx delete mode 100644 src/icons/ImageAttachment.tsx delete mode 100644 src/icons/LivestreamCover.tsx delete mode 100644 src/icons/Lock.tsx delete mode 100644 src/icons/MagicWand.tsx delete mode 100644 src/icons/Message.tsx delete mode 100644 src/icons/Minus.tsx delete mode 100644 src/icons/MinusCircle.tsx delete mode 100644 src/icons/Newspaper.tsx delete mode 100644 src/icons/NewspaperLight.tsx delete mode 100644 src/icons/Pencil.tsx delete mode 100644 src/icons/Pending.tsx delete mode 100644 src/icons/Play.tsx delete mode 100644 src/icons/PlayCircle.tsx delete mode 100644 src/icons/Plus.tsx delete mode 100644 src/icons/Poll.tsx delete mode 100644 src/icons/Remove.tsx delete mode 100644 src/icons/Reply.tsx delete mode 100644 src/icons/Save.tsx delete mode 100644 src/icons/Search.tsx delete mode 100644 src/icons/SendMessage.tsx delete mode 100644 src/icons/Shield.tsx delete mode 100644 src/icons/Sky.tsx delete mode 100644 src/icons/SolarSystem.tsx delete mode 100644 src/icons/SortDown.tsx delete mode 100644 src/icons/Tab.tsx delete mode 100644 src/icons/ThumbsUp.tsx delete mode 100644 src/icons/Trash.tsx delete mode 100644 src/icons/UnknownPost.tsx delete mode 100644 src/icons/User.tsx delete mode 100644 src/icons/UserPlus.tsx delete mode 100644 src/icons/UserRegular.tsx delete mode 100644 src/icons/Verified.tsx delete mode 100644 src/icons/VideoAttachment.tsx delete mode 100644 src/icons/files/Audio.jsx delete mode 100644 src/icons/files/Avi.jsx delete mode 100644 src/icons/files/Csv.jsx delete mode 100644 src/icons/files/Default.jsx delete mode 100644 src/icons/files/Doc.jsx delete mode 100644 src/icons/files/Exe.jsx delete mode 100644 src/icons/files/File.jsx delete mode 100644 src/icons/files/Html.jsx delete mode 100644 src/icons/files/Img.jsx delete mode 100644 src/icons/files/Mov.jsx delete mode 100644 src/icons/files/Mp3.jsx delete mode 100644 src/icons/files/Mp4.jsx delete mode 100644 src/icons/files/Mpeg.jsx delete mode 100644 src/icons/files/Pdf.jsx delete mode 100644 src/icons/files/Ppt.jsx delete mode 100644 src/icons/files/Ppx.jsx delete mode 100644 src/icons/files/Rar.jsx delete mode 100644 src/icons/files/Txt.jsx delete mode 100644 src/icons/files/Xls.jsx delete mode 100644 src/icons/files/Zip.jsx delete mode 100644 src/icons/files/index.jsx delete mode 100644 src/icons/index.jsx diff --git a/readme.md b/readme.md index c2307a21..beb8a717 100644 --- a/readme.md +++ b/readme.md @@ -15,7 +15,7 @@ Here are the steps to install ui-kit together with another project. 7. cd ./`` 8. npm link @amityco/ui-kit-open-source --save -\*\* We need to link react module to react module in destination project so that react is the same instance otherwise we will encounter [issues with react hook](https://medium.com/bbc-product-technology/solving-the-problem-with-npm-link-and-react-hooks-266c832dd019). +** We need to link react module to react module in destination project so that react is the same instance otherwise we will encounter [issues with react hook](https://medium.com/bbc-product-technology/solving-the-problem-with-npm-link-and-react-hooks-266c832dd019). ### Documentation @@ -23,4 +23,4 @@ Please refer to our online documentation at https://docs.amity.co or contact a U ## Contributing -See [our contributing guide](https://github.com/EkoCommunications/AmityUiKitWeb/blob/develop/CONTRIBUTING.md) +See [our contributing guide](https://github.com/EkoCommunications/AmityUiKitWeb/blob/develop/CONTRIBUTING.md) diff --git a/src/core/components/Files/File.tsx b/src/core/components/Files/File.tsx index eb8e6877..018ffe7a 100644 --- a/src/core/components/Files/File.tsx +++ b/src/core/components/Files/File.tsx @@ -33,7 +33,7 @@ const FileComponent = ({ file, onRemove }: FileProps) => { {isNew && } - + {file.name} {filesize(file.size, { base: 2 })} {onRemove && onRemove(file)} />} diff --git a/src/core/components/Uploaders/File/StyledFile.tsx b/src/core/components/Uploaders/File/StyledFile.tsx index f9ae5f3d..cccd7839 100644 --- a/src/core/components/Uploaders/File/StyledFile.tsx +++ b/src/core/components/Uploaders/File/StyledFile.tsx @@ -67,7 +67,7 @@ const StyledFile = ({ {isImg && !!url ? ( ) : ( - + )} {name} {filesize(size || 0, { base: 2 })} diff --git a/src/icons/ArrowLeft.tsx b/src/icons/ArrowLeft.tsx deleted file mode 100644 index c2eb4f9c..00000000 --- a/src/icons/ArrowLeft.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faArrowLeft } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faArrowLeft })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/ArrowRight.tsx b/src/icons/ArrowRight.tsx deleted file mode 100644 index f2fe8cb7..00000000 --- a/src/icons/ArrowRight.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 40 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.46094 6.33203C1.63281 6.33203 1.77344 6.26172 1.97656 6.16406L6.82422 3.82812C7.18359 3.65234 7.33594 3.45312 7.33594 3.18359C7.33594 2.91406 7.18359 2.71484 6.82422 2.53906L1.97656 0.203125C1.77344 0.105469 1.62891 0.0351562 1.45703 0.0351562C1.12109 0.0351562 0.863281 0.292969 0.863281 0.714844L0.867188 5.65625C0.867188 6.07422 1.125 6.33203 1.46094 6.33203Z' fill='%23636878' /%3E%3C/svg%3E");`; diff --git a/src/icons/Balloon.tsx b/src/icons/Balloon.tsx deleted file mode 100644 index d3c2427f..00000000 --- a/src/icons/Balloon.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - - - - - - - - - - - - - - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='262' height='243' fill='none' viewBox='0 0 262 243'%3E%3Cg rel='balloon'%3E%3Cpath fill='%23BCF7FC' d='M104 149l-11 4 10 32 17 17-16-53z'/%3E%3Cpath fill='%2397E4FD' d='M162 174l5 11-31 15-24-2 50-24z'/%3E%3Cpath fill='%23E8F7F4' d='M190 32a78 78 0 00-109 76l43 45 66-121z'/%3E%3Cpath fill='%23231F20' d='M190 32l-45 131 62 1a78 78 0 00-17-132z'/%3E%3Cpath fill='%23EC95AD' d='M190 32l-66 121 52-3c7-9 13-20 18-31 17-39 16-78-4-87z'/%3E%3Cpath fill='%234A82F2' d='M190 32c-20-9-50 16-67 56-5 11-9 23-10 34l21 36 56-126z'/%3E%3Cpath fill='%234CBEFF' d='M130 169l37 16 25-11 15-10-63-28-22 10 8 23z'/%3E%3Cpath fill='%2371D1FE' d='M81 108l3 18 9 27 37 16 14-33-63-28z'/%3E%3Cpath fill='%23231F20' d='M136 200l-17-8-13 10 2 16 16 7 12-25z'/%3E%3Cpath fill='%23EC95AD' d='M103 185l16 7-11 26-16-7 11-26z'/%3E%3C/g%3E%3Cg rel='heart'%3E%3Cpath fill='%23D9E5FC' fill-rule='evenodd' d='M54 89c4-5 6-11 6-17 0-15-13-28-29-28C16 44 3 57 3 72s13 28 28 28c7 0 13-2 17-5l12 3-6-9z' clip-rule='evenodd'/%3E%3Cpath fill='%231054DE' d='M24 61c3 0 6 2 7 4 2-2 4-4 7-4 5 0 9 4 9 8 0 11-16 17-16 17s-15-6-15-17c0-4 4-8 8-8z'/%3E%3C/g%3E%3C/svg%3E")`; diff --git a/src/icons/Ban.tsx b/src/icons/Ban.tsx deleted file mode 100644 index 5a3670de..00000000 --- a/src/icons/Ban.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faBan } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faBan })` - color: ${({ theme }) => theme.palette.base.shade3}; - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Camera.tsx b/src/icons/Camera.tsx deleted file mode 100644 index e840da02..00000000 --- a/src/icons/Camera.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import styled from 'styled-components'; -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faCamera } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faCamera })` - font-size: '${({ height = 'inherit' }) => height}'; -`; diff --git a/src/icons/Category.tsx b/src/icons/Category.tsx deleted file mode 100644 index 3a19154c..00000000 --- a/src/icons/Category.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='20' fill='%23D9E5FC'/%3E%3Cpath d='M28 21C28 20.4688 27.5312 20 27 20H22C21.4375 20 21 20.4688 21 21V26C21 26.5625 21.4375 27 22 27H27C27.5312 27 28 26.5625 28 26V21ZM14 19C11.7812 19 10 20.8125 10 23C10 25.2188 11.7812 27 14 27C16.1875 27 18 25.2188 18 23C18 20.8125 16.1875 19 14 19ZM26.9688 17C27.75 17 28.25 16.1875 27.8438 15.5L24.875 10.5C24.4688 9.84375 23.5 9.84375 23.0938 10.5L20.125 15.5C19.7188 16.1875 20.2188 17 21 17H26.9688Z' fill='white'/%3E%3C/svg%3E%0A");`; diff --git a/src/icons/Check.tsx b/src/icons/Check.tsx deleted file mode 100644 index b81afa3e..00000000 --- a/src/icons/Check.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faCheck } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faCheck })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/CheckCircle.tsx b/src/icons/CheckCircle.tsx deleted file mode 100644 index 71704602..00000000 --- a/src/icons/CheckCircle.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faCheckCircle } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faCheckCircle })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/ChevronDown.tsx b/src/icons/ChevronDown.tsx deleted file mode 100644 index 3cb4a264..00000000 --- a/src/icons/ChevronDown.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faChevronDown } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faChevronDown })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/ChevronLeft.tsx b/src/icons/ChevronLeft.tsx deleted file mode 100644 index 156fc85f..00000000 --- a/src/icons/ChevronLeft.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faChevronLeft } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faChevronLeft })` - && { - font-size: ${({ height = 'inherit' }) => height}; - } -`; diff --git a/src/icons/ChevronRight.tsx b/src/icons/ChevronRight.tsx deleted file mode 100644 index 6e85c2fb..00000000 --- a/src/icons/ChevronRight.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faChevronRight } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faChevronRight })` - && { - font-size: ${({ height = 'inherit' }) => height}; - } -`; diff --git a/src/icons/CircleRemove.tsx b/src/icons/CircleRemove.tsx deleted file mode 100644 index 6fae1c28..00000000 --- a/src/icons/CircleRemove.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; diff --git a/src/icons/Close.tsx b/src/icons/Close.tsx deleted file mode 100644 index 18da7a2e..00000000 --- a/src/icons/Close.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import Remove from './Remove'; - -export default Remove; diff --git a/src/icons/Comment.tsx b/src/icons/Comment.tsx deleted file mode 100644 index c1315c9e..00000000 --- a/src/icons/Comment.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faCommentAlt } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faCommentAlt })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Community.tsx b/src/icons/Community.tsx deleted file mode 100644 index 16a02fec..00000000 --- a/src/icons/Community.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='20' fill='%23D9E5FC'/%3E%3Cpath d='M19.8462 12C20.7625 12 21.6413 12.356 22.2893 12.9898C22.9373 13.6235 23.3013 14.4831 23.3013 15.3793C23.3013 16.2756 22.9373 17.1351 22.2893 17.7688C21.6413 18.4026 20.7625 18.7586 19.8462 18.7586C18.9298 18.7586 18.051 18.4026 17.403 17.7688C16.755 17.1351 16.391 16.2756 16.391 15.3793C16.391 14.4831 16.755 13.6235 17.403 12.9898C18.051 12.356 18.9298 12 19.8462 12ZM12.9359 14.4138C13.4887 14.4138 14.0021 14.5586 14.4463 14.8193C14.2982 16.2 14.7128 17.571 15.5618 18.6428C15.0682 19.5697 14.081 20.2069 12.9359 20.2069C12.1504 20.2069 11.3972 19.9017 10.8418 19.3585C10.2864 18.8153 9.97436 18.0786 9.97436 17.3103C9.97436 16.5421 10.2864 15.8054 10.8418 15.2622C11.3972 14.719 12.1504 14.4138 12.9359 14.4138ZM26.7564 14.4138C27.5419 14.4138 28.2951 14.719 28.8505 15.2622C29.4059 15.8054 29.7179 16.5421 29.7179 17.3103C29.7179 18.0786 29.4059 18.8153 28.8505 19.3585C28.2951 19.9017 27.5419 20.2069 26.7564 20.2069C25.6113 20.2069 24.6241 19.5697 24.1305 18.6428C24.9795 17.571 25.3941 16.2 25.246 14.8193C25.6903 14.5586 26.2036 14.4138 26.7564 14.4138ZM13.4295 24.3103C13.4295 22.3117 16.3022 20.6897 19.8462 20.6897C23.3901 20.6897 26.2628 22.3117 26.2628 24.3103V26H13.4295V24.3103ZM8 26V24.5517C8 23.2097 9.86577 22.08 12.3929 21.7517C11.8105 22.4083 11.4551 23.3159 11.4551 24.3103V26H8ZM31.6923 26H28.2372V24.3103C28.2372 23.3159 27.8818 22.4083 27.2994 21.7517C29.8265 22.08 31.6923 23.2097 31.6923 24.5517V26Z' fill='white'/%3E%3C/svg%3E%0A");`; diff --git a/src/icons/CommunityAlt.tsx b/src/icons/CommunityAlt.tsx deleted file mode 100644 index 62947ba7..00000000 --- a/src/icons/CommunityAlt.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - - - - - - - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml, %3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http%3A//www.w3.org/2000/svg'%3E%3Ccircle cx='7.82443' cy='18.04' r='2.48767' fill='%231054DE'/%3E%3Ccircle r='2.48767' transform='matrix%28-1 0 0 1 22.4188 18.04%29' fill='%231054DE'/%3E%3Cpath d='M7.82334 21.5221C5.35031 21.5221 3.34553 23.5269 3.34553 25.9999H8.90133C8.90133 24.2088 9.45415 22.5787 9.81348 21.9876C9.21397 21.6896 8.53822 21.5221 7.82334 21.5221Z' fill='%231054DE'/%3E%3Cpath d='M22.4183 21.5221C24.8914 21.5221 26.8961 23.5269 26.8961 25.9999H21.3403C21.3403 24.2088 20.7875 22.5787 20.4282 21.9875C21.0277 21.6896 21.7034 21.5221 22.4183 21.5221Z' fill='%231054DE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.1099 20.4352C18.1087 19.7843 18.7689 18.6574 18.7689 17.3764C18.7689 15.3613 17.1354 13.7278 15.1203 13.7278C13.1052 13.7278 11.4717 15.3613 11.4717 17.3764C11.4717 18.7266 12.2052 19.9056 13.2955 20.5365V20.9179C11.4476 21.708 10.1452 23.6116 10.1452 25.8344H20.2617C20.2617 23.611 18.9586 21.707 17.1099 20.9172V20.4352ZM17.2773 17.3765C17.2773 18.5672 16.3121 19.5325 15.1214 19.5325C13.9306 19.5325 12.9654 18.5672 12.9654 17.3765C12.9654 16.9838 13.0704 16.6156 13.2538 16.2985C13.6828 16.879 15.0882 17.9072 17.2773 17.3765Z' fill='%231054DE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.8429 8.62622C15.3935 8.62622 15.8398 9.07253 15.8398 9.62308V11.9686C15.8398 12.5192 15.3935 12.9655 14.8429 12.9655C14.2924 12.9655 13.8461 12.5192 13.8461 11.9686V9.62308C13.8461 9.07253 14.2924 8.62622 14.8429 8.62622Z' fill='%231054DE'/%3E%3Cpath d='M3.73594 7.50087C4.05829 8.13364 4.9647 8.1268 5.27746 7.48924V7.48924C5.52678 6.98102 5.93601 6.56868 6.44232 6.31553L6.48079 6.29629C7.1152 5.97909 7.10843 5.07141 6.46935 4.7637V4.7637C5.94653 4.51198 5.52471 4.09015 5.27298 3.56733V3.56733C4.96528 2.92826 4.0576 2.92148 3.74039 3.55589L3.72116 3.59436C3.468 4.10068 3.05566 4.5099 2.54745 4.75922V4.75922C1.90989 5.07198 1.90304 5.97839 2.53581 6.30074L2.56702 6.31664C3.06349 6.56956 3.46712 6.97319 3.72004 7.46966L3.73594 7.50087Z' fill='%231054DE'/%3E%3Cpath d='M14.2909 6.58406C14.5595 7.11136 15.3149 7.10566 15.5755 6.57436V6.57436C15.7832 6.15085 16.1243 5.80723 16.5462 5.59627L16.5783 5.58024C17.1069 5.3159 17.1013 4.5595 16.5687 4.30309V4.30309C16.133 4.09331 15.7815 3.74179 15.5717 3.30611V3.30611C15.3153 2.77355 14.5589 2.7679 14.2946 3.29658L14.2786 3.32864C14.0676 3.75056 13.724 4.09159 13.3005 4.29935V4.29935C12.7692 4.55998 12.7635 5.31532 13.2908 5.58395L13.3168 5.5972C13.7305 5.80797 14.0669 6.14432 14.2776 6.55805L14.2909 6.58406Z' fill='%231054DE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.27084 7.81208C7.62329 7.38913 8.25188 7.33199 8.67483 7.68445C9.9614 8.75659 10.6121 9.63667 11.798 11.4156C12.1034 11.8737 11.9797 12.4927 11.5216 12.798C11.0635 13.1034 10.4446 12.9797 10.1392 12.5216C8.97958 10.7822 8.45747 10.0986 7.39847 9.21607C6.97553 8.86362 6.91838 8.23503 7.27084 7.81208Z' fill='%231054DE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.2895 7.81208C21.937 7.38913 21.3084 7.33199 20.8855 7.68445C19.5989 8.75659 18.9483 9.63667 17.7623 11.4156C17.4569 11.8737 17.5807 12.4927 18.0388 12.798C18.4969 13.1034 19.1158 12.9797 19.4212 12.5216C20.5807 10.7822 21.1029 10.0986 22.1619 9.21607C22.5848 8.86362 22.6419 8.23503 22.2895 7.81208Z' fill='%231054DE'/%3E%3C/svg%3E")`; diff --git a/src/icons/CommunityCoverPicture.tsx b/src/icons/CommunityCoverPicture.tsx deleted file mode 100644 index 737803b6..00000000 --- a/src/icons/CommunityCoverPicture.tsx +++ /dev/null @@ -1,176 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -); - -export default Svg; - -export const backgroundImage = `data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTUwIiBoZWlnaHQ9IjMxMSIgdmlld0JveD0iMCAwIDU1MCAzMTEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8yMTU6MzI3NjEpIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAxXzIxNTozMjc2MSkiPgo8cGF0aCBkPSJNLTIgMTQuODA5Nkg0MjUuMTk4VjMxMUgtMlYxNC44MDk2WiIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC40Ii8+CjxyZWN0IHg9Ii04OC41Nzg2IiB5PSItMjUwLjYyMyIgd2lkdGg9IjY1MC40OCIgaGVpZ2h0PSI1ODIuMTI4IiBmaWxsPSIjMzk1MkVFIi8+CjxwYXRoIG9wYWNpdHk9IjAuMTIiIGQ9Ik01OTMuNzE5IDIxNy43NDJDNTk3LjY5IDE0Ni42OTEgNTQzLjAwNyA2NS4xNTg4IDQ2OS43NjkgNTUuOTE5MkM0NjguNDgxIDU1LjczNjYgNDY3LjE4OCA1NS41OTQgNDY1Ljg1MiA1NS40NDU2QzM2MC43NjMgNDMuOTc4IDM0NS41NDggMTcyLjIyMiAyNDkuMzkgMTgwLjg1M0MxNTMuMjggMTg5LjQ1MSA4NC41OTEyIDExMS42NTMgLTMyLjE0MjEgMTUyLjQxOEMtMTM2Ljk3MSAxODkuMDMgLTE3OC4yMzQgNDI4LjY2MiAxMjIuMTcyIDQ1Ni45OTVDMzYyLjYxIDQ3OS42NDQgNTgxLjg4OSA0MjkuNzIzIDU5My43MTkgMjE3Ljc0MloiIGZpbGw9IiNFM0U4RkYiLz4KPHJlY3QgeD0iLTg4LjU3ODYiIHk9IjI5Ni4xOSIgd2lkdGg9IjU5NC42NTkiIGhlaWdodD0iODguODU3MSIgZmlsbD0iI0ZCQUNDMiIvPgo8cGF0aCBkPSJNMjcxLjM3NiAzMDIuOTUxQzI3Mi4xMjEgMzAwLjU3MSAyNzIuNTQ2IDI5OC4wNzIgMjcyLjU0NiAyOTUuNTE0QzI3Mi41NDYgMjc3LjY0NyAyNTMuMTQyIDI2My4xNzEgMjI5LjE5MyAyNjMuMTcxQzIyMy40NzggMjYzLjE3MSAyMTguMDI5IDI2NC4wMDQgMjEzLjAzMiAyNjUuNTExQzIwOC40MDcgMjU1LjIxOSAxOTUuMzgzIDI0Ny44MjIgMTgwLjAxOSAyNDcuODIyQzE3OC41MDQgMjQ3LjgyMiAxNzcuMDQyIDI0Ny45MDEgMTc1LjU4IDI0OC4wNEMxNzIuMTI1IDIxOC43OSAxMzkuMjQ1IDE5NS44NjYgOTkuMTYxNSAxOTUuODY2QzU3LjMyMzkgMTk1Ljg2NiAyMy4zMjc0IDIyMC44NTMgMjIuNDc2OCAyNTEuOTI3QzMuOTUwMjUgMjU4LjYxIC04LjgzNDk2IDI3Mi43NjkgLTguODM0OTYgMjg5LjE2OEMtOC44MzQ5NiAyOTQuMDA3IC03LjcxODU4IDI5OC42NDcgLTUuNjcxODggMzAyLjk1MUgyNzEuMzc2WiIgZmlsbD0iI0ZCQUNDMiIvPgo8cGF0aCBkPSJNMjQyLjUzMSAyOTguMzk0QzI0Mi4wNTggMjk2Ljg3NSAyNDEuNzg4IDI5NS4yOCAyNDEuNzg4IDI5My42NDdDMjQxLjc4OCAyODIuMjQzIDI1NC4xMjEgMjczLjAwMiAyNjkuMzQ0IDI3My4wMDJDMjcyLjk3NiAyNzMuMDAyIDI3Ni40NCAyNzMuNTM0IDI3OS42MTYgMjc0LjQ5NkMyODIuNTU2IDI2Ny45MjcgMjkwLjgzNSAyNjMuMjA1IDMwMC42IDI2My4yMDVDMzAxLjU2MyAyNjMuMjA1IDMwMi40OTIgMjYzLjI1NiAzMDMuNDIyIDI2My4zNDVDMzA1LjYxOCAyNDQuNjc0IDMyNi41MTcgMjMwLjA0MiAzNTEuOTk2IDIzMC4wNDJDMzc4LjU4OSAyMzAuMDQyIDQwMC4xOTggMjQ1Ljk5MSA0MDAuNzM4IDI2NS44MjVDNDEyLjUxNCAyNzAuMDkxIDQyMC42NDEgMjc5LjEyOSA0MjAuNjQxIDI4OS41OTdDNDIwLjY0MSAyOTIuNjg1IDQxOS45MzIgMjk1LjY0NyA0MTguNjMxIDI5OC4zOTRIMjQyLjUzMVoiIGZpbGw9IiNGQkFDQzIiLz4KPHBhdGggZD0iTS0wLjIyNjU2MiAzMzEuNTA2QzIuOTkxIDMyNy40NTQgNC44MzQ5OCAzMjIuNzk4IDQuODM0OTggMzE3LjgzOUM0LjgzNDk4IDMwMi4yOTEgLTEzLjE5MDkgMjg5LjY5IC0zNS40MzE2IDI4OS42OUMtMzkuMDI1NSAyODkuNjkgLTQyLjUwNjUgMjkwLjAxOSAtNDUuODE4MiAyOTAuNjM3Qy01Mi44OTMgMjc3LjI2IC03MS4zMTQxIDI2Ny43MTEgLTkyLjkzMzkgMjY3LjcxMUMtMTE3LjQxNCAyNjcuNzExIC0xMzcuNzkyIDI3OS45NTcgLTE0Mi4yNTEgMjk2LjE0OUMtMTQ1LjM3NSAyOTUuNjA5IC0xNDguNjMgMjk1LjMyIC0xNTEuOTc5IDI5NS4zMkMtMTc0LjIyIDI5NS4zMiAtMTkyLjI0NiAzMDcuOTIxIC0xOTIuMjQ2IDMyMy40NjlDLTE5Mi4yNDYgMzI2LjI1NyAtMTkxLjY2MiAzMjguOTY3IC0xOTAuNTcxIDMzMS41MDZILTAuMjI2NTYyWiIgZmlsbD0iI0ZCQUNDMiIvPgo8cGF0aCBkPSJNNTkyLjE1NSAzMjEuMjUzQzU5NS4zNzIgMzE3LjIwMSA1OTcuMjE2IDMxMi41NDUgNTk3LjIxNiAzMDcuNTg2QzU5Ny4yMTYgMjkyLjAzOSA1NzkuMTkgMjc5LjQzOCA1NTYuOTUgMjc5LjQzOEM1NTMuMzU2IDI3OS40MzggNTQ5Ljg3NSAyNzkuNzY2IDU0Ni41NjMgMjgwLjM4NUM1MzkuNDg4IDI2Ny4wMDcgNTIxLjA2NyAyNTcuNDU4IDQ5OS40NDcgMjU3LjQ1OEM0NzQuOTY4IDI1Ny40NTggNDU0LjU5IDI2OS43MDQgNDUwLjEzIDI4NS44OTZDNDQ3LjAwNyAyODUuMzU3IDQ0My43NTIgMjg1LjA2NyA0NDAuNDAyIDI4NS4wNjdDNDE4LjE2MiAyODUuMDY3IDQwMC4xMzYgMjk3LjY2OCA0MDAuMTM2IDMxMy4yMTZDNDAwLjEzNiAzMTYuMDA0IDQwMC43MTkgMzE4LjcxNCA0MDEuODEgMzIxLjI1M0g1OTIuMTU1WiIgZmlsbD0iI0ZCQUNDMiIvPgo8ZyBvcGFjaXR5PSIwLjUiIGNsaXAtcGF0aD0idXJsKCNjbGlwMl8yMTU6MzI3NjEpIj4KPHBhdGggZD0iTTIwOS4wMSAxOTAuNzM4QzIxMS4wODkgMTkyLjgzMyAyMTQuNjY5IDE5NC4yMiAyMTcuODE5IDE5My41NThDMjE4LjA4OSAxOTMuNDk4IDIxOC4zNTggMTkzLjQyOCAyMTguNjI3IDE5My4zMzZDMjE5Ljk0OSAxOTIuODg5IDIyMS4xNjQgMTkyLjA0MSAyMjIuMTE3IDE5MC42NzhDMjIzLjU3MyAxODguNjAzIDIyNC40MTMgMTg1LjMyIDIyNC4wOTcgMTgwLjQ2M0MyMjMuNTcyIDE3Mi40MzQgMjIwLjIwMSAxNjkuMDAxIDIxNi45NjcgMTY3LjU3M0MyMTMuNzMzIDE2Ni4xNDUgMjEwLjYyNSAxNjYuNzMyIDIxMC42MjUgMTY2LjczMkMxOTguMDgxIDE2OS44MjcgMjA0LjQ3MyAxODYuMTg3IDIwOS4wMSAxOTAuNzM4WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTIxNy44MDMgMTkzLjIxQzIxNy44MDMgMTkzLjIxIDIxNi44MzQgMTk0LjcwMiAyMTcuMTMzIDE5NC44MjRDMjE3LjQzMiAxOTQuOTQ2IDIxNy40NDUgMTk0LjYwOCAyMTguMjE3IDE5NC43MDFDMjE4Ljk4OSAxOTQuNzk1IDIxOC44ODEgMTk0Ljc4OCAyMTkuMjczIDE5NC42MzVDMjE5LjY2NSAxOTQuNDgyIDIxOS43MTIgMTk0LjA1OCAyMTkuNzEyIDE5NC4wNThMMjE4LjYwNyAxOTIuOTE1TDIxNy44MDMgMTkzLjIxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTIxOC42OTkgMTkzLjc3NEMyMTYuNjQ1IDE5NS44NTIgMjE1Ljg0NiAxOTkuMTAxIDIxNy4yMjQgMjAxLjUzNEMyMTcuOTQ4IDIwMi44MTggMjE5LjE3IDIwMy43NjggMjIwLjQwOCAyMDQuNjM3QzIyMS42NDUgMjA1LjUwNiAyMjIuOTMyIDIwNi4zNCAyMjMuODU3IDIwNy40OTdDMjI0Ljc5MyAyMDguNjUxIDIyNS4zMjcgMjEwLjIwMyAyMjQuODIzIDIxMS42MjRDMjI0LjMyOCAyMTMuMDMxIDIyMi41NjIgMjE0LjA4MyAyMjEuMTI3IDIxMy41MzhDMjIwLjg1NCAyMTMuNDMyIDIyMC42MDcgMjEzLjI4NiAyMjAuNDM0IDIxMy4wNjdDMjE5LjkwOSAyMTIuNDIzIDIyMC4yNTIgMjExLjM4MiAyMjAuOTY5IDIxMC44OTNDMjIyLjExNiAyMTAuMTIgMjIzLjgwNCAyMTAuNjAxIDIyNC42MzcgMjExLjYyN0MyMjUuNDkyIDIxMi42NDggMjI1LjY1OSAyMTQuMDQxIDIyNS42NDEgMjE1LjM1QzIyNS42MjYgMjE2LjY2OCAyMjUuNDYyIDIxOC4wMDMgMjI1Ljc1MSAyMTkuMjc3QzIyNi40NDUgMjIyLjM3NyAyMjkuNjIxIDIyNC40ODUgMjMwLjQzOSAyMjcuNTY1QzIzMC45MjEgMjI5LjM3MSAyMzAuNTQ3IDIzMS4zOTQgMjMxLjM0IDIzMy4wODgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMC40NTU2NzgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L2c+CjxnIG9wYWNpdHk9IjAuNSIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAzXzIxNTozMjc2MSkiPgo8cGF0aCBkPSJNMzM1Ljc1MiAxMjYuNTUyQzMzNS4zOTcgMTI3LjI3MSAzMzUuMDM3IDEyNy45NjYgMzM0LjY3MiAxMjguNjM5QzMzMi43NTUgMTMyLjA4NiAzMzAuNTAyIDEzNC45NjMgMzI4LjU3MSAxMzYuNTk3QzMyNS4yNSAxMzkuNDE0IDMxOS44NjUgMTQwLjk5IDMxNS4zNyAxMzkuNTY5QzMxNS4yNjggMTM5LjU0NyAzMTUuMTYgMTM5LjUwMSAzMTUuMDY2IDEzOS40NjRDMzE0Ljc4OSAxMzkuMzc1IDMxNC41MTYgMTM5LjI1IDMxNC4yNDMgMTM5LjEyNEwzMTQuMjI4IDEzOS4xMTZDMzEzLjQ3OSAxMzguNzgyIDMxMi43NjIgMTM4LjMzMiAzMTIuMDk2IDEzNy43OTVDMzA4LjYwNyAxMzQuOTYxIDMwNi41MjkgMTI5LjIyOSAzMDguMTIyIDExOS4yNkMzMDkuNDM5IDExMS4xMDUgMzEyLjQxMyAxMDYuMzUyIDMxNS43MzkgMTAzLjY1NUMzMjIuMDY3IDk4LjUxMTUgMzI5LjY3NCAxMDAuNzE3IDMyOS42NzQgMTAwLjcxN0MzNDEuNzY3IDEwNS4wMzUgMzQwLjIzNiAxMTcuMjU0IDMzNS43NTIgMTI2LjU1MloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0zMTQuMjExIDEzOS4xNDRDMzE0LjIxMSAxMzkuMTQ0IDMxMS43MiAxMzkuOTM3IDMxMS45MzMgMTQwLjM1NkMzMTIuMTUxIDE0MC43OTggMzEyLjQ4OCAxNDAuMzk5IDMxMy4yNTYgMTQxLjI0OUMzMTQuMDI0IDE0Mi4wOTggMzEzLjkxMyAxNDEuOTkzIDMxNC41MDMgMTQyLjE3M0MzMTUuMDg0IDE0Mi4zNjcgMzE1LjUzNSAxNDEuOTM5IDMxNS41MzUgMTQxLjkzOUwzMTUuMzcgMTM5LjU2OUwzMTQuMjExIDEzOS4xNDRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMzEzLjIxOSAxNDEuMjQ2QzMwOC45MzMgMTQzLjYzNyAzMDYuMTM3IDE1MC4wMyAzMDUuODU2IDE1NC43NTJDMzA1LjcyMiAxNTcuMDM5IDMwNi40MTYgMTU5LjQ5NCAzMDguMjA0IDE2MC45MzdDMzA5LjEgMTYxLjY3IDMxMC4yMjIgMTYyLjA5MiAzMTEuMzcgMTYyLjI3OEMzMTIuNzU1IDE2Mi40ODkgMzE0LjQ2NSAxNjIuMTU5IDMxNS4wMjggMTYwLjg2N0MzMTUuNDU0IDE1OS45IDMxNS4wMiAxNTguNjg4IDMxNC4yIDE1OC4wMjFDMzEzLjM4MSAxNTcuMzU0IDMxMi4yNTUgMTU3LjE2MiAzMTEuMTk4IDE1Ny4yNDVDMzA1LjI0MiAxNTcuNzQgMzAyLjUxNiAxNjUuMDQ5IDMwMi4wNDQgMTcwLjEyMUMzMDEuNjkxIDE3My45NjUgMzAyLjE1MiAxNzguMTYzIDMwMy40NDkgMTgxLjc3NkMzMDUuODM2IDE4OC40MTEgMzA2LjE0NCAxOTMuNjA0IDMwMi4zNjggMTk5Ljc1N0MzMDEuMTYzIDIwMS43MyAyOTkuODgzIDIwMy42OTcgMjk5LjE0NSAyMDUuODkzQzI5OC40MjEgMjA4LjA5NyAyOTguMzA2IDIxMC42MDkgMjk5LjQxNSAyMTIuNjM0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjAuNDU1Njc4IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9nPgo8cGF0aCBkPSJNMTM2LjAyNCA1MS40NDc1QzEzNi40MDIgNTMuMzQ2MSAxMzUuMTQ2IDU1LjE5OTQgMTMzLjIyMyA1NS41ODE5QzEzMS4zIDU1Ljk2NDQgMTI5LjQzMSA1NC43MzI2IDEyOS4wNTMgNTIuODM0QzEyOC42NzUgNTAuOTM1NCAxMjkuOTMxIDQ5LjA4MjEgMTMxLjg1NCA0OC42OTk2QzEzMy43NzcgNDguMzE3MSAxMzUuNjQ2IDQ5LjU0ODkgMTM2LjAyNCA1MS40NDc1WiIgZmlsbD0iI0ZERTVERSIvPgo8cGF0aCBkPSJNNDQuMzI5NiAxOTkuMzg4QzQ0LjY0NDUgMjAwLjk3MiA0My41OTc0IDIwMi41MzEgNDEuOTc2MSAyMDIuODUzQzQwLjM1NDkgMjAzLjE3NSAzOC43OTA5IDIwMi4xMzYgMzguNDc2IDIwMC41NTNDMzguMTYxMSAxOTguOTY5IDM5LjIwODMgMTk3LjQxIDQwLjgyOTUgMTk3LjA4OEM0Mi40NTA3IDE5Ni43NjUgNDQuMDE0NyAxOTcuODA1IDQ0LjMyOTYgMTk5LjM4OFoiIHN0cm9rZT0iI0ZERTVERSIgc3Ryb2tlLXdpZHRoPSIxLjEzOTE5Ii8+CjxwYXRoIGQ9Ik0xNjUuMDAyIDE4My40MThMMTY1LjAwNSAxODMuNDE3QzE2Ni42MiAxODMuMDg2IDE2OC4xODUgMTg0LjEyMiAxNjguNTAyIDE4NS43MThDMTY4LjgxNyAxODcuMzAxIDE2Ny43NyAxODguODYgMTY2LjE0OSAxODkuMTgzQzE2NC41MjcgMTg5LjUwNSAxNjIuOTYzIDE4OC40NjYgMTYyLjY0OCAxODYuODgyQzE2Mi4zMzMgMTg1LjI5OSAxNjMuMzgxIDE4My43NCAxNjUuMDAyIDE4My40MThaIiBzdHJva2U9IiNGREU1REUiIHN0cm9rZS13aWR0aD0iMS4xMzkxOSIvPgo8cGF0aCBkPSJNMjc2LjY0MyA2OC40MzQzTDI3Ni42NDYgNjguNDMzN0MyNzguMjYxIDY4LjEwMyAyNzkuODI2IDY5LjEzODkgMjgwLjE0MyA3MC43MzQ3QzI4MC40NTggNzIuMzE4IDI3OS40MTEgNzMuODc2OSAyNzcuNzkgNzQuMTk5M0MyNzYuMTY4IDc0LjUyMTggMjc0LjYwNCA3My40ODIzIDI3NC4yODkgNzEuODk5QzI3My45NzUgNzAuMzE1NiAyNzUuMDIyIDY4Ljc1NjggMjc2LjY0MyA2OC40MzQzWiIgc3Ryb2tlPSIjRkRFNURFIiBzdHJva2Utd2lkdGg9IjEuMTM5MTkiLz4KPHBhdGggb3BhY2l0eT0iMC40IiBkPSJNMzg3LjA4MyAxMzEuNjQ3TDM5MS42MTggMTM0Ljg2MUMzOTEuNjE4IDEzNC44NjEgMzkyLjMwMSAxMzguMjkxIDM4OC45ODMgMTM5Ljc3QzM4NS42NjUgMTQxLjI0OCAzODMuNTI1IDE0My4wNTMgMzg0LjI1OSAxNDUuMzc0QzM4NC4yNTkgMTQ1LjM3NCAzODAuMTk2IDE0NC41MzQgMzc5Ljg5MiAxNDEuNTc4QzM3OS41NzcgMTM4LjYyNCAzODMuNTM1IDEzOC45MzYgMzg1LjQ2NyAxMzYuMDg1QzM4Ny4zOTkgMTMzLjIzMyAzODcuMDgzIDEzMS42NDcgMzg3LjA4MyAxMzEuNjQ3WiIgZmlsbD0iI0Y2RjVGMyIvPgo8cGF0aCBkPSJNNTkuMjAyNiAyMzkuNTgyTDU2Ljg1MzYgMjQ0LjYxQzU2Ljg1MzYgMjQ0LjYxIDUzLjU3NjYgMjQ1Ljk0NyA1MS40ODAxIDI0My4wMjJDNDkuMzk0NCAyNDAuMDk0IDQ3LjIwNjIgMjM4LjM2NiA0NS4wMzU4IDIzOS41NDFDNDUuMDM1OCAyMzkuNTQxIDQ1LjEyMDUgMjM1LjQzOCA0Ny45OTE3IDIzNC41NkM1MC44NzM3IDIzMy42NzkgNTEuMjg4NiAyMzcuNTcyIDU0LjQ4OTUgMjM4Ljg4N0M1Ny42OTAzIDI0MC4yMDMgNTkuMjAyNiAyMzkuNTgyIDU5LjIwMjYgMjM5LjU4MloiIGZpbGw9IiNGRkQ0MDAiLz4KPHBhdGggZD0iTTk3LjA4OTMgMjE5LjkyMkw5OS42NiAyMjQuODE2Qzk5LjY2IDIyNC44MTYgOTguNzA2NCAyMjguMTg4IDk1LjA3MyAyMjguMDQ0QzkxLjQ0NDIgMjI3Ljg5MSA4OC43MTIxIDIyOC41NDggODguMzExNiAyMzAuOTU3Qzg4LjMxMTYgMjMwLjk1NyA4NS4wODMzIDIyOC4zOTQgODYuMTUzMyAyMjUuNjE4Qzg3LjIyNzggMjIyLjgzMiA5MC41OTY3IDIyNC44NzcgOTMuNjI0NyAyMjMuMTc5Qzk2LjY1MjcgMjIxLjQ4IDk3LjA4OTMgMjE5LjkyMiA5Ny4wODkzIDIxOS45MjJaIiBmaWxsPSIjRkRFNURFIi8+CjxwYXRoIG9wYWNpdHk9IjAuNCIgZD0iTTM2NC4zNTQgMTc0Ljc0N0wzNjEuODE1IDE3OS42ODJDMzYxLjgxNSAxNzkuNjgyIDM1OC40ODkgMTgwLjg5MyAzNTYuNTA2IDE3Ny44OUMzNTQuNTIzIDE3NC44ODYgMzUyLjQxMyAxNzMuMDc0IDM1MC4xOTkgMTc0LjE2NUMzNTAuMTk5IDE3NC4xNjUgMzUwLjQ0MSAxNzAuMDY5IDM1My4zNDQgMTY5LjMwMUMzNTYuMjU3IDE2OC41MyAzNTYuNTM0IDE3Mi40MzQgMzU5LjY3MSAxNzMuODczQzM2Mi44MTkgMTc1LjMxMSAzNjQuMzU0IDE3NC43NDcgMzY0LjM1NCAxNzQuNzQ3WiIgZmlsbD0iI0Y2RjVGMyIvPgo8cGF0aCBkPSJNMTQ2LjI1MyAxMTQuNDM3TDE0My43MTMgMTE5LjM3MUMxNDMuNzEzIDExOS4zNzEgMTQwLjM4OCAxMjAuNTgyIDEzOC40MDQgMTE3LjU3OUMxMzYuNDMyIDExNC41NzMgMTM0LjMxMiAxMTIuNzY0IDEzMi4wOTggMTEzLjg1NEMxMzIuMDk4IDExMy44NTQgMTMyLjM0IDEwOS43NTggMTM1LjI0MiAxMDguOTlDMTM4LjE1NiAxMDguMjIgMTM4LjQyMiAxMTIuMTI2IDE0MS41NyAxMTMuNTYzQzE0NC43MTggMTE1IDE0Ni4yNTMgMTE0LjQzNyAxNDYuMjUzIDExNC40MzdaIiBmaWxsPSIjRjhEQTNBIi8+CjxwYXRoIGQ9Ik0zNS4zNzY0IDU4LjYwNzhMMzcuNzgyNCA2My42MDlDMzcuNzgyNCA2My42MDkgMzYuNzQzNSA2Ni45OTI0IDMzLjE1MTcgNjYuNzYzOUMyOS41NjQ3IDY2LjUyNTQgMjYuODQyNCA2Ny4xMjYxIDI2LjM3OCA2OS41NDk5QzI2LjM3OCA2OS41NDk5IDIzLjI1NTQgNjYuODg3NiAyNC4zOTI3IDY0LjEwODdDMjUuNTM0OCA2MS4zMTk4IDI4LjgxMTEgNjMuNDYyNSAzMS44NTU3IDYxLjgxNzNDMzQuOTAwMyA2MC4xNzIgMzUuMzc2NCA1OC42MDc4IDM1LjM3NjQgNTguNjA3OFoiIGZpbGw9IiNGOERBM0EiLz4KPHBhdGggZD0iTTM1OS43MSAxMDYuNjYxTDM2My43MjQgMTAyLjgwMUMzNjMuNzI0IDEwMi44MDEgMzY3LjI2MiAxMDIuNzE0IDM2OC4xNDggMTA2LjE5NEMzNjkuMDMzIDEwOS42NzMgMzcwLjQzOSAxMTIuMDYzIDM3Mi44ODQgMTExLjczM0MzNzIuODg0IDExMS43MzMgMzcxLjMyNSAxMTUuNTQyIDM2OC4zMiAxMTUuMzQ0QzM2NS4zMTYgMTE1LjE0NSAzNjYuMzM0IDExMS4zNTQgMzYzLjg0MiAxMDguOTlDMzYxLjM1IDEwNi42MjYgMzU5LjcxIDEwNi42NjEgMzU5LjcxIDEwNi42NjFaIiBmaWxsPSIjRkZENDAwIi8+CjxlbGxpcHNlIG9wYWNpdHk9IjAuNiIgY3g9IjI1NS40NTgiIGN5PSIyNzguNTMzIiByeD0iMzAuNzU4MiIgcnk9IjMuOTg3MTgiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuMTIiLz4KPHBhdGggZD0iTTI3OS4wMTYgMjc2LjQ3NUwyNzYuODY0IDIxMC43NTFMMjMxLjUzNSAyNjUuNjY1QzIzMS41MzUgMjY1LjY2NSAyNDkuMTMxIDI4Ny4yODYgMjc5LjAxNiAyNzYuNDc1WiIgZmlsbD0iIzEyMUU2QSIvPgo8cGF0aCBkPSJNMjY0LjE5IDI0Ny44NjRDMjY0LjE5IDI1MC44MDYgMjYxLjgwNCAyNTMuMTkyIDI1OC44NjEgMjUzLjE5MkMyNTUuOTE4IDI1My4xOTIgMjUzLjUzMiAyNTAuODA2IDI1My41MzIgMjQ3Ljg2NEMyNTMuNTMyIDI0NC45MjEgMjU1LjkxOCAyNDIuNTM1IDI1OC44NjEgMjQyLjUzNUMyNjEuODA0IDI0Mi41MzUgMjY0LjE5IDI0NC45MjEgMjY0LjE5IDI0Ny44NjRaIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMuMzY4NTUiLz4KPHBhdGggZD0iTTI3Ny43MjUgMjM5LjExN0MyNzIuNzA0IDIzOS4zNTYgMjY4LjQ5NiAyMzUuNDMzIDI2OC4yNTcgMjMwLjQxMUMyNjguMDE4IDIyNS4zODggMjcyLjA4MiAyMjIuMzgyIDI3Ny4xMDIgMjIyLjE0M0wyNzcuNzI1IDIzOS4xMTdaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjU3LjgzNCAyNzIuODg4QzI2MC41MjcgMjcyLjg4OCAyNjIuNzExIDI3MC43MDMgMjYyLjcxMSAyNjguMDA4QzI2Mi43MTEgMjY1LjMxNCAyNjAuNTI3IDI2My4xMjkgMjU3LjgzNCAyNjMuMTI5QzI1NS4xNCAyNjMuMTI5IDI1Mi45NTcgMjY1LjMxNCAyNTIuOTU3IDI2OC4wMDhDMjUyLjk1NyAyNzAuNzAzIDI1NS4xNCAyNzIuODg4IDI1Ny44MzQgMjcyLjg4OFoiIGZpbGw9IndoaXRlIi8+CjwvZz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMTU6MzI3NjEiPgo8cmVjdCB3aWR0aD0iNTUzLjY0OCIgaGVpZ2h0PSIzMTEiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMikiLz4KPC9jbGlwUGF0aD4KPGNsaXBQYXRoIGlkPSJjbGlwMV8yMTU6MzI3NjEiPgo8cmVjdCB3aWR0aD0iNTUzLjY0OCIgaGVpZ2h0PSIzMTEiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMikiLz4KPC9jbGlwUGF0aD4KPGNsaXBQYXRoIGlkPSJjbGlwMl8yMTU6MzI3NjEiPgo8cmVjdCB3aWR0aD0iMjUuODYyNCIgaGVpZ2h0PSI2OS43MTAzIiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTk4LjQ5OCAxNjkuODU0KSByb3RhdGUoLTE1LjU4NjQpIi8+CjwvY2xpcFBhdGg+CjxjbGlwUGF0aCBpZD0iY2xpcDNfMjE1OjMyNzYxIj4KPHJlY3Qgd2lkdGg9IjQzLjMxNDgiIGhlaWdodD0iMTEyLjE0NCIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMyMC4wNjYgOTQuNTUzMSkgcm90YXRlKDMxLjAwOTEpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==`; diff --git a/src/icons/CreateChat.tsx b/src/icons/CreateChat.tsx deleted file mode 100644 index b5ba8da0..00000000 --- a/src/icons/CreateChat.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faCommentAltPlus } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faCommentAltPlus })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Dots.tsx b/src/icons/Dots.tsx deleted file mode 100644 index f6b37047..00000000 --- a/src/icons/Dots.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='none' viewBox='0 0 25 25'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23F3F0EA' opacity='.1'/%3E%3C/svg%3E")`; diff --git a/src/icons/EllipsisH.tsx b/src/icons/EllipsisH.tsx deleted file mode 100644 index 0d396245..00000000 --- a/src/icons/EllipsisH.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import styled from 'styled-components'; -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faEllipsisH } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faEllipsisH })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/EllipsisV.tsx b/src/icons/EllipsisV.tsx deleted file mode 100644 index 18527c9a..00000000 --- a/src/icons/EllipsisV.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import styled from 'styled-components'; -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faEllipsisV } from '@fortawesome/pro-solid-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faEllipsisV })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/EmptyFeed.tsx b/src/icons/EmptyFeed.tsx deleted file mode 100644 index 111c2a23..00000000 --- a/src/icons/EmptyFeed.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => { - return ( - - - - ); -}; - -export default Svg; diff --git a/src/icons/EmptyImageGallery.tsx b/src/icons/EmptyImageGallery.tsx deleted file mode 100644 index 224caf89..00000000 --- a/src/icons/EmptyImageGallery.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import React from 'react'; - -export default (props: React.SVGProps) => { - return ( - - - - ); -}; diff --git a/src/icons/EmptyLivestreamGallery.tsx b/src/icons/EmptyLivestreamGallery.tsx deleted file mode 100644 index 5021ca78..00000000 --- a/src/icons/EmptyLivestreamGallery.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import React from 'react'; - -export default (props: React.SVGProps) => { - return ( - - - - ); -}; diff --git a/src/icons/EmptyVideoGallery.tsx b/src/icons/EmptyVideoGallery.tsx deleted file mode 100644 index 04bf2061..00000000 --- a/src/icons/EmptyVideoGallery.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import React from 'react'; - -export default (props: React.SVGProps) => { - return ( - - - - ); -}; diff --git a/src/icons/ExclamationCircle.tsx b/src/icons/ExclamationCircle.tsx deleted file mode 100644 index 031e8803..00000000 --- a/src/icons/ExclamationCircle.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faExclamationCircle } from '@fortawesome/pro-solid-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faExclamationCircle })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/FileAttachment.tsx b/src/icons/FileAttachment.tsx deleted file mode 100644 index c21ce66d..00000000 --- a/src/icons/FileAttachment.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import styled from 'styled-components'; -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faPaperclip } from '@fortawesome/pro-light-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faPaperclip })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Globe.tsx b/src/icons/Globe.tsx deleted file mode 100644 index 600874f6..00000000 --- a/src/icons/Globe.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faGlobeAfrica } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faGlobeAfrica })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/ImageAttachment.tsx b/src/icons/ImageAttachment.tsx deleted file mode 100644 index fe3a632d..00000000 --- a/src/icons/ImageAttachment.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import styled from 'styled-components'; -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faImage } from '@fortawesome/pro-light-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faImage })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/LivestreamCover.tsx b/src/icons/LivestreamCover.tsx deleted file mode 100644 index c8196679..00000000 --- a/src/icons/LivestreamCover.tsx +++ /dev/null @@ -1,223 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml;charset=UTF-8,%3csvg width='439' height='219' viewBox='0 0 439 219' fill='none' xmlns='http://www.w3.org/2000/svg' %3e%3cpath d='M148.017 30.9692H125.866C123.49 30.9692 121.564 32.8976 121.564 35.2764V42.6062C121.564 44.985 123.49 46.9133 125.866 46.9133H148.017C150.393 46.9133 152.319 44.985 152.319 42.6062V35.2764C152.319 32.8976 150.393 30.9692 148.017 30.9692Z' fill='%23B3BBE3' /%3e%3cpath d='M326.51 121.695H304.359C301.983 121.695 300.057 123.623 300.057 126.002V133.332C300.057 135.711 301.983 137.639 304.359 137.639H326.51C328.886 137.639 330.812 135.711 330.812 133.332V126.002C330.812 123.623 328.886 121.695 326.51 121.695Z' fill='%23B3BBE3' /%3e%3cpath d='M352.074 18.8726H334.268C332.36 18.8726 330.812 20.4217 330.812 22.3326V28.2286C330.812 30.1396 332.36 31.6887 334.268 31.6887H352.074C353.982 31.6887 355.529 30.1396 355.529 28.2286V22.3326C355.529 20.4217 353.982 18.8726 352.074 18.8726Z' fill='%23B3BBE3' /%3e%3cpath d='M70.9908 157.149H56.7467C55.2198 157.149 53.9819 158.388 53.9819 159.917V164.634C53.9819 166.163 55.2198 167.402 56.7467 167.402H70.9908C72.5177 167.402 73.7555 166.163 73.7555 164.634V159.917C73.7555 158.388 72.5177 157.149 70.9908 157.149Z' fill='%23B3BBE3' /%3e%3cpath d='M256.65 194.102H242.406C240.879 194.102 239.642 195.341 239.642 196.87V201.587C239.642 203.116 240.879 204.355 242.406 204.355H256.65C258.177 204.355 259.415 203.116 259.415 201.587V196.87C259.415 195.341 258.177 194.102 256.65 194.102Z' fill='%23B3BBE3' /%3e%3cpath d='M235.234 0H220.99C219.463 0 218.226 1.23931 218.226 2.76807V7.48487C218.226 9.01363 219.463 10.2529 220.99 10.2529H235.234C236.761 10.2529 237.999 9.01363 237.999 7.48487V2.76807C237.999 1.23931 236.761 0 235.234 0Z' fill='%23B3BBE3' /%3e%3cpath d='M379.815 10.0757H369.132C367.987 10.0757 367.059 11.0052 367.059 12.1517V15.6893C367.059 16.8359 367.987 17.7654 369.132 17.7654H379.815C380.96 17.7654 381.889 16.8359 381.889 15.6893V12.1517C381.889 11.0052 380.96 10.0757 379.815 10.0757Z' fill='%23B3BBE3' /%3e%3cpath d='M436.382 170.087H425.699C424.554 170.087 423.625 171.017 423.625 172.163V175.701C423.625 176.848 424.554 177.777 425.699 177.777H436.382C437.527 177.777 438.456 176.848 438.456 175.701V172.163C438.456 171.017 437.527 170.087 436.382 170.087Z' fill='%23B3BBE3' /%3e%3cpath d='M319.952 106.854H309.269C308.124 106.854 307.196 107.783 307.196 108.93V112.467C307.196 113.614 308.124 114.543 309.269 114.543H319.952C321.098 114.543 322.026 113.614 322.026 112.467V108.93C322.026 107.783 321.098 106.854 319.952 106.854Z' fill='%23B3BBE3' /%3e%3cpath d='M12.7566 114.395H2.07357C0.92837 114.395 0 115.325 0 116.471V120.009C0 121.155 0.92837 122.085 2.07357 122.085H12.7566C13.9018 122.085 14.8302 121.155 14.8302 120.009V116.471C14.8302 115.325 13.9018 114.395 12.7566 114.395Z' fill='%23B3BBE3' /%3e%3cpath d='M123.886 92.126H113.203C112.058 92.126 111.13 93.0555 111.13 94.202V97.7396C111.13 98.8862 112.058 99.8157 113.203 99.8157H123.886C125.032 99.8157 125.96 98.8862 125.96 97.7396V94.202C125.96 93.0555 125.032 92.126 123.886 92.126Z' fill='%23B3BBE3' /%3e%3cpath d='M252.951 59.6855H242.268C241.123 59.6855 240.194 60.615 240.194 61.7616V65.2992C240.194 66.4458 241.123 67.3752 242.268 67.3752H252.951C254.096 67.3752 255.025 66.4458 255.025 65.2992V61.7616C255.025 60.615 254.096 59.6855 252.951 59.6855Z' fill='%23B3BBE3' /%3e%3cpath d='M204.07 191.103H193.387C192.242 191.103 191.313 192.033 191.313 193.179V196.717C191.313 197.863 192.242 198.793 193.387 198.793H204.07C205.215 198.793 206.144 197.863 206.144 196.717V193.179C206.144 192.033 205.215 191.103 204.07 191.103Z' fill='%23B3BBE3' /%3e%3cpath d='M414.347 182.183H400.501C399.017 182.183 397.813 183.387 397.813 184.873V189.457C397.813 190.943 399.017 192.148 400.501 192.148H414.347C415.831 192.148 417.034 190.943 417.034 189.457V184.873C417.034 183.387 415.831 182.183 414.347 182.183Z' fill='%23B3BBE3' /%3e%3cpath d='M272.89 167.175H251.95C249.702 167.175 247.88 168.999 247.88 171.249V178.175C247.88 180.425 249.702 182.25 251.95 182.25H272.89C275.138 182.25 276.96 180.425 276.96 178.175V171.249C276.96 168.999 275.138 167.175 272.89 167.175Z' fill='%23B3BBE3' /%3e%3cpath d='M340.754 115.103H326.909C325.424 115.103 324.221 116.307 324.221 117.793V122.377C324.221 123.863 325.424 125.068 326.909 125.068H340.754C342.239 125.068 343.442 123.863 343.442 122.377V117.793C343.442 116.307 342.239 115.103 340.754 115.103Z' fill='%23B3BBE3' /%3e%3cpath d='M52.3452 45.8179H18.3275C14.6781 45.8179 11.7197 48.7798 11.7197 52.4336V63.6885C11.7197 67.3423 14.6781 70.3042 18.3275 70.3042H52.3452C55.9945 70.3042 58.9529 67.3423 58.9529 63.6885V52.4336C58.9529 48.7798 55.9945 45.8179 52.3452 45.8179Z' fill='%23B3BBE3' /%3e%3cpath d='M100.69 117.848H63.902C59.9564 117.848 56.7578 121.051 56.7578 125.001V137.175C56.7578 141.125 59.9564 144.327 63.902 144.327H100.69C104.636 144.327 107.834 141.125 107.834 137.175V125.001C107.834 121.051 104.636 117.848 100.69 117.848Z' fill='%23B3BBE3' /%3e%3cpath d='M205.591 151.391H168.803C164.857 151.391 161.659 154.593 161.659 158.543V170.717C161.659 174.668 164.857 177.87 168.803 177.87H205.591C209.536 177.87 212.735 174.668 212.735 170.717V158.543C212.735 154.593 209.536 151.391 205.591 151.391Z' fill='%23B3BBE3' /%3e%3cpath d='M208.881 107.949H172.093C168.147 107.949 164.949 111.152 164.949 115.102V127.276C164.949 131.226 168.147 134.429 172.093 134.429H208.881C212.826 134.429 216.025 131.226 216.025 127.276V115.102C216.025 111.152 212.826 107.949 208.881 107.949Z' fill='%23B3BBE3' /%3e%3cpath d='M253.322 75.8452H207.836C202.956 75.8452 199 79.806 199 84.692V99.7447C199 104.631 202.956 108.592 207.836 108.592H253.322C258.202 108.592 262.158 104.631 262.158 99.7447V84.692C262.158 79.806 258.202 75.8452 253.322 75.8452Z' fill='%23B3BBE3' /%3e%3cpath d='M404.355 145.678H358.869C353.989 145.678 350.033 149.639 350.033 154.524V169.577C350.033 174.463 353.989 178.424 358.869 178.424H404.355C409.235 178.424 413.191 174.463 413.191 169.577V154.524C413.191 149.639 409.235 145.678 404.355 145.678Z' fill='%23B3BBE3' /%3e%3cpath d='M399.981 50.0034H368.739C365.386 50.0034 362.668 52.7249 362.668 56.0821V66.4181C362.668 69.7752 365.386 72.4968 368.739 72.4968H399.981C403.334 72.4968 406.053 69.7752 406.053 66.4181V56.0821C406.053 52.7249 403.334 50.0034 399.981 50.0034Z' fill='%23B3BBE3' /%3e%3cpath d='M374.827 101.449H185.845V208.108H374.827V101.449Z' fill='%23626FE5' /%3e%3cpath d='M190.114 85.9873H370.564C371.695 85.9873 372.779 86.437 373.579 87.2375C374.378 88.038 374.827 89.1236 374.827 90.2557V101.444H185.845V90.2612C185.845 89.1277 186.294 88.0406 187.095 87.2391C187.896 86.4376 188.981 85.9873 190.114 85.9873Z' fill='%23626FE5' /%3e%3cpath d='M185.845 208.108H374.827V212.493C374.827 213.627 374.378 214.714 373.577 215.515C372.777 216.317 371.691 216.767 370.559 216.767H190.114C188.981 216.767 187.896 216.317 187.095 215.515C186.294 214.714 185.845 213.627 185.845 212.493V208.108Z' fill='%23626FE5' /%3e%3cpath d='M365.875 98.5877C368.263 98.5877 370.199 96.6495 370.199 94.2585C370.199 91.8675 368.263 89.9292 365.875 89.9292C363.487 89.9292 361.551 91.8675 361.551 94.2585C361.551 96.6495 363.487 98.5877 365.875 98.5877Z' fill='%23F0FFFB' /%3e%3cpath d='M371.401 104.375H188.904V205.161H371.401V104.375Z' fill='%23B3BBE3' /%3e%3cpath d='M238.446 29.8564H42.5352V140.43H238.446V29.8564Z' fill='%23F0FFFB' /%3e%3cpath d='M47.4656 13.8354H234.53C235.703 13.8354 236.828 14.3021 237.658 15.1326C238.487 15.9632 238.953 17.0897 238.953 18.2644V29.857H43.042V18.2588C43.0435 17.0852 43.5102 15.9601 44.3396 15.1307C45.169 14.3013 46.2934 13.8354 47.4656 13.8354Z' fill='%23F0FFFB' /%3e%3cpath d='M229.669 26.889C232.143 26.889 234.148 24.8813 234.148 22.4047C234.148 19.9281 232.143 17.9204 229.669 17.9204C227.196 17.9204 225.19 19.9281 225.19 22.4047C225.19 24.8813 227.196 26.889 229.669 26.889Z' fill='%23626FE5' /%3e%3cpath d='M235.752 32.8237H46.5645V137.307H235.752V32.8237Z' fill='%23B3BBE3' /%3e%3cpath d='M42.5352 139.447H238.446V143.992C238.446 145.167 237.98 146.293 237.151 147.124C236.321 147.954 235.196 148.421 234.023 148.421H46.9588C45.7856 148.421 44.6604 147.954 43.8308 147.124C43.0012 146.293 42.5352 145.167 42.5352 143.992V139.447Z' fill='%23F0FFFB' /%3e%3cpath d='M311.647 18.8726H258.691C255.505 18.8726 252.923 21.4578 252.923 24.6468V46.5367C252.923 49.7257 255.505 52.3109 258.691 52.3109H311.647C314.832 52.3109 317.414 49.7257 317.414 46.5367V24.6468C317.414 21.4578 314.832 18.8726 311.647 18.8726Z' fill='%23626FE5' /%3e%3cpath d='M271.409 50.0025V63.5772C271.408 64.1444 271.576 64.699 271.89 65.1708C272.204 65.6427 272.652 66.0106 273.175 66.2281C273.698 66.4456 274.274 66.5028 274.83 66.3926C275.385 66.2824 275.896 66.0097 276.297 65.6089L292.885 49.0005L271.409 50.0025Z' fill='%23626FE5' /%3e%3cpath d='M272.531 35.2431C272.532 34.6415 272.355 34.0531 272.022 33.5525C271.688 33.0518 271.214 32.6614 270.659 32.4307C270.105 32.1999 269.494 32.1393 268.904 32.2564C268.315 32.3735 267.773 32.6631 267.349 33.0884C266.924 33.5138 266.634 34.0559 266.518 34.646C266.401 35.2361 266.461 35.8477 266.692 36.4033C266.922 36.9588 267.312 37.4335 267.812 37.767C268.312 38.1006 268.9 38.278 269.501 38.2769C270.304 38.2755 271.074 37.9554 271.642 37.3867C272.21 36.8181 272.529 36.0473 272.531 35.2431Z' fill='%23F0FFFB' /%3e%3cpath d='M283.175 35.243C283.177 34.6407 282.999 34.0517 282.665 33.5507C282.331 33.0497 281.856 32.6593 281.3 32.429C280.744 32.1988 280.133 32.1391 279.543 32.2576C278.953 32.3761 278.411 32.6673 277.987 33.0944C277.563 33.5214 277.275 34.065 277.16 34.6562C277.045 35.2474 277.108 35.8595 277.341 36.4148C277.574 36.9701 277.966 37.4435 278.469 37.7751C278.971 38.1066 279.56 38.2812 280.162 38.2769C280.962 38.271 281.728 37.949 282.292 37.3808C282.857 36.8127 283.174 36.0443 283.175 35.243Z' fill='%23F0FFFB' /%3e%3cpath d='M293.814 35.2438C293.814 34.6437 293.637 34.0572 293.304 33.5583C292.971 33.0594 292.497 32.6705 291.944 32.4409C291.39 32.2113 290.781 32.1512 290.193 32.2683C289.605 32.3853 289.065 32.6743 288.641 33.0985C288.218 33.5228 287.929 34.0634 287.812 34.6519C287.695 35.2404 287.755 35.8504 287.985 36.4048C288.214 36.9591 288.602 37.4329 289.101 37.7663C289.599 38.0996 290.185 38.2776 290.784 38.2776C291.588 38.2776 292.358 37.9579 292.927 37.389C293.495 36.82 293.814 36.0484 293.814 35.2438Z' fill='%23F0FFFB' /%3e%3cpath d='M304.459 35.2431C304.46 34.6415 304.282 34.0531 303.949 33.5525C303.616 33.0518 303.142 32.6614 302.587 32.4307C302.032 32.1999 301.421 32.1393 300.832 32.2564C300.243 32.3735 299.701 32.6631 299.276 33.0884C298.851 33.5138 298.562 34.0559 298.445 34.646C298.328 35.2361 298.389 35.8477 298.619 36.4033C298.85 36.9588 299.24 37.4335 299.74 37.767C300.24 38.1006 300.828 38.278 301.428 38.2769C302.232 38.2769 303.003 37.9573 303.571 37.3884C304.139 36.8194 304.459 36.0477 304.459 35.2431Z' fill='%23F0FFFB' /%3e%3cpath d='M139.419 205.436H169.101C172.287 205.436 174.869 202.85 174.869 199.661V189.84C174.869 186.651 172.287 184.066 169.101 184.066H139.419C136.234 184.066 133.652 186.651 133.652 189.84V199.661C133.652 202.85 136.234 205.436 139.419 205.436Z' fill='%23626FE5' /%3e%3cpath d='M163.052 203.962V212.643C163.052 213.005 162.944 213.36 162.743 213.661C162.542 213.962 162.256 214.197 161.922 214.335C161.588 214.474 161.22 214.51 160.865 214.44C160.51 214.369 160.184 214.195 159.928 213.938L149.344 203.342L163.052 203.962Z' fill='%23626FE5' /%3e%3cpath d='M162.333 194.529C162.333 194.145 162.447 193.769 162.66 193.45C162.873 193.13 163.176 192.881 163.531 192.734C163.886 192.587 164.276 192.548 164.653 192.623C165.029 192.698 165.375 192.883 165.646 193.155C165.918 193.427 166.103 193.773 166.177 194.15C166.252 194.527 166.214 194.918 166.067 195.273C165.92 195.628 165.671 195.931 165.352 196.145C165.033 196.358 164.658 196.472 164.274 196.472C163.759 196.472 163.265 196.268 162.901 195.903C162.537 195.539 162.333 195.044 162.333 194.529Z' fill='%23F0FFFB' /%3e%3cpath d='M155.532 194.529C155.532 194.145 155.646 193.769 155.859 193.45C156.072 193.13 156.375 192.881 156.73 192.734C157.085 192.587 157.475 192.548 157.851 192.623C158.228 192.698 158.574 192.883 158.845 193.155C159.116 193.427 159.301 193.773 159.376 194.15C159.451 194.527 159.413 194.918 159.266 195.273C159.119 195.628 158.87 195.931 158.551 196.145C158.232 196.358 157.856 196.472 157.473 196.472C156.958 196.472 156.464 196.268 156.1 195.903C155.736 195.539 155.532 195.044 155.532 194.529Z' fill='%23F0FFFB' /%3e%3cpath d='M148.73 194.529C148.73 194.145 148.844 193.769 149.058 193.449C149.271 193.129 149.575 192.88 149.93 192.733C150.285 192.586 150.675 192.548 151.052 192.624C151.429 192.699 151.774 192.885 152.046 193.157C152.317 193.429 152.501 193.776 152.576 194.153C152.65 194.531 152.611 194.922 152.463 195.277C152.315 195.632 152.066 195.935 151.746 196.148C151.426 196.36 151.05 196.473 150.666 196.472C150.411 196.472 150.159 196.422 149.924 196.324C149.689 196.227 149.475 196.083 149.295 195.903C149.116 195.722 148.973 195.508 148.876 195.272C148.779 195.037 148.73 194.784 148.73 194.529Z' fill='%23F0FFFB' /%3e%3cpath d='M141.924 194.529C141.924 194.145 142.038 193.769 142.251 193.449C142.465 193.129 142.768 192.88 143.123 192.733C143.478 192.586 143.869 192.548 144.245 192.624C144.622 192.699 144.968 192.885 145.239 193.157C145.51 193.429 145.695 193.776 145.769 194.153C145.843 194.531 145.804 194.922 145.656 195.277C145.508 195.632 145.259 195.935 144.939 196.148C144.619 196.36 144.243 196.473 143.859 196.472C143.605 196.472 143.352 196.422 143.117 196.324C142.882 196.227 142.669 196.083 142.489 195.903C142.309 195.722 142.167 195.508 142.07 195.272C141.973 195.037 141.923 194.784 141.924 194.529Z' fill='%23F0FFFB' /%3e%3cpath d='M34.6066 182.366H56.4206C58.7599 182.366 60.6562 180.468 60.6562 178.126V170.901C60.6562 168.559 58.7599 166.66 56.4206 166.66H34.6066C32.2674 166.66 30.371 168.559 30.371 170.901V178.126C30.371 180.468 32.2674 182.366 34.6066 182.366Z' fill='%23626FE5' /%3e%3cpath d='M51.9752 181.281V187.659C51.974 187.925 51.8943 188.185 51.7459 188.406C51.5976 188.627 51.3873 188.799 51.1415 188.901C50.8957 189.003 50.6253 189.03 50.3644 188.978C50.1034 188.926 49.8636 188.799 49.6749 188.611L41.9004 180.827L51.9752 181.281Z' fill='%23626FE5' /%3e%3cpath d='M51.4443 174.35C51.4433 174.067 51.526 173.79 51.6821 173.555C51.8382 173.319 52.0606 173.135 52.3212 173.026C52.5818 172.917 52.8688 172.888 53.1459 172.943C53.423 172.997 53.6777 173.133 53.8778 173.332C54.0778 173.532 54.2143 173.786 54.2698 174.064C54.3253 174.341 54.2973 174.628 54.1895 174.89C54.0817 175.151 53.8989 175.374 53.6641 175.532C53.4294 175.689 53.1534 175.773 52.871 175.773C52.494 175.771 52.1328 175.621 51.8657 175.355C51.5987 175.088 51.4473 174.727 51.4443 174.35Z' fill='%23F0FFFB' /%3e%3cpath d='M46.4453 174.35C46.4442 174.067 46.527 173.79 46.6831 173.555C46.8391 173.319 47.0616 173.135 47.3222 173.026C47.5827 172.917 47.8698 172.888 48.1469 172.943C48.424 172.997 48.6787 173.133 48.8787 173.332C49.0788 173.532 49.2152 173.786 49.2707 174.064C49.3262 174.341 49.2983 174.628 49.1905 174.89C49.0827 175.151 48.8998 175.374 48.6651 175.532C48.4304 175.689 48.1543 175.773 47.8719 175.773C47.495 175.771 47.1338 175.621 46.8667 175.355C46.5996 175.088 46.4482 174.727 46.4453 174.35Z' fill='%23F0FFFB' /%3e%3cpath d='M41.4468 174.35C41.4457 174.067 41.5284 173.79 41.6845 173.555C41.8406 173.319 42.063 173.135 42.3236 173.026C42.5842 172.917 42.8712 172.888 43.1483 172.943C43.4254 172.997 43.6801 173.133 43.8802 173.332C44.0803 173.532 44.2167 173.786 44.2722 174.064C44.3277 174.341 44.2998 174.628 44.192 174.89C44.0841 175.151 43.9013 175.374 43.6666 175.532C43.4318 175.689 43.1558 175.773 42.8734 175.773C42.4964 175.771 42.1353 175.621 41.8682 175.355C41.6011 175.088 41.4497 174.727 41.4468 174.35Z' fill='%23F0FFFB' /%3e%3cpath d='M36.4536 174.35C36.4525 174.067 36.5354 173.79 36.6918 173.554C36.8481 173.319 37.0708 173.135 37.3317 173.026C37.5926 172.917 37.8799 172.888 38.1572 172.943C38.4345 172.998 38.6892 173.134 38.889 173.334C39.0889 173.534 39.2248 173.789 39.2797 174.067C39.3346 174.345 39.3059 174.632 39.1972 174.893C39.0885 175.155 38.9048 175.378 38.6694 175.534C38.4339 175.691 38.1573 175.774 37.8747 175.773C37.4983 175.771 37.1377 175.621 36.8715 175.354C36.6053 175.088 36.4551 174.727 36.4536 174.35Z' fill='%23F0FFFB' /%3e%3cpath d='M92.7828 202.788H70.6316C68.2557 202.788 66.3296 204.716 66.3296 207.095V214.425C66.3296 216.804 68.2557 218.732 70.6316 218.732H92.7828C95.1588 218.732 97.0848 216.804 97.0848 214.425V207.095C97.0848 204.716 95.1588 202.788 92.7828 202.788Z' fill='%23B3BBE3' /%3e%3cpath d='M86.2244 187.947H75.5413C74.3961 187.947 73.4678 188.876 73.4678 190.023V193.56C73.4678 194.707 74.3961 195.636 75.5413 195.636H86.2244C87.3696 195.636 88.298 194.707 88.298 193.56V190.023C88.298 188.876 87.3696 187.947 86.2244 187.947Z' fill='%23B3BBE3' /%3e%3cpath d='M107.027 196.195H93.1815C91.6973 196.195 90.4941 197.4 90.4941 198.886V203.47C90.4941 204.956 91.6973 206.16 93.1815 206.16H107.027C108.512 206.16 109.715 204.956 109.715 203.47V198.886C109.715 197.4 108.512 196.195 107.027 196.195Z' fill='%23B3BBE3' /%3e%3crect opacity='0.5' x='54.6396' y='128.725' width='171.1' height='1.45175' fill='%23F0FFFB' /%3e%3cellipse cx='86.5399' cy='128.725' rx='4.34999' ry='4.3552' fill='%23D1DDEF' /%3e%3c/svg%3e")`; diff --git a/src/icons/Lock.tsx b/src/icons/Lock.tsx deleted file mode 100644 index 275bea9a..00000000 --- a/src/icons/Lock.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import styled from 'styled-components'; -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faLockAlt } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faLockAlt })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/MagicWand.tsx b/src/icons/MagicWand.tsx deleted file mode 100644 index 56392ad7..00000000 --- a/src/icons/MagicWand.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; diff --git a/src/icons/Message.tsx b/src/icons/Message.tsx deleted file mode 100644 index 39fa0e08..00000000 --- a/src/icons/Message.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faCommentsAlt } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faCommentsAlt })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Minus.tsx b/src/icons/Minus.tsx deleted file mode 100644 index 0d6f08cb..00000000 --- a/src/icons/Minus.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; diff --git a/src/icons/MinusCircle.tsx b/src/icons/MinusCircle.tsx deleted file mode 100644 index 55ea7d54..00000000 --- a/src/icons/MinusCircle.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faMinusCircle } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faMinusCircle })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Newspaper.tsx b/src/icons/Newspaper.tsx deleted file mode 100644 index 1f20c5a2..00000000 --- a/src/icons/Newspaper.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faNewspaper } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faNewspaper })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/NewspaperLight.tsx b/src/icons/NewspaperLight.tsx deleted file mode 100644 index a2d4c3eb..00000000 --- a/src/icons/NewspaperLight.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faNewspaper } from '@fortawesome/pro-light-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faNewspaper })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Pencil.tsx b/src/icons/Pencil.tsx deleted file mode 100644 index 60008a38..00000000 --- a/src/icons/Pencil.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faPencil } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faPencil })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Pending.tsx b/src/icons/Pending.tsx deleted file mode 100644 index 56abceea..00000000 --- a/src/icons/Pending.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 19 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6875 9.3125C9.00195 9.3125 10.9062 7.4375 10.9062 5.09375C10.9062 2.7793 9.00195 0.875 6.6875 0.875C4.34375 0.875 2.46875 2.7793 2.46875 5.09375C2.46875 7.4375 4.34375 9.3125 6.6875 9.3125ZM6.6875 2.28125C8.21094 2.28125 9.5 3.57031 9.5 5.09375C9.5 6.64648 8.21094 7.90625 6.6875 7.90625C5.13477 7.90625 3.875 6.64648 3.875 5.09375C3.875 3.57031 5.13477 2.28125 6.6875 2.28125ZM1.53125 14.4688V13.7363C1.53125 12.3301 2.64453 11.1875 4.05078 11.1875C4.49023 11.1875 5.16406 11.6562 6.6875 11.6562C7.94727 11.6562 8.73828 11.3047 9.03125 11.2461C9.08984 10.748 9.17773 10.25 9.35352 9.81055C8.41602 9.78125 8.09375 10.25 6.6875 10.25C5.28125 10.25 4.90039 9.78125 4.05078 9.78125C1.88281 9.78125 0.125 11.5684 0.125 13.7363V14.4688C0.125 15.2598 0.740234 15.875 1.53125 15.875H10.9355C10.4668 15.4941 10.0859 15.0254 9.76367 14.4688H1.53125ZM14.6562 7.4375C12.3125 7.4375 10.4375 9.3418 10.4375 11.6562C10.4375 14 12.3125 15.875 14.6562 15.875C16.9707 15.875 18.875 14 18.875 11.6562C18.875 9.3418 16.9707 7.4375 14.6562 7.4375ZM16.5312 11.8613C16.5312 12.0078 16.3848 12.125 16.2383 12.125H14.4512C14.3047 12.125 14.1875 12.0078 14.1875 11.8613V9.60547C14.1875 9.45898 14.3047 9.3125 14.4512 9.3125H14.832C14.9785 9.3125 15.125 9.45898 15.125 9.60547V11.1875H16.2383C16.3848 11.1875 16.5312 11.334 16.5312 11.4805V11.8613Z' fill='white'/%3E%3C/svg%3E%0A");`; diff --git a/src/icons/Play.tsx b/src/icons/Play.tsx deleted file mode 100644 index f3e2d8b0..00000000 --- a/src/icons/Play.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - - - -); - -export default Svg; diff --git a/src/icons/PlayCircle.tsx b/src/icons/PlayCircle.tsx deleted file mode 100644 index efe5547c..00000000 --- a/src/icons/PlayCircle.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import styled from 'styled-components'; -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faPlayCircle } from '@fortawesome/pro-light-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faPlayCircle })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Plus.tsx b/src/icons/Plus.tsx deleted file mode 100644 index c6ba9317..00000000 --- a/src/icons/Plus.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faPlus } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faPlus })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Poll.tsx b/src/icons/Poll.tsx deleted file mode 100644 index 48e03cf4..00000000 --- a/src/icons/Poll.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; diff --git a/src/icons/Remove.tsx b/src/icons/Remove.tsx deleted file mode 100644 index e090bcc6..00000000 --- a/src/icons/Remove.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faTimes } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faTimes })` - && { - font-size: ${({ height = 'inherit' }) => height}; - } -`; diff --git a/src/icons/Reply.tsx b/src/icons/Reply.tsx deleted file mode 100644 index ff14db5e..00000000 --- a/src/icons/Reply.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faShare } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faShare })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Save.tsx b/src/icons/Save.tsx deleted file mode 100644 index 97d981fd..00000000 --- a/src/icons/Save.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faSave } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faSave })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Search.tsx b/src/icons/Search.tsx deleted file mode 100644 index 4c4019a1..00000000 --- a/src/icons/Search.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faSearch } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faSearch })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/SendMessage.tsx b/src/icons/SendMessage.tsx deleted file mode 100644 index 3d99dd22..00000000 --- a/src/icons/SendMessage.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faArrowCircleUp } from '@fortawesome/pro-solid-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faArrowCircleUp })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Shield.tsx b/src/icons/Shield.tsx deleted file mode 100644 index fee54deb..00000000 --- a/src/icons/Shield.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon as FaIcon } from '@fortawesome/react-fontawesome'; -import { faShieldAlt } from '@fortawesome/pro-solid-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FaIcon).attrs<{ icon?: ReactNode }>({ icon: faShieldAlt })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Sky.tsx b/src/icons/Sky.tsx deleted file mode 100644 index aa0d25d2..00000000 --- a/src/icons/Sky.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - - - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='553' height='243' fill='none' viewBox='0 0 553 243'%3E%3Cg rel='clouds'%3E%3Cpath fill='%23fff' d='M193 246l-1-6c0-9 5-17 12-21a30 30 0 0128-39c7 0 13 2 18 5 4-3 9-5 14-5 12 0 21 8 23 19l6 5c5-4 11-7 18-7 12 0 22 9 25 20h2l8 1a18 18 0 0125 5 36 36 0 0154-20 53 53 0 01103 17c11 5 20 14 25 26H193z' opacity='.1'/%3E%3C/g%3E%3Cg rel='dottedcircle'%3E%3Ccircle cx='175' cy='220' r='105.5' stroke='%23D9E5FC' stroke-dasharray='4 4' opacity='.5'/%3E%3C/g%3E%3Cg rel='bubbles'%3E%3Ccircle cx='484' cy='63' r='32' fill='%23F1F6F5' opacity='.1'/%3E%3Ccircle cx='234' cy='41' r='14' fill='%23A0BDF8' opacity='.1'/%3E%3Ccircle cx='24' cy='69' r='24' fill='%23A0BDF8' opacity='.1'/%3E%3C/g%3E%3C/svg%3E")`; diff --git a/src/icons/SolarSystem.tsx b/src/icons/SolarSystem.tsx deleted file mode 100644 index 051f4fe1..00000000 --- a/src/icons/SolarSystem.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faSolarSystem } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faSolarSystem })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/SortDown.tsx b/src/icons/SortDown.tsx deleted file mode 100644 index e4738fdc..00000000 --- a/src/icons/SortDown.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faSortDown } from '@fortawesome/pro-solid-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faSortDown })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Tab.tsx b/src/icons/Tab.tsx deleted file mode 100644 index d6dabcfe..00000000 --- a/src/icons/Tab.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.824 4.72708L8.63343 7.84786C8.39883 8.05439 8.04692 8.05439 7.83578 7.82492L7.31965 7.32008C7.08504 7.11356 7.08504 6.74641 7.31965 6.53989L8.75073 5.25486L0.56305 5.25486C0.234605 5.25486 0 5.00244 0 4.70413V0.560002C0 0.250721 0.250722 0 0.560002 0L1.31683 4.36807e-06C1.62611 5.39397e-06 1.87683 0.250726 1.87683 0.560004V3.4191L8.75073 3.4191L7.31965 2.11113C7.08504 1.9046 7.08504 1.53745 7.31965 1.33093L7.83578 0.826096C8.04692 0.596627 8.39883 0.596627 8.63343 0.803149L11.824 3.92393C12.0587 4.1534 12.0587 4.49761 11.824 4.72708Z' fill='%23636878'/%3E%3C/svg%3E");`; diff --git a/src/icons/ThumbsUp.tsx b/src/icons/ThumbsUp.tsx deleted file mode 100644 index 63f091f6..00000000 --- a/src/icons/ThumbsUp.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faThumbsUp } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faThumbsUp })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Trash.tsx b/src/icons/Trash.tsx deleted file mode 100644 index f7c6b68a..00000000 --- a/src/icons/Trash.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faTrashAlt } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faTrashAlt })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/UnknownPost.tsx b/src/icons/UnknownPost.tsx deleted file mode 100644 index e35fbc47..00000000 --- a/src/icons/UnknownPost.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => { - return ( - - - - - ); -}; - -export default Svg; diff --git a/src/icons/User.tsx b/src/icons/User.tsx deleted file mode 100644 index 7acf660e..00000000 --- a/src/icons/User.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - - - -); - -export default Svg; - -export const backgroundImage = `url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='20' fill='%23D9E5FC'/%3E%3Cpath d='M23.1255 13.1312C22.385 12.4069 21.3806 12 20.3333 12C19.2861 12 18.2817 12.4069 17.5412 13.1312C16.8006 13.8555 16.3846 14.8378 16.3846 15.8621C16.3846 16.8864 16.8006 17.8687 17.5412 18.593C18.2817 19.3172 19.2861 19.7241 20.3333 19.7241C21.3806 19.7241 22.385 19.3172 23.1255 18.593C23.866 17.8687 24.2821 16.8864 24.2821 15.8621C24.2821 14.8378 23.866 13.8555 23.1255 13.1312Z' fill='white'/%3E%3Cpath d='M20.3333 21.931C16.2831 21.931 13 23.7848 13 26.069V28H27.6667V26.069C27.6667 23.7848 24.3836 21.931 20.3333 21.931Z' fill='white'/%3E%3C/svg%3E");`; diff --git a/src/icons/UserPlus.tsx b/src/icons/UserPlus.tsx deleted file mode 100644 index c560af45..00000000 --- a/src/icons/UserPlus.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faUserPlus } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faUserPlus })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/UserRegular.tsx b/src/icons/UserRegular.tsx deleted file mode 100644 index 47ee73c4..00000000 --- a/src/icons/UserRegular.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faUser } from '@fortawesome/pro-regular-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faUser })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/Verified.tsx b/src/icons/Verified.tsx deleted file mode 100644 index 78c97282..00000000 --- a/src/icons/Verified.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styled from 'styled-components'; - -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faBadgeCheck } from '@fortawesome/pro-solid-svg-icons'; -import { ReactNode } from 'react'; - -export default styled(FontAwesomeIcon).attrs<{ icon?: ReactNode }>({ icon: faBadgeCheck })` - font-size: ${({ height = 'inherit' }) => height}; -`; diff --git a/src/icons/VideoAttachment.tsx b/src/icons/VideoAttachment.tsx deleted file mode 100644 index fe55eca8..00000000 --- a/src/icons/VideoAttachment.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import React from 'react'; - -const Svg = (props: React.SVGProps) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Audio.jsx b/src/icons/files/Audio.jsx deleted file mode 100644 index f3fe41c8..00000000 --- a/src/icons/files/Audio.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#FFB400', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Avi.jsx b/src/icons/files/Avi.jsx deleted file mode 100644 index f77821b4..00000000 --- a/src/icons/files/Avi.jsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#5856D6', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Csv.jsx b/src/icons/files/Csv.jsx deleted file mode 100644 index 861c0529..00000000 --- a/src/icons/files/Csv.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#00BED4', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Default.jsx b/src/icons/files/Default.jsx deleted file mode 100644 index d2439881..00000000 --- a/src/icons/files/Default.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#999', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Doc.jsx b/src/icons/files/Doc.jsx deleted file mode 100644 index 04c3b4ea..00000000 --- a/src/icons/files/Doc.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#0E86FE', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Exe.jsx b/src/icons/files/Exe.jsx deleted file mode 100644 index e9dc60bb..00000000 --- a/src/icons/files/Exe.jsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#5C6070', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/File.jsx b/src/icons/files/File.jsx deleted file mode 100644 index 29a9f616..00000000 --- a/src/icons/files/File.jsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; - -const Svg = ({ bg = '#fff', fg = '#cacaca', children, ...props }) => ( - - - - - {children} - -); - -export default Svg; diff --git a/src/icons/files/Html.jsx b/src/icons/files/Html.jsx deleted file mode 100644 index c715eedf..00000000 --- a/src/icons/files/Html.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#1E3868', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Img.jsx b/src/icons/files/Img.jsx deleted file mode 100644 index aaabd241..00000000 --- a/src/icons/files/Img.jsx +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#999', ...props }) => ( - - - - - -); - -export default Svg; diff --git a/src/icons/files/Mov.jsx b/src/icons/files/Mov.jsx deleted file mode 100644 index c51c148c..00000000 --- a/src/icons/files/Mov.jsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#5856D6', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Mp3.jsx b/src/icons/files/Mp3.jsx deleted file mode 100644 index 718f4516..00000000 --- a/src/icons/files/Mp3.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#FFB400', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Mp4.jsx b/src/icons/files/Mp4.jsx deleted file mode 100644 index 0fee26e3..00000000 --- a/src/icons/files/Mp4.jsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#5856D6', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Mpeg.jsx b/src/icons/files/Mpeg.jsx deleted file mode 100644 index 6c1e4854..00000000 --- a/src/icons/files/Mpeg.jsx +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#5856D6', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Pdf.jsx b/src/icons/files/Pdf.jsx deleted file mode 100644 index 68d9229b..00000000 --- a/src/icons/files/Pdf.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#F02B04', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Ppt.jsx b/src/icons/files/Ppt.jsx deleted file mode 100644 index a3b66d46..00000000 --- a/src/icons/files/Ppt.jsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#FF742F', ...props }) => ( - - - - -); - -export default Svg; diff --git a/src/icons/files/Ppx.jsx b/src/icons/files/Ppx.jsx deleted file mode 100644 index 051f5a47..00000000 --- a/src/icons/files/Ppx.jsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#FF742F', ...props }) => ( - - - - -); - -export default Svg; diff --git a/src/icons/files/Rar.jsx b/src/icons/files/Rar.jsx deleted file mode 100644 index 03ff4d03..00000000 --- a/src/icons/files/Rar.jsx +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#F14B5F', ...props }) => ( - - - - - - -); - -export default Svg; diff --git a/src/icons/files/Txt.jsx b/src/icons/files/Txt.jsx deleted file mode 100644 index a65b2853..00000000 --- a/src/icons/files/Txt.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#795545', ...props }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Xls.jsx b/src/icons/files/Xls.jsx deleted file mode 100644 index e2c602f7..00000000 --- a/src/icons/files/Xls.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#27B740' }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/Zip.jsx b/src/icons/files/Zip.jsx deleted file mode 100644 index cba346ec..00000000 --- a/src/icons/files/Zip.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import File from './File'; - -const Svg = ({ color = '#5856D6' }) => ( - - - -); - -export default Svg; diff --git a/src/icons/files/index.jsx b/src/icons/files/index.jsx deleted file mode 100644 index 083d62b9..00000000 --- a/src/icons/files/index.jsx +++ /dev/null @@ -1,74 +0,0 @@ -import React from 'react'; - -import DefaultFile from './Default'; - -import AudioFile from './Audio'; -import AviFile from './Avi'; -import CsvFile from './Csv'; -import DocFile from './Doc'; -import ExeFile from './Exe'; -import HtmlFile from './Html'; -import ImgFile from './Img'; -import MovFile from './Mov'; -import Mp3File from './Mp3'; -import Mp4File from './Mp4'; -import MpegFile from './Mpeg'; -import PdfFile from './Pdf'; -import PptFile from './Ppt'; -import PpxFile from './Ppx'; -import RarFile from './Rar'; -import TxtFile from './Txt'; -import XlsFile from './Xls'; -import ZipFile from './Zip'; - -const MAPPING = { - aac: AudioFile, - avi: AviFile, - csv: CsvFile, - doc: DocFile, - exe: ExeFile, - gif: ImgFile, - html: HtmlFile, - jpg: ImgFile, - mov: MovFile, - mp3: Mp3File, - mp4: Mp4File, - mpeg: MpegFile, - ogg: AudioFile, - pdf: PdfFile, - ppt: PptFile, - pptx: PptFile, - ppx: PpxFile, - png: ImgFile, - rar: RarFile, - txt: TxtFile, - xls: XlsFile, - xlsx: XlsFile, - zip: ZipFile, - - audio: AudioFile, - image: ImgFile, - video: MpegFile, -}; - -const MIMETYPES = { - pptx: ['openxmlformats-officedocument.presentationml'], - xlsx: ['openxmlformats-officedocument.spreadsheetml.sheet'], -}; - -const FileIcon = ({ file, ...props }) => { - const { name, type } = file; - - const typeLowerCase = type.toLowerCase(); - - const resolved = Object.entries(MIMETYPES).find(([, mimetypes]) => - mimetypes.find((mimetype) => typeLowerCase.includes(mimetype)), - ); - const extension = resolved ? resolved[0] : name.slice(name.lastIndexOf('.') + 1); - - const Icon = extension in MAPPING ? MAPPING[extension] : DefaultFile; - - return ; -}; - -export default FileIcon; diff --git a/src/icons/index.jsx b/src/icons/index.jsx deleted file mode 100644 index 279c6a42..00000000 --- a/src/icons/index.jsx +++ /dev/null @@ -1,84 +0,0 @@ -// svg -export { default as Category } from './Category'; -export { default as Community } from './Community'; -export { default as CommunityAlt } from './CommunityAlt'; -export { default as User } from './User'; -export { default as ArrowLeft } from './ArrowLeft'; -export { default as ArrowRight } from './ArrowRight'; -export { default as EmptyFeed } from './EmptyFeed'; -export { default as EmptyImageGallery } from './EmptyImageGallery'; -export { default as EmptyLivestreamGallery } from './EmptyLivestreamGallery'; -export { default as EmptyVideoGallery } from './EmptyVideoGallery'; -export { default as Tab } from './Tab'; -export { default as UnknownPost } from './UnknownPost'; -export { default as Pending } from './Pending'; -export { default as MagicWand } from './MagicWand'; -export { default as Play } from './Play'; -export { default as PlayCircle } from './PlayCircle'; -export { default as VideoAttachment } from './VideoAttachment'; -export { default as LivestreamCover } from './LivestreamCover'; -export { default as CommunityCoverPicture } from './CommunityCoverPicture'; -export { default as Minus } from './Minus'; -export { default as Poll } from './Poll'; -export { default as CircleRemove } from './CircleRemove'; -export { default as Bars } from './Bars'; - -// files -export { default as AudioFile } from './files/Audio'; -export { default as AviFile } from './files/Avi'; -export { default as CsvFile } from './files/Csv'; -export { default as DefaultFile } from './files/Default'; -export { default as DocFile } from './files/Doc'; -export { default as ExeFile } from './files/Exe'; -export { default as File } from './files/File'; -export { default as HtmlFile } from './files/Html'; -export { default as ImgFile } from './files/Img'; -export { default as MovFile } from './files/Mov'; -export { default as Mp3File } from './files/Mp3'; -export { default as Mp4File } from './files/Mp4'; -export { default as MpegFile } from './files/Mpeg'; -export { default as PdfFile } from './files/Pdf'; -export { default as PptFile } from './files/Ppt'; -export { default as PpxFile } from './files/Ppx'; -export { default as RarFile } from './files/Rar'; -export { default as TxtFile } from './files/Txt'; -export { default as XlsFile } from './files/Xls'; -export { default as ZipFile } from './files/Zip'; - -// illustrations -export { default as Sky } from './Sky'; -export { default as Balloon } from './Balloon'; -export { default as Dots } from './Dots'; - -// fontawesome -export { default as Plus } from './Plus'; -export { default as Pencil } from './Pencil'; -export { default as Remove } from './Remove'; -export { default as Reply } from './Reply'; -export { default as Search } from './Search'; -export { default as SendMessage } from './SendMessage'; -export { default as Shield } from './Shield'; -export { default as ImageAttachment } from './ImageAttachment'; -export { default as FileAttachment } from './FileAttachment'; -export { default as Check } from './Check'; -export { default as ChevronDown } from './ChevronDown'; -export { default as ChevronLeft } from './ChevronLeft'; -export { default as ChevronRight } from './ChevronRight'; -export { default as Camera } from './Camera'; -export { default as Close } from './Close'; -export { default as Comment } from './Comment'; -export { default as CreateChat } from './CreateChat'; -export { default as EllipsisH } from './EllipsisH'; -export { default as EllipsisV } from './EllipsisV'; -export { default as ExclamationCircle } from './ExclamationCircle'; -export { default as Globe } from './Globe'; -export { default as Lock } from './Lock'; -export { default as Message } from './Message'; -export { default as MinusCircle } from './MinusCircle'; -export { default as Newspaper } from './Newspaper'; -export { default as NewspaperLight } from './NewspaperLight'; -export { default as Save } from './Save'; -export { default as SortDown } from './SortDown'; -export { default as ThumbsUp } from './ThumbsUp'; -export { default as Trash } from './Trash'; -export { default as Verified } from './Verified'; diff --git a/src/social/components/LoadMoreWrapper/styles.tsx b/src/social/components/LoadMoreWrapper/styles.tsx index 352e91b5..91401722 100644 --- a/src/social/components/LoadMoreWrapper/styles.tsx +++ b/src/social/components/LoadMoreWrapper/styles.tsx @@ -36,7 +36,7 @@ export const LoadMoreButton = styled(Button)` } `; -export const ShevronDownIcon = styled(ChevronDown).attrs<{ icon?: ReactNode }>({ +export const ShevronDownIcon = styled(ChevronDown).attrs({ width: 14, height: 14, })` diff --git a/src/social/components/category/CategoryChip/UICategoryChip.tsx b/src/social/components/category/CategoryChip/UICategoryChip.tsx index f6ea31f4..07dbb89c 100644 --- a/src/social/components/category/CategoryChip/UICategoryChip.tsx +++ b/src/social/components/category/CategoryChip/UICategoryChip.tsx @@ -15,7 +15,7 @@ interface UICategoryChipProps { onRemove?: (categoryId: string) => void; } -const CloseIcon = styled(Close).attrs<{ icon?: ReactNode }>({ width: 12, height: 12 })` +const CloseIcon = styled(Close).attrs({ width: 12, height: 12 })` fill: ${({ theme }) => theme.palette.neutral.main}; cursor: pointer; `;