Home > Enterprise >  How can i make i custom font awesome icon?
How can i make i custom font awesome icon?

Time:09-27

I want to add the TikTok icon from font awesome v5. I am currently developing an application with Odoo in which the v4 of font awesome is already integrated. In v4 the TikTok icon does not exist. Can anyone give me an idea of how I can make my own icon without importing the whole v5 library?

CodePudding user response:

I don't know Odoo but try adding this to your code:

<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="tiktok" class="svg-inline--fa fa-tiktok fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z"></path></svg>

Here's how to download SVG'S from Font Awesome:

  • Related