Loading...

SF Symbol for the new X Social Network (previously Twitter)

question xcode sf symbol
Ram Patra Published on October 15, 2023
SF Symbol 5

I was looking for the SF Symbol for the latest Twitter icon, yes the X icon, but I couldn’t find any online. So, I created one here: https://github.com/rampatra/assets/blob/main/SFSymbols/X%20Social%20Network.svg. This works with the latest SF Symbol 5 so you can either import it to your SF Symbols app or use it directly in your Xcode by creating a new Symbol Image Set like shown below.

create sf symbol in xcode

Feel free to use this SF Symbol for personal or commercial projects and modify it as per your needs. Please do note that I haven’t created variations of it for Ultrathin, Bold, etc.

And, if you’re curious, this is how it looks in my new upcoming app, ToDoBar.

todobar about window

X logo is a trademark of X and you should email [email protected] for any queries.

Presentify

Take your presentation to the next level.

FaceScreen

Put your face and name on your screen.

ToDoBar

Your to-dos on your menu bar.

Ram Patra Published on October 15, 2023
Image placeholder

Keep reading

If this article was helpful, others might be too

question xcode apple September 30, 2024 Destinations vs Targets in Xcode and when to use which

In Xcode, destinations and targets serve different purposes. Here’s a breakdown of when to use each:

question swift xcode August 12, 2020 How to remove a Swift package from a project in Xcode?

If you go to Xcode > File > Swift Packages, you can see options to add a new Swift package, update them, reset caches, and resolve package versions. However, you do not see an option to remove a particular Swift package.

question swift xcode October 8, 2023 How to get rid of 'Result of call to function is unused' warning in Swift/Xcode?

In Swift, if you encounter a “Result of call to ‘function’ is unused” warning, it means that you’re calling a function that returns a value (typically a result type, such as Result or any other type), but you’re not doing anything with the result. To get rid of this warning, you have a few options depending on the specific situation: