-
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
6 changed files
with
43 additions
and
42 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,24 @@ | ||
const SvgGmail = (props) => ( | ||
<svg | ||
className="svg-icon" | ||
style={{ | ||
width: "1em", | ||
height: "1em", | ||
verticalAlign: "middle", | ||
fill: "currentColor", | ||
overflow: "hidden", | ||
}} | ||
viewBox="0 0 1024 1024" | ||
version="1.1" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<path | ||
stroke="null" | ||
id="svg_1" | ||
d="m921.6,32.60952l-819.2,0c-56.32,0 -102.4,54.03987 -102.4,120.08859l0,720.53153c0,66.04872 46.08,120.08859 102.4,120.08859l819.2,0c56.32,0 102.4,-54.03987 102.4,-120.08859l0,-720.53153c0,-66.04872 -46.08,-120.08859 -102.4,-120.08859zm0,840.62012l-102.4,0l0,-528.38978l-307.2,228.16832l-307.2,-228.16832l0,528.38978l-102.4,0l0,-720.53153l61.44,0l348.16,252.18603l348.16,-252.18603l61.44,0l0,720.53153z" | ||
/> | ||
</svg> | ||
); | ||
|
||
export default SvgGmail; |
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
File renamed without changes
File renamed without changes
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 |
---|---|---|
@@ -1,38 +1,22 @@ | ||
import { BsGithub, BsLinkedin, BsFacebook } from "react-icons/bs"; | ||
import { HiMail } from "react-icons/hi"; | ||
import { RiMailSendLine } from "react-icons/ri"; | ||
import { TbMailFilled } from "react-icons/tb"; | ||
import { SiGmail } from "react-icons/si"; | ||
import { BiLogoGmail } from "react-icons/bi"; | ||
import { BsGithub, BsFacebook } from "react-icons/bs"; | ||
import SvgGmail from "../../../public/images/svg/svgGmail"; | ||
import SvgLinkedIn from "../../../public/images/svg/SvgLinkedIn"; | ||
|
||
const SocialMedia: any = () => { | ||
return ( | ||
<div className="flex items-center ml-1 gap-4"> | ||
<a | ||
href="https://www.facebook.com/divergytis" | ||
className="hover:cursor-pointer text-2xl text-tag hover:text-nav-inactive" | ||
> | ||
<BsFacebook className="hover:text-primary" /> | ||
<a href="https://www.facebook.com/divergytis" className=" "> | ||
<BsFacebook className="text-2xl text-tag hover:cursor-pointer hover:text-primary" /> | ||
</a> | ||
<a | ||
href="https://github.com/LeoGytis" | ||
className="hover:cursor-pointer text-2xl text-tag hover:text-nav-inactive" | ||
> | ||
<BsGithub className="hover:text-primary" /> | ||
<a href="https://github.com/LeoGytis"> | ||
<BsGithub className="text-2xl text-tag hover:cursor-pointer hover:text-primary" /> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/in/gytis-leonavicius-74839519a/" | ||
className="hover:cursor-pointer text-[1.7rem] text-tag hover:text-nav-inactive" | ||
> | ||
<SvgLinkedIn className="fill-tag hover:fill-primary" /> | ||
|
||
<a href="https://www.linkedin.com/in/gytis-leonavicius-74839519a/"> | ||
<SvgLinkedIn className="w-12 text-[1.7rem] fill-tag hover:cursor-pointer hover:fill-primary" /> | ||
</a> | ||
<a | ||
href="mailto:[email protected]" | ||
className="hover:cursor-pointer text-2xl text-tag hover:text-nav-inactive" | ||
> | ||
<SvgGmail className="fill-tag hover:fill-primary" /> | ||
<a href="mailto:[email protected]"> | ||
<SvgGmail className=" text-2xl fill-tag hover:cursor-pointer hover:fill-primary" /> | ||
</a> | ||
</div> | ||
); | ||
|