-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(giphy): add first giphy integration
- Loading branch information
Showing
13 changed files
with
953 additions
and
127 deletions.
There are no files selected for viewing
Binary file not shown.
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,28 @@ | ||
import React, { FunctionComponent } from 'react'; | ||
|
||
export const GiphyLogo: FunctionComponent = () => ( | ||
<svg | ||
height="534" | ||
width="2500" | ||
xmlns="https://www.w3.org/2000/svg" | ||
viewBox="0 0 163.79999999999998 35" | ||
> | ||
<g fill="none" fillRule="evenodd"> | ||
<path d="M4 4h20v27H4z" fill="#000" /> | ||
<g fillRule="nonzero"> | ||
<path d="M0 3h4v29H0z" fill="#04ff8e" /> | ||
<path d="M24 11h4v21h-4z" fill="#8e2eff" /> | ||
<path d="M0 31h28v4H0z" fill="#00c5ff" /> | ||
<path d="M0 0h16v4H0z" fill="#fff152" /> | ||
<path d="M24 8V4h-4V0h-4v12h12V8" fill="#ff5b5b" /> | ||
<path d="M24 16v-4h4" fill="#551c99" /> | ||
</g> | ||
<path d="M16 0v4h-4" fill="#999131" /> | ||
<path | ||
d="M59.1 12c-2-1.9-4.4-2.4-6.2-2.4-4.4 0-7.3 2.6-7.3 8 0 3.5 1.8 7.8 7.3 7.8 1.4 0 3.7-.3 5.2-1.4v-3.5h-6.9v-6h13.3v12.1c-1.7 3.5-6.4 5.3-11.7 5.3-10.7 0-14.8-7.2-14.8-14.3S42.7 3.2 52.9 3.2c3.8 0 7.1.8 10.7 4.4zm9.1 19.2V4h7.6v27.2zm20.1-7.4v7.3h-7.7V4h13.2c7.3 0 10.9 4.6 10.9 9.9 0 5.6-3.6 9.9-10.9 9.9zm0-6.5h5.5c2.1 0 3.2-1.6 3.2-3.3 0-1.8-1.1-3.4-3.2-3.4h-5.5zM125 31.2V20.9h-9.8v10.3h-7.7V4h7.7v10.3h9.8V4h7.6v27.2zm24.2-17.9l5.9-9.3h8.7v.3l-10.8 16v10.8h-7.7V20.3L135 4.3V4h8.7z" | ||
fill="#fff" | ||
fillRule="nonzero" | ||
/> | ||
</g> | ||
</svg> | ||
); |
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,20 @@ | ||
import React, { FunctionComponent } from 'react'; | ||
|
||
export const GiphyCloseIcon: FunctionComponent = () => ( | ||
<svg | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" | ||
fill="white" | ||
/> | ||
<path | ||
d="M8 15.548L8.95198 16.5L12.0028 13.4492L15.0536 16.5L16 15.5536L12.9492 12.5028L16 9.45198L15.048 8.5L11.9972 11.5508L8.94642 8.5L8 9.44642L11.0508 12.4972L8 15.548Z" | ||
fill="black" | ||
/> | ||
</svg> | ||
); |
Oops, something went wrong.