简体   繁体   中英

Attempted import error: 'FaPencil' is not exported from 'react-icons/fa'

I am new to ReactJS, now i want to include ( React-icons ) in my project but it give me error. could you please help me .

Error : Attempted import error: 'FaPencil' is not exported from 'react-icons/fa'

Code is below

import React, { Component } from "react";
import { FaPencil } from "react-icons/fa";
import { FaTrash } from "react-icons/lib/fa/trash";

export default class Note extends Component {
  render() {
    return (
      <div className="note">
        <p>Learn React</p>
        <span>
          <button onClick={this.edit} id="edit">
            <FaPencil />
          </button>
          <button onClick={this.remove} id="remove">
            <FaTrash />
          </button>
        </span>
      </div>
    );
  }
}
import FaPencil from 'react-icons/lib/fa/pencil'

You don't need to destructure since you're pointing directly to the file. Using react-icons it's helpful to go to the node_modules folder to see where icons live.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM