Spaces:
Sleeping
Sleeping
File size: 599 Bytes
01d5a5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import classNames from 'classnames';
import type React from 'react';
interface TwitterXIconProps {
className?: string;
}
const TwitterXIcon: React.FC<TwitterXIconProps> = ({ className }) => {
return (
<svg
className={classNames('shrink-0 w-4 h-4', className)}
fill="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<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" />
</svg>
);
};
export default TwitterXIcon;
|