summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprofessssor <62937125+professssor@users.noreply.github.com>2023-10-30 20:33:54 +0530
committerGitHub <noreply@github.com>2023-10-30 15:03:54 +0000
commitd4b7d6eca2b61d88efbfd8b62ff2e1a38066a93d (patch)
tree20e4b9b83be9794fcb2d084495bbc1a71dc930b9
parent195bc057bb1cfee3df8b34f48309c8344ee31465 (diff)
FIX #5600 Updated the Twitter logo to X logo (#5601)
-rw-r--r--website/src/components/Icons/Twitter.tsx32
1 files changed, 17 insertions, 15 deletions
diff --git a/website/src/components/Icons/Twitter.tsx b/website/src/components/Icons/Twitter.tsx
index 8148214ce0b..b8a8b722f81 100644
--- a/website/src/components/Icons/Twitter.tsx
+++ b/website/src/components/Icons/Twitter.tsx
@@ -9,21 +9,23 @@ const TwitterIcon = ({
titleId,
...props
}: SVGProps<SVGSVGElement> & SVGRProps) => (
- <svg
- viewBox="0 0 16 14"
- width={16}
- height={14}
- fill="none"
- xmlns="http://www.w3.org/2000/svg"
- aria-labelledby={titleId}
- {...props}
- >
- {title ? <title id={titleId}>{title}</title> : null}
- <path
- d="M14.115 2.481A3.36 3.36 0 0 0 15.56.618a6.472 6.472 0 0 1-2.085.817A3.229 3.229 0 0 0 9.532.778c-1.308.718-1.985 2.246-1.654 3.73C5.24 4.37 2.78 3.092 1.114.987c-.87 1.54-.426 3.507 1.015 4.497a3.208 3.208 0 0 1-1.486-.422v.042c0 1.604 1.102 2.985 2.634 3.302-.484.135-.99.155-1.483.058.431 1.372 1.663 2.31 3.067 2.339A6.48 6.48 0 0 1 0 12.199a9.12 9.12 0 0 0 5.032 1.513 9.157 9.157 0 0 0 6.623-2.787 9.644 9.644 0 0 0 2.716-6.795c0-.146-.003-.291-.01-.436A6.767 6.767 0 0 0 16 1.951a6.433 6.433 0 0 1-1.885.53Z"
- fill="currentColor"
- />
- </svg>
+<svg
+ viewBox="0 0 24 24" // Adjust the viewBox to center the icon
+ width={10} // Set the desired width
+ height={10} // Set the desired height
+ xmlns="http://www.w3.org/2000/svg"
+ aria-labelledby={titleId}
+ {...props}
+>
+ {title ? <title id={titleId}>{title}</title> : null}
+ <path
+ d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"
+ fill="#E7E9EA"
+ />
+</svg>
+
+
+
)
export default TwitterIcon