-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
105 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import React, { FC } from "react"; | ||
|
||
interface GroupChatIconProps { | ||
className?: string; | ||
} | ||
|
||
const GroupChatIcon: FC<GroupChatIconProps> = ({ className }) => ( | ||
<svg | ||
className={className} | ||
width="32" | ||
height="32" | ||
viewBox="0 0 25 18" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g id="Layer_1" clip-path="url(#clip0_11827_31255)"> | ||
<path | ||
id="Vector" | ||
d="M12.4725 8.84766C8.9225 8.84766 6.03516 12.2649 6.03516 14.4519C6.03516 16.6389 8.91856 17.9824 12.4725 17.9824C16.0265 17.9824 18.9138 16.6389 18.9138 14.4675C18.9138 12.2961 16.0501 8.84766 12.4725 8.84766Z" | ||
fill="#525876" | ||
/> | ||
<path | ||
id="Vector_2" | ||
d="M12.4761 8.22478C14.4541 8.22478 16.0577 6.3836 16.0577 4.11239C16.0577 1.84118 14.4541 0 12.4761 0C10.4981 0 8.89453 1.84118 8.89453 4.11239C8.89453 6.3836 10.4981 8.22478 12.4761 8.22478Z" | ||
fill="#525876" | ||
/> | ||
<path | ||
id="Vector_3" | ||
d="M20.2311 8.54297C19.1982 8.56446 18.2013 8.92275 17.395 9.56228C19.1227 10.9175 20.2311 12.8389 20.2311 14.2878C20.2304 14.6417 20.1593 14.9921 20.022 15.3188H20.2311C22.866 15.3188 24.9999 14.3112 24.9999 12.6905C24.9999 11.0698 22.866 8.54297 20.2311 8.54297Z" | ||
fill="#525876" | ||
/> | ||
<path | ||
id="Vector_4" | ||
d="M20.2352 8.08852C21.7013 8.08852 22.8898 6.72469 22.8898 5.04231C22.8898 3.35993 21.7013 1.99609 20.2352 1.99609C18.7691 1.99609 17.5806 3.35993 17.5806 5.04231C17.5806 6.72469 18.7691 8.08852 20.2352 8.08852Z" | ||
fill="#525876" | ||
/> | ||
<path | ||
id="Vector_5" | ||
d="M7.60492 9.56228C6.79862 8.92275 5.80175 8.56446 4.76885 8.54297C2.13395 8.54297 0 11.0737 0 12.6944C0 14.3152 2.13395 15.3227 4.76885 15.3227H4.97791C4.84023 14.9975 4.76917 14.6483 4.76885 14.2956C4.76885 12.8389 5.87725 10.9175 7.60492 9.56228Z" | ||
fill="#525876" | ||
/> | ||
<path | ||
id="Vector_6" | ||
d="M4.76888 8.08852C6.23499 8.08852 7.4235 6.72469 7.4235 5.04231C7.4235 3.35993 6.23499 1.99609 4.76888 1.99609C3.30277 1.99609 2.11426 3.35993 2.11426 5.04231C2.11426 6.72469 3.30277 8.08852 4.76888 8.08852Z" | ||
fill="#525876" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_11827_31255"> | ||
<rect width="25" height="18" fill="white" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
|
||
export default GroupChatIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters