-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #997 from BlessingEmejulu/fix-#947
Fix #947: Menu burger modifications
- Loading branch information
Showing
11 changed files
with
95 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import React, { FunctionComponent } from "react"; | ||
|
||
const GitHubIcon2: FunctionComponent<IconProps> = ({ width, color }) => { | ||
return ( | ||
<svg | ||
width={width} | ||
height={width} | ||
viewBox="0 0 28 28" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g clipPath="url(#clip0_4850_6207)"> | ||
<path | ||
d="M16.8914 5.66828C14.99 5.22643 13.0125 5.22643 11.111 5.66828C10.0128 4.99472 9.17434 4.68516 8.56456 4.5545C8.3043 4.49576 8.038 4.46809 7.77123 4.47205C7.64984 4.47534 7.52902 4.48992 7.41034 4.51561L7.39478 4.51872L7.38856 4.52183H7.38389L7.597 5.27005L7.38389 4.52339C7.27461 4.55427 7.17341 4.60871 7.08742 4.68288C7.00142 4.75705 6.93271 4.84916 6.88611 4.95272C6.42718 5.98049 6.33975 7.13581 6.63878 8.22094C5.86433 9.1595 5.44228 10.3392 5.44567 11.5561C5.44567 13.9718 6.15811 15.5958 7.373 16.6396C8.22389 17.3707 9.25678 17.7596 10.2928 17.9821C10.1297 18.4609 10.0683 18.9684 10.1123 19.4723V20.4025C9.47923 20.5347 9.04056 20.4927 8.72789 20.3901C8.33745 20.2609 8.03723 20.0012 7.74945 19.6278C7.59901 19.4266 7.45883 19.2179 7.32945 19.0025L7.24078 18.8578C7.12882 18.6717 7.01264 18.4881 6.89234 18.3072C6.59678 17.8701 6.15811 17.3225 5.44878 17.1358L4.69589 16.9383L4.30078 18.4441L5.05367 18.6416C5.17811 18.6727 5.33989 18.7894 5.60589 19.1798C5.70828 19.334 5.80683 19.4906 5.90145 19.6496L6.00723 19.8207C6.15345 20.0572 6.32145 20.3185 6.51589 20.5736C6.90945 21.0869 7.44611 21.6049 8.24256 21.8678C8.787 22.0483 9.40611 22.0918 10.1123 21.9829V24.8872C10.1123 25.0934 10.1943 25.2913 10.3401 25.4371C10.486 25.583 10.6838 25.6649 10.8901 25.6649H17.1123C17.3186 25.6649 17.5164 25.583 17.6623 25.4371C17.8082 25.2913 17.8901 25.0934 17.8901 24.8872V19.3447C17.8901 18.8547 17.8683 18.4052 17.7299 17.9867C18.7612 17.7689 19.7863 17.3801 20.6326 16.6489C21.8459 15.5974 22.5568 13.9578 22.5568 11.5281V11.5265C22.5529 10.3196 22.1307 9.15145 21.3621 8.22094C21.6608 7.1363 21.5733 5.98159 21.1148 4.95428C21.0685 4.85059 21.0001 4.75828 20.9144 4.68385C20.8287 4.60941 20.7277 4.55464 20.6186 4.52339L20.4054 5.27005C20.6186 4.52339 20.617 4.52339 20.6154 4.52339L20.6123 4.52183L20.6061 4.51872L20.5921 4.51561C20.5537 4.50562 20.5147 4.49783 20.4754 4.49228C20.394 4.48039 20.3119 4.47363 20.2297 4.47205C19.9629 4.46811 19.6966 4.49579 19.4363 4.5545C18.8281 4.68516 17.9897 4.99472 16.8914 5.66828Z" | ||
fill={color} | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_4850_6207"> | ||
<rect | ||
width="23.3333" | ||
height="23.3333" | ||
fill="white" | ||
transform="translate(2.33203 2.33301)" | ||
/> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default GitHubIcon2; |
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
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