Questions tagged [react-icons]

Usage

import { FaBeer } from 'react-icons/fa';

class Question extends React.Component {
    render() {
        return <h3> Lets go for a <FaBeer />? </h3>
    }
}

Docs.

146 questions
0
votes
1 answer

React Icons affecting Tailwind styling

So I have the following styling: function Button({ children, primary, secondary, success, warning, danger, outline, rounded, }) { const classes = className("flex items-center px-3 py-1.5 border", { "border-blue-500 bg-blue-500…
Daniel
  • 14,004
  • 16
  • 96
  • 156
0
votes
0 answers

How to customize FaExclamationTriangle?

I am using FaExclamationTriangle in my react component I want to customize it so that can look like : When I am applying yellow color css to icon it showing yellow triangle with white exclamation.
Dreamer
  • 586
  • 3
  • 7
  • 23
0
votes
0 answers

[Vue warn]: Invalid VNode type ocurred when i try to add react icons to components in vue3

How can I create a sidebar in my Vue.js app with a right arrow icon using React icons? Here is the HTML code that I have so far: