-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
1 parent
9329875
commit b37c4f7
Showing
4 changed files
with
94 additions
and
2 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,29 @@ | ||
import clsx from 'clsx'; | ||
import React from 'react'; | ||
|
||
export const Twitter = (props: React.SVGProps<SVGSVGElement>): JSX.Element => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={36} | ||
height={36} | ||
fill="none" | ||
{...props} | ||
viewBox="0 0 24 24" | ||
className={clsx('text-black dark:text-white', props.className)} | ||
> | ||
<title>Twitter</title> | ||
<rect | ||
width={24} | ||
height={24} | ||
fill="currentColor" | ||
rx={12} | ||
className={clsx('text-gray-200 dark:text-black', props.className)} | ||
/> | ||
<path | ||
fill="currentColor" | ||
fillRule="evenodd" | ||
d="m6 6 4.62 6.75L6.098 18H7.1l3.963-4.604L14.214 18H18l-4.827-7.052L17.433 6h-1l-3.703 4.3L9.786 6H6Zm1.196.632h2.258l7.35 10.736h-2.258L7.196 6.632Z" | ||
clipRule="evenodd" | ||
/> | ||
</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