{"id":17647,"date":"2025-11-05T06:17:52","date_gmt":"2025-11-05T06:17:52","guid":{"rendered":"https:\/\/www.kaashivinfotech.com\/blog\/?p=17647"},"modified":"2025-11-05T06:19:04","modified_gmt":"2025-11-05T06:19:04","slug":"7-easy-steps-to-use-react-js-icons","status":"publish","type":"post","link":"https:\/\/www.kaashivinfotech.com\/blog\/7-easy-steps-to-use-react-js-icons\/","title":{"rendered":"7 Easy Steps to Use React-Icons &#038; Install Font Awesome in React Apps"},"content":{"rendered":"<p data-start=\"801\" data-end=\"1028\">When I first started working on React projects, I remember struggling with one small but annoying thing \u2014 adding icons.\u00a0<br data-start=\"930\" data-end=\"933\" \/>I\u2019d copy SVGs, import them manually, and end up with a mess of inconsistent sizes and colors.<\/p>\n<p data-start=\"1030\" data-end=\"1097\">Then I discovered react js icons \u2014 and everything changed.<\/p>\n<p data-start=\"1099\" data-end=\"1385\">In this article, I\u2019ll walk you through how to use react-icons and install Font Awesome in your React app, step by step.<br data-start=\"1226\" data-end=\"1229\" \/>If you\u2019re new to <a href=\"https:\/\/www.kaashivinfotech.com\/react-js-training-in-chennai\/\"><strong data-start=\"1246\" data-end=\"1255\">React<\/strong><\/a> or still confused about how icons fit into your project\u2019s UI, trust me \u2014 by the end of this, you\u2019ll be adding icons like a pro.<\/p>\n<h2 data-start=\"1392\" data-end=\"1439\">What Are React JS Icons and Why Use Them?<\/h2>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter wp-image-17649 \" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/React-Icons.webp\" alt=\"\" width=\"481\" height=\"271\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/React-Icons.webp 1024w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/React-Icons-300x169.webp 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/React-Icons-768x432.webp 768w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/React-Icons-380x214.webp 380w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/React-Icons-800x450.webp 800w\" sizes=\"(max-width: 481px) 100vw, 481px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p data-start=\"1441\" data-end=\"1462\">Let\u2019s start simple.<\/p>\n<p data-start=\"1464\" data-end=\"1734\">React js icons are basically prebuilt icon components that you can directly import into your React app.<br data-start=\"1571\" data-end=\"1574\" \/>Instead of downloading icon packs manually or messing with SVGs, you just use a simple package \u2014 react-icons \u2014 which supports tons of icon libraries like:<\/p>\n<ul data-start=\"1736\" data-end=\"1843\">\n<li data-start=\"1736\" data-end=\"1757\">\n<p data-start=\"1738\" data-end=\"1757\">Font Awesome (FA)<\/p>\n<\/li>\n<li data-start=\"1758\" data-end=\"1789\">\n<p data-start=\"1760\" data-end=\"1789\">Material Design Icons (MDI)<\/p>\n<\/li>\n<li data-start=\"1790\" data-end=\"1809\">\n<p data-start=\"1792\" data-end=\"1809\">Bootstrap Icons<\/p>\n<\/li>\n<li data-start=\"1810\" data-end=\"1827\">\n<p data-start=\"1812\" data-end=\"1827\">Feather Icons<\/p>\n<\/li>\n<li data-start=\"1828\" data-end=\"1843\">\n<p data-start=\"1830\" data-end=\"1843\">Remix Icons<\/p>\n<\/li>\n<\/ul>\n<p data-start=\"1845\" data-end=\"1862\">\u2026and many more!<\/p>\n<p data-start=\"1864\" data-end=\"1932\">Think of it as a \u201cone-stop shop\u201d for all your favorite icon packs.<\/p>\n<p data-start=\"1934\" data-end=\"2091\">The beauty? You can scale, color, and style these icons just like any other React component. No more worrying about SVGs breaking or not aligning properly.<\/p>\n<p data-start=\"2093\" data-end=\"2264\">When I first switched to using react js icons, my UI development time dropped drastically. I spent less time designing icons and more time focusing on functionality.<\/p>\n<h2 data-start=\"2271\" data-end=\"2309\">Step 1: Create a New React App<\/h2>\n<p><img decoding=\"async\" class=\"wp-image-17650 aligncenter\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app.webp\" alt=\"\" width=\"613\" height=\"305\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app.webp 1855w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app-300x149.webp 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app-1024x509.webp 1024w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app-768x382.webp 768w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app-1536x763.webp 1536w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app-380x189.webp 380w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app-800x398.webp 800w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-app-1160x577.webp 1160w\" sizes=\"(max-width: 613px) 100vw, 613px\" \/><\/p>\n<p data-start=\"2311\" data-end=\"2378\">If you already have a React project, feel free to skip this step.<\/p>\n<p data-start=\"2380\" data-end=\"2428\">But for beginners, open your terminal and run:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\">npx create-react-app my-react-icons-app\r\n<\/pre>\n<p>Then move into your project directory:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\">cd my-react-icons-app\r\n<\/pre>\n<h2 data-start=\"2644\" data-end=\"2687\">Step 2: Install React Icons Library<\/h2>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-17651 size-full\" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons2.webp\" alt=\"\" width=\"500\" height=\"210\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons2.webp 500w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons2-300x126.webp 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons2-380x160.webp 380w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><\/p>\n<p data-start=\"2689\" data-end=\"2721\">Here\u2019s where the magic begins.<\/p>\n<p data-start=\"2723\" data-end=\"2748\">In your terminal, type:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\">npm install react-icons --save\r\n<\/pre>\n<p>Or, if you\u2019re a Yarn user,<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\">yarn add react-icons\r\n<\/pre>\n<p>That\u2019s it. You\u2019ve just installed react js icons, which means you now have access to hundreds of icon sets, including Font Awesome, all in one package.<\/p>\n<h2 data-start=\"3048\" data-end=\"3113\">Step 3: Import Font Awesome Icons in Your React Component<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-17648 \" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage.webp\" alt=\"\" width=\"608\" height=\"301\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage.webp 1273w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage-300x148.webp 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage-1024x506.webp 1024w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage-768x379.webp 768w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage-380x188.webp 380w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage-800x395.webp 800w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/FontAwesomePage-1160x573.webp 1160w\" sizes=\"(max-width: 608px) 100vw, 608px\" \/><\/p>\n<p data-start=\"3115\" data-end=\"3189\">Now comes the fun part \u2014 using Font Awesome icons in your React app.<\/p>\n<p data-start=\"3191\" data-end=\"3260\">Open your <code class=\"\" data-line=\"\">App.js<\/code> file and import the icons you want. For example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">import { FaMug, FaReact } from \"react-icons\/fa\";\r\n<\/pre>\n<p data-start=\"3331\" data-end=\"3338\">Here,<\/p>\n<ul data-start=\"3339\" data-end=\"3408\">\n<li data-start=\"3339\" data-end=\"3373\">\n<p data-start=\"3341\" data-end=\"3373\"><code class=\"\" data-line=\"\">FaMug<\/code> is a beer mug icon \ud83c\udf7a<\/p>\n<\/li>\n<li data-start=\"3374\" data-end=\"3408\">\n<p data-start=\"3376\" data-end=\"3408\"><code class=\"\" data-line=\"\">FaReact<\/code> is the React logo \ud83d\udc99<\/p>\n<\/li>\n<\/ul>\n<p data-start=\"3410\" data-end=\"3454\">Now you can simply use them as components:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">function App() {\r\n  return (\r\n    &lt;div&gt;\r\n      &lt;h1&gt;Welcome to My React App! &lt;FaReact \/&gt;&lt;\/h1&gt;\r\n      &lt;p&gt;Let\u2019s grab a beer! &lt;FaBeer \/&gt;&lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n  );\r\n}\r\n\r\nexport default App;\r\n<\/pre>\n<p>you\u2019ve got icons on your screen!<\/p>\n<h2 data-start=\"3698\" data-end=\"3739\">Step 4: Style Your React JS Icons<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-17652 \" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons3.webp\" alt=\"\" width=\"504\" height=\"378\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons3.webp 640w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons3-300x225.webp 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/react-icons3-380x285.webp 380w\" sizes=\"(max-width: 504px) 100vw, 504px\" \/><\/p>\n<p data-start=\"3741\" data-end=\"3818\">One thing I love about react js icons is how easily you can style them.<\/p>\n<p data-start=\"3820\" data-end=\"3897\">You can change size, color, and even animations using CSS or inline styles:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">&lt;FaReact size=\"3em\" color=\"#61DBFB\" \/&gt;\r\n&lt;FaBeer size=\"2em\" color=\"goldenrod\" \/&gt;\r\n<\/pre>\n<p data-start=\"3997\" data-end=\"4025\">Or even make them spin!<\/p>\n<p data-start=\"4027\" data-end=\"4061\">You can use CSS animations like:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"css\">.spin {\r\n  animation: spin 3s infinite linear;\r\n}\r\n\r\n@keyframes spin {\r\n  100% {\r\n    transform: rotate(360deg);\r\n  }\r\n}\r\n<\/pre>\n<p>And then apply the class:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">&lt;FaReact className=\"spin\" \/&gt;\r\n<\/pre>\n<h2 data-start=\"4291\" data-end=\"4335\">Step 5: Explore Other Icon Libraries<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-17653 \" src=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries.webp\" alt=\"\" width=\"549\" height=\"287\" srcset=\"https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries.webp 1200w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries-300x157.webp 300w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries-1024x535.webp 1024w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries-768x401.webp 768w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries-380x199.webp 380w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries-800x418.webp 800w, https:\/\/www.kaashivinfotech.com\/blog\/wp-content\/uploads\/2025\/11\/other-icon-libraries-1160x606.webp 1160w\" sizes=\"(max-width: 549px) 100vw, 549px\" \/><\/p>\n<p data-start=\"4337\" data-end=\"4478\">Now that you\u2019ve nailed Font Awesome, don\u2019t stop there!<br data-start=\"4391\" data-end=\"4394\" \/>React js icons support several other libraries \u2014 so you can experiment freely.<\/p>\n<p data-start=\"4480\" data-end=\"4494\">For example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">import { MdHome } from \"react-icons\/md\"; \/\/ Material Design Icons\r\nimport { AiFillHeart } from \"react-icons\/ai\"; \/\/ Ant Design Icons\r\nimport { BsGithub } from \"react-icons\/bs\"; \/\/ Bootstrap Icons\r\n<\/pre>\n<p data-start=\"4709\" data-end=\"4767\">All of these work exactly the same way \u2014 import and use.<\/p>\n<p data-start=\"4769\" data-end=\"4898\">You can explore the full list here:<br data-start=\"4804\" data-end=\"4807\" \/>\ud83d\udc49 <a class=\"decorated-link cursor-pointer\" href=\"https:\/\/react-icons.github.io\/react-icons\" target=\"_new\" rel=\"noopener\" data-start=\"4810\" data-end=\"4896\">https:\/\/react-icons.github.io\/react-icons<\/a><\/p>\n<p data-start=\"4900\" data-end=\"5030\">I personally use Material Design for dashboards and Font Awesome for general apps because of their versatile collection.<\/p>\n<h2 data-start=\"5037\" data-end=\"5096\">Step 6: Customize Icon Sizes and Colors Dynamically<\/h2>\n<p data-start=\"5098\" data-end=\"5155\">Want your icons to adapt to dark mode or theme changes?<\/p>\n<p data-start=\"5157\" data-end=\"5196\">You can make that happen dynamically!<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">const isDarkMode = true;\r\n\r\n&lt;FaReact color={isDarkMode ? \"#61DBFB\" : \"#000\"} size=\"2em\" \/&gt;;\r\n<\/pre>\n<p>You can even use props to control icons dynamically:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">function IconDisplay({ color, size }) {\r\n  return &lt;FaBeer color={color} size={size} \/&gt;;\r\n}\r\n\r\n&lt;IconDisplay color=\"orange\" size=\"3em\" \/&gt;;\r\n<\/pre>\n<p>I love doing this in projects where users can switch themes \u2014 icons adapt automatically!<\/p>\n<h2 data-start=\"5615\" data-end=\"5655\">Step 7: Deploy and See the Magic<\/h2>\n<p data-start=\"5657\" data-end=\"5726\">Once your icons look good, you\u2019re all set to deploy your React app.<\/p>\n<p data-start=\"5728\" data-end=\"5774\">If you haven\u2019t deployed before, you can use:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\">npm run build\r\n<\/pre>\n<p data-start=\"5803\" data-end=\"5922\">Then host your build folder using services like <a class=\"decorated-link\" href=\"https:\/\/vercel.com\/\" target=\"_new\" rel=\"noopener\" data-start=\"5851\" data-end=\"5880\">Vercel<\/a> or <a class=\"decorated-link\" href=\"https:\/\/www.netlify.com\/\" target=\"_new\" rel=\"noopener\" data-start=\"5884\" data-end=\"5919\">Netlify<\/a>.<\/p>\n<p data-start=\"5924\" data-end=\"6003\">You\u2019ll see how smoothly react js icons render, even in production builds.<\/p>\n<h2 data-start=\"6010\" data-end=\"6060\">My Personal Experience with React JS Icons<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/www.nascenture.com\/wp-content\/uploads\/2022\/01\/rect-vector1.png\" alt=\"ReactJS Development Services Company - Nascenture\" width=\"382\" height=\"306\" \/><\/p>\n<p>&nbsp;<\/p>\n<p data-start=\"6062\" data-end=\"6294\">When I was building my first React portfolio website, I wanted something sleek but lightweight.<br data-start=\"6161\" data-end=\"6164\" \/>Using Font Awesome via react-icons, I reduced my load time drastically compared to importing SVGs or external CSS libraries.<\/p>\n<p data-start=\"6296\" data-end=\"6422\">Also, version updates are painless. You don\u2019t have to deal with missing icon links or script issues \u2014 everything just works!<\/p>\n<p data-start=\"6424\" data-end=\"6652\">If you\u2019re building something creative like a React dashboard, eCommerce site, or even a portfolio, icons are what make it visually appealing.<br data-start=\"6577\" data-end=\"6580\" \/>And with react js icons, that process becomes ridiculously simple.<\/p>\n<h2 data-start=\"7237\" data-end=\"7259\">Final Thoughts:<\/h2>\n<p data-start=\"7261\" data-end=\"7412\">So that\u2019s it! That\u2019s how you can easily use react-icons to install Font Awesome in a React app \u2014 and make your UI look awesome<\/p>\n<p data-start=\"7414\" data-end=\"7425\">To recap:<\/p>\n<ol data-start=\"7426\" data-end=\"7572\">\n<li data-start=\"7426\" data-end=\"7455\">\n<p data-start=\"7429\" data-end=\"7455\">Install react-icons.<\/p>\n<\/li>\n<li data-start=\"7456\" data-end=\"7500\">\n<p data-start=\"7459\" data-end=\"7500\">Import the Font Awesome icons you want.<\/p>\n<\/li>\n<li data-start=\"7501\" data-end=\"7534\">\n<p data-start=\"7504\" data-end=\"7534\">Style them however you like.<\/p>\n<\/li>\n<li data-start=\"7535\" data-end=\"7572\">\n<p data-start=\"7538\" data-end=\"7572\">Deploy and enjoy a beautiful UI.<\/p>\n<\/li>\n<\/ol>\n<p data-start=\"7574\" data-end=\"7718\">Icons may seem small, but they make a big difference in how users experience your app. They guide, inform, and sometimes even delight users. \u2728<\/p>\n<p data-start=\"7720\" data-end=\"7848\">If you haven\u2019t already \u2014 give react js icons a try in your next project. I promise, once you start, there\u2019s no going back.<\/p>\n<p data-start=\"7720\" data-end=\"7848\">Want to learn Javascript, or <a href=\"https:\/\/www.kaashivinfotech.com\/react-js-training-in-chennai\/\">React Js Course<\/a>, <a href=\"https:\/\/www.kaashivinfotech.com\/front-end-developer-course\/\">Frontend Development Course<\/a>, <a href=\"https:\/\/www.kaashivinfotech.com\/courses\/\">Full Stack Development Course<\/a> and More, Visit Our Website <a href=\"https:\/\/www.kaashivinfotech.com\/\">www.kaashivinfotech.com.<\/a><\/p>\n<h2 data-start=\"7720\" data-end=\"7848\"><strong>Related Reads:<\/strong><\/h2>\n<ul>\n<li>\n<p class=\"entry-title\"><a href=\"https:\/\/www.kaashivinfotech.com\/blog\/javascript-and-react-js-7-differences\/\">JavaScript vs React JS: 7 Honest Lessons I Learned While Coding<\/a><\/p>\n<\/li>\n<li>\n<p class=\"entry-title\"><a href=\"https:\/\/www.kaashivinfotech.com\/blog\/state-management-in-react\/\">State Management in React: Proven Techniques Every Developer Must Know (2025 Guide)<\/a><\/p>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>When I first started working on React projects, I remember struggling with one small but annoying thing \u2014 adding icons.\u00a0I\u2019d copy SVGs, import them manually, and end up with a mess of inconsistent sizes and colors. Then I discovered react js icons \u2014 and everything changed. In this article, I\u2019ll walk you through how to [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":17660,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3203,3366],"tags":[10173,10170,10172,10171,10168,10167,10166,10169],"class_list":["post-17647","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programming","category-react","tag-could-not-find-icon-font-awesome-react","tag-font-awesome-react-icons","tag-font-awesome-vite-react","tag-how-to-use-font-awesome-icons-in-react","tag-react-icons-install-font-awesome-in-react-apps-download","tag-react-icons-install-font-awesome-in-react-apps-github","tag-react-icons-install-font-awesome-in-react-apps-list","tag-react-fontawesome"],"_links":{"self":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/posts\/17647","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/comments?post=17647"}],"version-history":[{"count":0,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/posts\/17647\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/media\/17660"}],"wp:attachment":[{"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/media?parent=17647"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/categories?post=17647"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kaashivinfotech.com\/blog\/wp-json\/wp\/v2\/tags?post=17647"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}