{"id":40437,"date":"2026-02-27T00:41:32","date_gmt":"2026-02-26T21:41:32","guid":{"rendered":"https:\/\/fatihsoysal.com\/blog\/?p=40437"},"modified":"2026-02-27T00:41:32","modified_gmt":"2026-02-26T21:41:32","slug":"how-to-use-font-awesome-5-with-react","status":"publish","type":"post","link":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/","title":{"rendered":"How To Use Font Awesome 5 with React"},"content":{"rendered":"<p><body><\/p>\n<div style=\"font-family: Arial, sans-serif; line-height: 1.6;\">\n<h2 id=\"giris\">Giri\u015f<\/h2>\n<p>Modern web uygulamalar\u0131nda kullan\u0131c\u0131 deneyimini zenginle\u015ftiren g\u00f6rsel \u00f6\u011felerden biri de ikonlard\u0131r. \u0130konlar, karma\u015f\u0131k bilgileri h\u0131zl\u0131 ve sezgisel bir \u015fekilde iletmenin yan\u0131 s\u0131ra, uygulaman\u0131za estetik bir dokunu\u015f katar. Font Awesome, web geli\u015ftiricileri aras\u0131nda en pop\u00fcler ikon k\u00fct\u00fcphanelerinden biridir. Binlerce farkl\u0131 stil ve kategoride ikon sunarak, projenizin her ihtiyac\u0131n\u0131 kar\u015f\u0131layabilir.<\/p>\n<p>React, dinamik kullan\u0131c\u0131 aray\u00fczleri olu\u015fturmak i\u00e7in kullan\u0131lan g\u00fc\u00e7l\u00fc bir JavaScript k\u00fct\u00fcphanesidir. Font Awesome&#8217;\u0131n esnekli\u011fi ile React&#8217;\u0131n bile\u015fen tabanl\u0131 yap\u0131s\u0131 birle\u015fti\u011finde, ikon y\u00f6netimi olduk\u00e7a kolay ve verimli hale gelir. Bu rehberde, Font Awesome 5&#8217;i bir React projesinde nas\u0131l kuraca\u011f\u0131n\u0131z\u0131, temel ikonlar\u0131 nas\u0131l kullanaca\u011f\u0131n\u0131z\u0131 ve ikonlar\u0131 nas\u0131l \u00f6zelle\u015ftirece\u011finizi ad\u0131m ad\u0131m \u00f6\u011freneceksiniz. Amac\u0131m\u0131z, uygulaman\u0131za profesyonel ve etkile\u015fimli ikonlar eklemeniz i\u00e7in kapsaml\u0131 bir yol haritas\u0131 sunmakt\u0131r.<\/p>\n<h2 id=\"kurulum-ve-temel-kullanim\">Kurulum ve Temel Kullan\u0131m<\/h2>\n<p>Font Awesome&#8217;\u0131 React projenizde kullanmaya ba\u015flamak i\u00e7in \u00f6ncelikle gerekli paketleri kurman\u0131z ve ard\u0131ndan ilk ikonunuzu eklemeniz gerekmektedir.<\/p>\n<h3 id=\"react-projesini-hazirlama\">React Projesini Haz\u0131rlama<\/h3>\n<p>E\u011fer hen\u00fcz bir React projeniz yoksa, <code>create-react-app<\/code> kullanarak h\u0131zl\u0131ca yeni bir proje olu\u015fturabilirsiniz:<\/p>\n<pre><code class=\"language-bash\">npx create-react-app my-font-awesome-app\ncd my-font-awesome-app<\/code><\/pre>\n<p>Bu komutlar, projenizin temel yap\u0131s\u0131n\u0131 olu\u015fturacak ve proje dizinine ge\u00e7i\u015f yapman\u0131z\u0131 sa\u011flayacakt\u0131r.<\/p>\n<h3 id=\"font-awesome-paketlerini-yukleme\">Font Awesome Paketlerini Y\u00fckleme<\/h3>\n<p>Font Awesome&#8217;\u0131 React ile kullanmak i\u00e7in birka\u00e7 ana pakete ihtiyac\u0131m\u0131z var:<\/p>\n<p>1.  <code>@fortawesome\/fontawesome-svg-core<\/code>: Font Awesome&#8217;\u0131n temel SVG i\u015flevselli\u011fini ve ikon k\u00fct\u00fcphanesi y\u00f6netimini sa\u011flar.<br \/>\n2.  <code>@fortawesome\/react-fontawesome<\/code>: Font Awesome ikonlar\u0131n\u0131 React bile\u015fenleri olarak kullanmam\u0131z\u0131 sa\u011flayan adapt\u00f6r paketi.<br \/>\n3.  \u0130kon setleri: Hangi ikonlar\u0131 kullanmak istedi\u011finize ba\u011fl\u0131 olarak farkl\u0131 paketler y\u00fcklemeniz gerekir. En yayg\u0131n olanlar\u0131 \u015funlard\u0131r:<br \/>\n    *   <code>@fortawesome\/free-solid-svg-icons<\/code>: D\u00fcz (solid) stil ikonlar (genellikle <code>fas<\/code> \u00f6neki ile kullan\u0131l\u0131r).<br \/>\n    *   <code>@fortawesome\/free-regular-svg-icons<\/code>: Konturlu (regular) stil ikonlar (genellikle <code>far<\/code> \u00f6neki ile kullan\u0131l\u0131r).<br \/>\n    *   <code>@fortawesome\/free-brands-svg-icons<\/code>: Marka ikonlar\u0131 (Twitter, Facebook vb.) (genellikle <code>fab<\/code> \u00f6neki ile kullan\u0131l\u0131r).<\/p>\n<p>Bu paketleri projenize y\u00fcklemek i\u00e7in a\u015fa\u011f\u0131daki komutlar\u0131 kullan\u0131n:<\/p>\n<pre><code class=\"language-bash\">npm install @fortawesome\/fontawesome-svg-core @fortawesome\/react-fontawesome @fortawesome\/free-solid-svg-icons @fortawesome\/free-regular-svg-icons @fortawesome\/free-brands-svg-icons\n<h2>veya yarn kullan\u0131yorsan\u0131z:<\/h2>\n<h2>yarn add @fortawesome\/fontawesome-svg-core @fortawesome\/react-fontawesome @fortawesome\/free-solid-svg-icons @fortawesome\/free-regular-svg-icons @fortawesome\/free-brands-svg-icons<\/code><\/pre>\n<\/h2>\n<h3 id=\"ilk-ikonunuzu-ekleme\">\u0130lk \u0130konunuzu Ekleme<\/h3>\n<p>Paketler y\u00fcklendikten sonra, bir ikon eklemek olduk\u00e7a basittir. \u0130konlar\u0131 do\u011frudan bile\u015fenlerinize import edip kullanabilirsiniz. \u00d6rne\u011fin, <code>faCoffee<\/code> ikonunu <code>App.js<\/code> dosyan\u0131za ekleyelim:<\/p>\n<pre><code class=\"language-jsx\">\/\/ src\/App.js\nimport React from 'react';\nimport { FontAwesomeIcon } from '@fortawesome\/react-fontawesome';\nimport { faCoffee } from '@fortawesome\/free-solid-svg-icons'; \/\/ Kullanaca\u011f\u0131m\u0131z ikon\n\nfunction App() {\n  return (\n    <div className=\"App\">\n      \n      <p>\n        Kahve ikonu: <FontAwesomeIcon icon={faCoffee} \/>\n      <\/p>\n      <p>\n        Font Awesome ile ikonlar\u0131 React uygulamalar\u0131n\u0131za eklemek \u00e7ok kolay!\n      <\/p>\n    <\/div>\n  );\n}\n\nexport default App;<\/code><\/pre>\n<p>Bu \u00f6rnekte:<br \/>\n*   <code>FontAwesomeIcon<\/code> bile\u015fenini <code>@fortawesome\/react-fontawesome<\/code> paketinden i\u00e7e aktard\u0131k.<br \/>\n*   Kullanmak istedi\u011fimiz <code>faCoffee<\/code> ikonunu <code>@fortawesome\/free-solid-svg-icons<\/code> paketinden i\u00e7e aktard\u0131k.<br \/>\n*   <code>FontAwesomeIcon<\/code> bile\u015fenine <code>icon<\/code> prop&#8217;u arac\u0131l\u0131\u011f\u0131yla <code>faCoffee<\/code> ikonunu ge\u00e7irdik.<\/p>\n<p>Projenizi ba\u015flat\u0131p (genellikle <code>npm start<\/code> ile) taray\u0131c\u0131n\u0131zda g\u00f6r\u00fcnt\u00fcledi\u011finizde, kahve ikonunun ba\u015far\u0131yla eklendi\u011fini g\u00f6receksiniz.<\/p>\n<h2 id=\"ikon-kutuphanesini-yonetme\">\u0130kon K\u00fct\u00fcphanesini Y\u00f6netme<\/h2>\n<p>Uygulaman\u0131zda \u00e7ok say\u0131da ikon kullanmaya ba\u015flad\u0131\u011f\u0131n\u0131zda, her ikonu ayr\u0131 ayr\u0131 import etmek ve her yerde nesne olarak ge\u00e7mek pratik olmayabilir. Font Awesome, ikonlar\u0131 global bir k\u00fct\u00fcphaneye ekleyerek bu s\u00fcreci optimize etmenizi sa\u011flar. Bu yakla\u015f\u0131m, hem kodunuzu daha temiz tutar hem de uygulaman\u0131z\u0131n performans\u0131na katk\u0131da bulunabilir.<\/p>\n<h3 id=\"ikonlari-kutuphaneye-ekleme\">\u0130konlar\u0131 K\u00fct\u00fcphaneye Ekleme<\/h3>\n<p>\u0130konlar\u0131 global k\u00fct\u00fcphaneye eklemek i\u00e7in <code>@fortawesome\/fontawesome-svg-core<\/code> paketinden <code>library<\/code> nesnesini kullan\u0131r\u0131z. Genellikle bu i\u015flemi uygulaman\u0131z\u0131n ana giri\u015f noktas\u0131 olan <code>src\/index.js<\/code> dosyas\u0131nda veya \u00f6zel bir <code>fontawesome.js<\/code> dosyas\u0131nda yapmak en iyi uygulamad\u0131r.<\/p>\n<p>\u00d6ncelikle, <code>src\/fontawesome.js<\/code> ad\u0131nda yeni bir dosya olu\u015ftural\u0131m:<\/p>\n<pre><code class=\"language-jsx\">\/\/ src\/fontawesome.js\nimport { library } from '@fortawesome\/fontawesome-svg-core';\nimport { faCoffee, faUser, faCog, faSpinner } from '@fortawesome\/free-solid-svg-icons';\nimport { faGithub, faTwitter } from '@fortawesome\/free-brands-svg-icons';\nimport { faStar } from '@fortawesome\/free-regular-svg-icons'; \/\/ \u00d6rne\u011fin, d\u00fczenli bir ikon\n\n\/\/ Kullanaca\u011f\u0131m\u0131z t\u00fcm ikonlar\u0131 k\u00fct\u00fcphaneye ekliyoruz\nlibrary.add(\n  faCoffee,\n  faUser,\n  faCog,\n  faSpinner,\n  faGithub,\n  faTwitter,\n  faStar\n);<\/code><\/pre>\n<p>\u015eimdi bu dosyay\u0131 <code>src\/index.js<\/code> dosyan\u0131zda i\u00e7e aktar\u0131n. Bu \u015fekilde, uygulama ba\u015flarken t\u00fcm bu ikonlar global k\u00fct\u00fcphaneye eklenmi\u015f olacakt\u0131r:<\/p>\n<pre><code class=\"language-jsx\">\/\/ src\/index.js\nimport React from 'react';\nimport ReactDOM from 'react-dom\/client';\nimport '.\/index.css';\nimport App from '.\/App';\nimport '.\/fontawesome'; \/\/ Font Awesome k\u00fct\u00fcphanemizi buraya import ediyoruz\n\nconst root = ReactDOM.createRoot(document.getElementById('root'));\nroot.render(\n  <React.StrictMode>\n    <App \/>\n  <\/React.StrictMode>\n);<\/code><\/pre>\n<p>Art\u0131k ikonlar\u0131 <code>App.js<\/code> veya di\u011fer bile\u015fenlerinizde kullan\u0131rken, sadece ikonun ad\u0131n\u0131 (string olarak) ve stil \u00f6nekini (e\u011fer farkl\u0131 bir stilse) belirtmeniz yeterlidir. \u0130konlar\u0131 ayr\u0131 ayr\u0131 import etmenize gerek kalmaz:<\/p>\n<pre><code class=\"language-jsx\">\/\/ src\/App.js\nimport React from 'react';\nimport { FontAwesomeIcon } from '@fortawesome\/react-fontawesome';\n\/\/ Art\u0131k faCoffee'yi burada import etmemize gerek yok!\n\nfunction App() {\n  return (\n    <div className=\"App\">\n      \n      <p>\n        Kahve ikonu: <FontAwesomeIcon icon=\"coffee\" \/>\n      <\/p>\n      <p>\n        Kullan\u0131c\u0131 ikonu: <FontAwesomeIcon icon=\"user\" \/>\n      <\/p>\n      <p>\n        Ayarlar ikonu: <FontAwesomeIcon icon=\"cog\" \/>\n      <\/p>\n      <p>\n        GitHub ikonu: <FontAwesomeIcon icon={['fab', 'github']} \/>\n      <\/p>\n      <p>\n        Bo\u015f y\u0131ld\u0131z ikonu: <FontAwesomeIcon icon={['far', 'star']} \/>\n      <\/p>\n    <\/div>\n  );\n}\n\nexport default App;<\/code><\/pre>\n<p>Bu y\u00f6ntem, kod tekrar\u0131n\u0131 azalt\u0131r ve uygulaman\u0131z\u0131n daha d\u00fczenli olmas\u0131n\u0131 sa\u011flar.<\/p>\n<h3 id=\"farkli-stil-ikonlari-kullanma\">Farkl\u0131 Stil \u0130konlar\u0131 Kullanma<\/h3>\n<p>Font Awesome, ikonlar\u0131 farkl\u0131 stillerde sunar: Solid (dolu), Regular (konturlu), Light (hafif), Thin (ince) ve Brands (markalar). Free s\u00fcr\u00fcmde Solid, Regular ve Brands stillerine eri\u015febilirsiniz.<\/p>\n<p>K\u00fct\u00fcphaneye ikon eklerken, ikonun hangi paketten geldi\u011fi \u00f6nemi yoktur. <code>library.add()<\/code> fonksiyonu onu do\u011fru \u015fekilde i\u015fler. Ancak, <code>FontAwesomeIcon<\/code> bile\u015feninde kullan\u0131rken, ayn\u0131 isimde farkl\u0131 stillerde ikonlar varsa, stil \u00f6nekini belirtmeniz gerekir:<\/p>\n<p>*   <strong>Solid (Dolu):<\/strong> Varsay\u0131lan stil oldu\u011fu i\u00e7in genellikle \u00f6nek belirtmeye gerek kalmaz, ancak a\u00e7\u0131k\u00e7a belirtmek isterseniz <code>icon={['fas', 'coffee']}<\/code> \u015feklinde kullanabilirsiniz.<br \/>\n*   <strong>Regular (Konturlu):<\/strong> <code>icon={['far', 'star']}<\/code><br \/>\n*   <strong>Brands (Markalar):<\/strong> <code>icon={['fab', 'github']}<\/code><\/p>\n<p>Yukar\u0131daki <code>App.js<\/code> \u00f6rne\u011finde bu kullan\u0131mlar\u0131 g\u00f6rebilirsiniz. Bu esneklik, uygulaman\u0131z\u0131n tasar\u0131m\u0131na uygun farkl\u0131 g\u00f6rsel a\u011f\u0131rl\u0131klara sahip ikonlar\u0131 kolayca kullanman\u0131z\u0131 sa\u011flar.<\/p>\n<h2 id=\"ikonlari-ozellestirme-ve-gelismis-kullanim\">\u0130konlar\u0131 \u00d6zelle\u015ftirme ve Geli\u015fmi\u015f Kullan\u0131m<\/h2>\n<p>Font Awesome, ikonlar\u0131n\u0131z\u0131 uygulaman\u0131z\u0131n tasar\u0131m\u0131na uyacak \u015fekilde \u00f6zelle\u015ftirmeniz i\u00e7in \u00e7e\u015fitli prop&#8217;lar sunar. Bu \u00f6zelle\u015ftirmeler, ikonlar\u0131n\u0131z\u0131n boyutunu, rengini, d\u00f6n\u00fc\u015f\u00fcn\u00fc ve animasyonunu kontrol etmenize olanak tan\u0131r.<\/p>\n<h3 id=\"boyutlandirma\">Boyutland\u0131rma<\/h3>\n<p><code>size<\/code> prop&#8217;u ile ikonlar\u0131n\u0131z\u0131n boyutunu kolayca de\u011fi\u015ftirebilirsiniz. De\u011ferler <code>xs<\/code>, <code>sm<\/code>, <code>lg<\/code>, <code>2x<\/code>, <code>3x<\/code>, &#8230;, <code>10x<\/code> \u015feklinde olabilir.<\/p>\n<pre><code class=\"language-jsx\">import React from 'react';\nimport { FontAwesomeIcon } from '@fortawesome\/react-fontawesome';\n\/\/ fontawesome.js dosyas\u0131nda ikonlar\u0131 k\u00fct\u00fcphaneye ekledi\u011fimizi varsay\u0131yoruz\n\nfunction IconBoyutlari() {\n  return (\n    <div>\n      <h3>\u0130kon Boyutland\u0131rma<\/h3>\n      <p>\n        K\u00fc\u00e7\u00fck: <FontAwesomeIcon icon=\"coffee\" size=\"xs\" \/>\n      <\/p>\n      <p>\n        Orta: <FontAwesomeIcon icon=\"coffee\" size=\"lg\" \/>\n      <\/p>\n      <p>\n        B\u00fcy\u00fck: <FontAwesomeIcon icon=\"coffee\" size=\"3x\" \/>\n      <\/p>\n      <p>\n        \u00c7ok B\u00fcy\u00fck: <FontAwesomeIcon icon=\"coffee\" size=\"5x\" \/>\n      <\/p>\n    <\/div>\n  );\n}\n\nexport default IconBoyutlari;<\/code><\/pre>\n<h3 id=\"renklendirme\">Renklendirme<\/h3>\n<p>\u0130konlar\u0131n\u0131z\u0131n rengini de\u011fi\u015ftirmek i\u00e7in <code>color<\/code> prop&#8217;unu kullanabilir veya CSS ile stil verebilirsiniz.<\/p>\n<pre><code class=\"language-jsx\">import React from 'react';\nimport { FontAwesomeIcon } from '@fortawesome\/react-fontawesome';\n\nfunction IconRenkleri() {\n  return (\n    <div>\n      <h3>\u0130kon Renklendirme<\/h3>\n      <p>\n        K\u0131rm\u0131z\u0131 kahve: <FontAwesomeIcon icon=\"coffee\" color=\"red\" \/>\n      <\/p>\n      <p>\n        Mavi kullan\u0131c\u0131: <FontAwesomeIcon icon=\"user\" color=\"#007bff\" \/>\n      <\/p>\n      <p style={{ color: 'green' }}>\n        Ye\u015fil ayarlar (CSS ile): <FontAwesomeIcon icon=\"cog\" \/>\n      <\/p>\n    <\/div>\n  );\n}\n\nexport default IconRenkleri;<\/code><\/pre>\n<p>CSS ile renklendirme yaparken, <code>FontAwesomeIcon<\/code> bile\u015feni asl\u0131nda bir SVG olu\u015fturdu\u011fu i\u00e7in, <code>color<\/code> \u00f6zelli\u011fi do\u011frudan SVG&#8217;nin <code>fill<\/code> \u00f6zelli\u011fini etkiler.<\/p>\n<h3 id=\"dondurme-ve-animasyon\">D\u00f6nd\u00fcrme ve Animasyon<\/h3>\n<p>Font Awesome, ikonlara basit animasyonlar ve d\u00f6n\u00fc\u015fler uygulaman\u0131z\u0131 sa\u011flayan kullan\u0131\u015fl\u0131 prop&#8217;lar sunar.<\/p>\n<p>*   <code>spin<\/code>: \u0130konu s\u00fcrekli d\u00f6nd\u00fcr\u00fcr (y\u00fckleme ikonlar\u0131 i\u00e7in ideal).<br \/>\n*   <code>pulse<\/code>: \u0130konu sekiz ad\u0131ml\u0131 bir d\u00f6n\u00fc\u015fle d\u00f6nd\u00fcr\u00fcr (daha yumu\u015fak bir animasyon).<br \/>\n*   <code>rotate<\/code>: \u0130konu belirli bir derece (90, 180, 270) d\u00f6nd\u00fcr\u00fcr.<\/p>\n<pre><code class=\"language-jsx\">import React from 'react';\nimport { FontAwesomeIcon } from '@fortawesome\/react-fontawesome';\n\nfunction IconAnimasyonlari() {\n  return (\n    <div>\n      <h3>\u0130kon Animasyonlar\u0131 ve D\u00f6n\u00fc\u015fleri<\/h3>\n      <p>\n        D\u00f6nen y\u00fckleme ikonu: <FontAwesomeIcon icon=\"spinner\" spin size=\"2x\" \/>\n      <\/p>\n      <p>\n        Nab\u0131z atan ayarlar ikonu: <FontAwesomeIcon icon=\"cog\" pulse size=\"2x\" \/>\n      <\/p>\n      <p>\n        90 derece d\u00f6nm\u00fc\u015f kullan\u0131c\u0131 ikonu: <FontAwesomeIcon icon=\"user\" rotate={90} size=\"2x\" \/>\n      <\/p>\n      <p>\n        180 derece d\u00f6nm\u00fc\u015f kahve ikonu: <FontAwesomeIcon icon=\"coffee\" rotate={180} size=\"2x\" \/>\n      <\/p>\n    <\/div>\n  );\n}\n\nexport default IconAnimasyonlari;<\/code><\/pre>\n<h3 id=\"sabit-genislik\">Sabit Geni\u015flik<\/h3>\n<p>Farkl\u0131 ikonlar\u0131n geni\u015flikleri genellikle farkl\u0131d\u0131r. Bir liste veya men\u00fcde ikonlar\u0131 hizalamak istedi\u011finizde bu durum g\u00f6rsel tutars\u0131zl\u0131\u011fa neden olabilir. <code>fixedWidth<\/code> prop&#8217;u, t\u00fcm ikonlara ayn\u0131 geni\u015fli\u011fi uygulayarak bu sorunu \u00e7\u00f6zer.<\/p>\n<pre><code class=\"language-jsx\">import React from 'react';\nimport { FontAwesomeIcon } from '@fortawesome\/react-fontawesome';\nimport { faHome, faInfoCircle, faEnvelope } from '@fortawesome\/free-solid-svg-icons';\nimport { library } from '@fortawesome\/fontawesome-svg-core';\nlibrary.add(faHome, faInfoCircle, faEnvelope); \/\/ Bu ikonlar\u0131 da k\u00fct\u00fcphaneye ekleyelim\n\nfunction SabitGenislik() {\n  return (\n    <div>\n      <h3>Sabit Geni\u015flikli \u0130konlar<\/h3>\n      <ul style={{ listStyleType: 'none', padding: 0 }}>\n        <li><FontAwesomeIcon icon=\"home\" fixedWidth \/> Ana Sayfa<\/li>\n        <li><FontAwesomeIcon icon=\"info-circle\" fixedWidth \/> Hakk\u0131m\u0131zda<\/li>\n        <li><FontAwesomeIcon icon=\"envelope\" fixedWidth \/> \u0130leti\u015fim<\/li>\n      <\/ul>\n      <p>\n        <code>fixedWidth<\/code> olmadan ikonlar:\n      <\/p>\n      <ul style={{ listStyleType: 'none', padding: 0 }}>\n        <li><FontAwesomeIcon icon=\"home\" \/> Ana Sayfa<\/li>\n        <li><FontAwesomeIcon icon=\"info-circle\" \/> Hakk\u0131m\u0131zda<\/li>\n        <li><FontAwesomeIcon icon=\"envelope\" \/> \u0130leti\u015fim<\/li>\n      <\/ul>\n    <\/div>\n  );\n}\n\nexport default SabitGenislik;<\/code><\/pre>\n<p>Bu \u00f6rnek, <code>fixedWidth<\/code> kullan\u0131m\u0131n\u0131n metinle birlikte ikonlar\u0131 nas\u0131l hizalad\u0131\u011f\u0131n\u0131 a\u00e7\u0131k\u00e7a g\u00f6stermektedir.<\/p>\n<h3 id=\"ikonlari-link-veya-buton-icinde-kullanma\">\u0130konlar\u0131 Link veya Buton \u0130\u00e7inde Kullanma<\/h3>\n<p>\u0130konlar genellikle kullan\u0131c\u0131 aray\u00fcz\u00fcnde butonlar veya linklerle birlikte kullan\u0131l\u0131r. <code>FontAwesomeIcon<\/code> bile\u015fenini do\u011frudan di\u011fer HTML \u00f6\u011felerinin i\u00e7ine yerle\u015ftirebilirsiniz.<\/p>\n<pre><code class=\"language-jsx\">import React from 'react';\nimport { FontAwesomeIcon } from '@fortawesome\/react-fontawesome';\n\nfunction ButonVeLinkler() {\n  return (\n    <div>\n      <h3>Buton ve Link \u0130\u00e7inde \u0130konlar<\/h3>\n      <button style={{ marginRight: '10px', padding: '8px 15px', display: 'inline-flex', alignItems: 'center', gap: '5px' }}>\n        <FontAwesomeIcon icon=\"save\" \/> Kaydet\n      <\/button>\n      <a href=\"#\" style={{ textDecoration: 'none', color: '#007bff', display: 'inline-flex', alignItems: 'center', gap: '5px' }}>\n        <FontAwesomeIcon icon=\"link\" \/> Daha Fazla Oku\n      <\/a>\n      <p style={{ marginTop: '20px' }}>\n        <FontAwesomeIcon icon=\"exclamation-triangle\" color=\"orange\" \/> Dikkat! Bu bir uyar\u0131d\u0131r.\n      <\/p>\n    <\/div>\n  );\n}\n\nexport default ButonVeLinkler;<\/code><\/pre>\n<p>Bu kullan\u0131m, ikonlar\u0131n metinle birlikte nas\u0131l g\u00fczel bir \u015fekilde hizaland\u0131\u011f\u0131n\u0131 g\u00f6sterir ve kullan\u0131c\u0131 deneyimini art\u0131r\u0131r.<\/p>\n<h2 id=\"sonuc-ve-sss\">Sonu\u00e7 ve S\u0131k\u00e7a Sorulan Sorular<\/h2>\n<p>Bu rehberde, Font Awesome 5&#8217;i bir React projesinde kullanman\u0131n temel ad\u0131mlar\u0131n\u0131 ve geli\u015fmi\u015f \u00f6zelle\u015ftirme se\u00e7eneklerini detayl\u0131 bir \u015fekilde ele ald\u0131k. Gerekli paketlerin kurulumundan ikonlar\u0131n global k\u00fct\u00fcphaneye eklenmesine, boyutland\u0131rma, renklendirme ve animasyon gibi \u00f6zelle\u015ftirmelere kadar bir\u00e7ok konuya de\u011findik. Art\u0131k React uygulamalar\u0131n\u0131za g\u00fc\u00e7l\u00fc ve estetik ikonlar eklemek i\u00e7in sa\u011flam bir bilgi birikimine sahipsiniz.<\/p>\n<p>Font Awesome, ikonlar\u0131 SVG olarak render etti\u011fi i\u00e7in, taray\u0131c\u0131 uyumlulu\u011fu ve \u00f6l\u00e7eklenebilirlik a\u00e7\u0131s\u0131ndan da avantajlar sunar. React ile entegrasyonu sayesinde, bile\u015fen tabanl\u0131 geli\u015ftirme yakla\u015f\u0131m\u0131n\u0131za m\u00fckemmel bir \u015fekilde uyum sa\u011flar. Daha fazla ikon se\u00e7ene\u011fi ve geli\u015fmi\u015f \u00f6zellikler i\u00e7in Font Awesome&#8217;\u0131n resmi belgelerini incelemekten \u00e7ekinmeyin.<\/p>\n<h3 id=\"sss\">S\u0131k\u00e7a Sorulan Sorular<\/h3>\n<p><strong>S: Font Awesome 6&#8217;ya ge\u00e7meli miyim?<\/strong><br \/>\n<strong>C:<\/strong> Bu rehber Font Awesome 5 \u00fczerine odaklanm\u0131\u015f olsa da, Font Awesome 6 bir\u00e7ok yeni ikon, stil (\u00f6rne\u011fin duotone) ve performans iyile\u015ftirmesi sunar. E\u011fer yeni bir projeye ba\u015fl\u0131yorsan\u0131z veya mevcut projenizi g\u00fcncellemeyi d\u00fc\u015f\u00fcn\u00fcyorsan\u0131z, FA6&#8217;ya ge\u00e7i\u015f yapmay\u0131 d\u00fc\u015f\u00fcnebilirsiniz. Ge\u00e7i\u015f s\u00fcreci benzerdir, ancak baz\u0131 paket isimleri veya kullan\u0131mlarda k\u00fc\u00e7\u00fck farkl\u0131l\u0131klar olabilir. Resmi FA6 belgelerini incelemeniz \u00f6nerilir.<\/p>\n<p><strong>S: Pro s\u00fcr\u00fcm\u00fcne ihtiyac\u0131m var m\u0131?<\/strong><br \/>\n<strong>C:<\/strong> Font Awesome&#8217;\u0131n \u00fccretsiz s\u00fcr\u00fcm\u00fc (<code>free-solid<\/code>, <code>free-regular<\/code>, <code>free-brands<\/code>) binlerce ikon sunar ve \u00e7o\u011fu proje i\u00e7in fazlas\u0131yla yeterlidir. Pro s\u00fcr\u00fcm\u00fc, daha fazla ikon, duotone gibi \u00f6zel stiller, daha fazla ara\u00e7 ve \u00f6ncelikli destek gibi ek avantajlar sunar. Projenizin \u00f6zel ihtiya\u00e7lar\u0131na ba\u011fl\u0131 olarak (\u00f6rne\u011fin, \u00e7ok spesifik bir ikon seti veya duotone esteti\u011fi gerekiyorsa) Pro s\u00fcr\u00fcm\u00fcn\u00fc de\u011ferlendirebilirsiniz.<\/p>\n<p><strong>S: \u0130konlar\u0131m neden g\u00f6r\u00fcnm\u00fcyor?<\/strong><br \/>\n<strong>C:<\/strong> Bu durumun birka\u00e7 yayg\u0131n nedeni olabilir:<br \/>\n*   <strong>Paket eksikli\u011fi:<\/strong> Gerekli Font Awesome paketlerini (<code>@fortawesome\/fontawesome-svg-core<\/code>, <code>@fortawesome\/react-fontawesome<\/code> ve ilgili ikon paketleri) y\u00fckledi\u011finizden emin olun.<br \/>\n*   <strong>\u0130kon k\u00fct\u00fcphanesine eklenmedi:<\/strong> E\u011fer ikonlar\u0131 string olarak kullan\u0131yorsan\u0131z (<code>icon=\"coffee\"<\/code> gibi), <code>library.add()<\/code> ile ikonlar\u0131 global k\u00fct\u00fcphaneye eklemeyi unutmu\u015f olabilirsiniz.<br \/>\n*   <strong>Yanl\u0131\u015f ikon ad\u0131 veya \u00f6neki:<\/strong> \u0130kon ad\u0131n\u0131 veya stil \u00f6nekini (\u00f6rne\u011fin <code>['fab', 'github']<\/code> yerine <code>['fas', 'github']<\/code>) yanl\u0131\u015f yazm\u0131\u015f olabilirsiniz.<br \/>\n*   <strong>CSS \u00e7ak\u0131\u015fmalar\u0131:<\/strong> Nadiren de olsa, kendi CSS&#8217;iniz Font Awesome&#8217;\u0131n stilini etkileyebilir. Taray\u0131c\u0131n\u0131z\u0131n geli\u015ftirici ara\u00e7lar\u0131n\u0131 kullanarak inceleme yap\u0131n.<\/p>\n<p><strong>S: React Native ile kullanabilir miyim?<\/strong><br \/>\n<strong>C:<\/strong> Evet, Font Awesome&#8217;\u0131 React Native ile de kullanabilirsiniz, ancak farkl\u0131 bir paket (<code>@fortawesome\/react-native-fontawesome<\/code>) ve kurulum gerektirir. Bu rehber web tabanl\u0131 React uygulamalar\u0131na odaklanm\u0131\u015ft\u0131r, ancak React Native i\u00e7in de benzer bir mant\u0131kla \u00e7al\u0131\u015f\u0131r.<\/p>\n<p><strong>S: Kendi SVG&#8217;lerimi Font Awesome bile\u015feni gibi kullanabilir miyim?<\/strong><br \/>\n<strong>C:<\/strong> Evet, Font Awesome <code>@fortawesome\/fontawesome-svg-core<\/code> k\u00fct\u00fcphanesi arac\u0131l\u0131\u011f\u0131yla kendi \u00f6zel SVG ikonlar\u0131n\u0131z\u0131 kaydetmenize ve bunlar\u0131 <code>FontAwesomeIcon<\/code> bile\u015feni gibi kullanman\u0131za olanak tan\u0131r. Bu, ileri d\u00fczey bir kullan\u0131m olup, kendi SVG verilerinizi belirli bir formatta tan\u0131mlaman\u0131z\u0131 gerektirir. Resmi Font Awesome belgelerinde bu konuda daha fazla bilgi bulabilirsiniz.<\/p>\n<\/div>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"Giri\u015f Modern web uygulamalar\u0131nda kullan\u0131c\u0131 deneyimini zenginle\u015ftiren g\u00f6rsel \u00f6\u011felerden biri de ikonlard\u0131r.","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"csco_page_header_type":"","csco_page_load_nextpost":"","csco_page_subscribe_form":"","csco_page_contact_form":"","footnotes":""},"categories":[128],"tags":[],"class_list":{"0":"post-40437","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-react","7":"cs-entry","8":"cs-video-wrap"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.5 (Yoast SEO v25.3.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Use Font Awesome 5 with React - Kodlar\u0131n Gizemli D\u00fcnyas\u0131<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Use Font Awesome 5 with React\" \/>\n<meta property=\"og:description\" content=\"Giri\u015f Modern web uygulamalar\u0131nda kullan\u0131c\u0131 deneyimini zenginle\u015ftiren g\u00f6rsel \u00f6\u011felerden biri de ikonlard\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/\" \/>\n<meta property=\"og:site_name\" content=\"Kodlar\u0131n Gizemli D\u00fcnyas\u0131\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-26T21:41:32+00:00\" \/>\n<meta name=\"author\" content=\"Fatih Soysal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fatih Soysal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/\"},\"author\":{\"name\":\"Fatih Soysal\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"headline\":\"How To Use Font Awesome 5 with React\",\"datePublished\":\"2026-02-26T21:41:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/\"},\"wordCount\":1537,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"articleSection\":[\"React\"],\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#respond\"]}],\"copyrightYear\":\"2026\",\"copyrightHolder\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/\",\"name\":\"How To Use Font Awesome 5 with React - Kodlar\u0131n Gizemli D\u00fcnyas\u0131\",\"isPartOf\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#website\"},\"datePublished\":\"2026-02-26T21:41:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\/\/fatihsoysal.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Use Font Awesome 5 with React\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#website\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/\",\"name\":\"Fatihsoysal.com\",\"description\":\"Blog - Yaz\u0131l\u0131m D\u00fcnyas\u0131 Tecr\u00fcbelerim\",\"publisher\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/fatihsoysal.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\",\"name\":\"Fatih Soysal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png\",\"contentUrl\":\"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png\",\"width\":512,\"height\":512,\"caption\":\"Fatih Soysal\"},\"logo\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Kullan\u0131m ve kodlama m\u00fckemmeliyetini odak alan uygulamalar olu\u015fturma deneyimine sahip, profesyonel olarak 15+ y\u0131l \u00fczeri deneyime sahip bir yaz\u0131l\u0131m m\u00fchendisi.\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/author\/fatihsoysal\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Use Font Awesome 5 with React - Kodlar\u0131n Gizemli D\u00fcnyas\u0131","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/","og_locale":"tr_TR","og_type":"article","og_title":"How To Use Font Awesome 5 with React","og_description":"Giri\u015f Modern web uygulamalar\u0131nda kullan\u0131c\u0131 deneyimini zenginle\u015ftiren g\u00f6rsel \u00f6\u011felerden biri de ikonlard\u0131r.","og_url":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/","og_site_name":"Kodlar\u0131n Gizemli D\u00fcnyas\u0131","article_published_time":"2026-02-26T21:41:32+00:00","author":"Fatih Soysal","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Fatih Soysal","Tahmini okuma s\u00fcresi":"10 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#article","isPartOf":{"@id":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/"},"author":{"name":"Fatih Soysal","@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"headline":"How To Use Font Awesome 5 with React","datePublished":"2026-02-26T21:41:32+00:00","mainEntityOfPage":{"@id":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/"},"wordCount":1537,"commentCount":0,"publisher":{"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"articleSection":["React"],"inLanguage":"tr","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#respond"]}],"copyrightYear":"2026","copyrightHolder":{"@id":"https:\/\/fatihsoysal.com\/blog\/#organization"}},{"@type":"WebPage","@id":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/","url":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/","name":"How To Use Font Awesome 5 with React - Kodlar\u0131n Gizemli D\u00fcnyas\u0131","isPartOf":{"@id":"https:\/\/fatihsoysal.com\/blog\/#website"},"datePublished":"2026-02-26T21:41:32+00:00","breadcrumb":{"@id":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/fatihsoysal.com\/blog\/how-to-use-font-awesome-5-with-react\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/fatihsoysal.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Use Font Awesome 5 with React"}]},{"@type":"WebSite","@id":"https:\/\/fatihsoysal.com\/blog\/#website","url":"https:\/\/fatihsoysal.com\/blog\/","name":"Fatihsoysal.com","description":"Blog - Yaz\u0131l\u0131m D\u00fcnyas\u0131 Tecr\u00fcbelerim","publisher":{"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fatihsoysal.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":["Person","Organization"],"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1","name":"Fatih Soysal","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png","contentUrl":"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png","width":512,"height":512,"caption":"Fatih Soysal"},"logo":{"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/"},"description":"Kullan\u0131m ve kodlama m\u00fckemmeliyetini odak alan uygulamalar olu\u015fturma deneyimine sahip, profesyonel olarak 15+ y\u0131l \u00fczeri deneyime sahip bir yaz\u0131l\u0131m m\u00fchendisi.","url":"https:\/\/fatihsoysal.com\/blog\/author\/fatihsoysal\/"}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts\/40437","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/comments?post=40437"}],"version-history":[{"count":1,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts\/40437\/revisions"}],"predecessor-version":[{"id":40438,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts\/40437\/revisions\/40438"}],"wp:attachment":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/media?parent=40437"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/categories?post=40437"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/tags?post=40437"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}