Skip to content

Instantly share code, notes, and snippets.

View MidhaTahir's full-sized avatar
😼
Learning

Midha MidhaTahir

😼
Learning
View GitHub Profile
@MidhaTahir
MidhaTahir / gist:e39e6e31d332f8e46e987cd4b5fb5899
Last active May 29, 2021 08:36
React Select Dropdown with Icon and Label
import React, { useState } from "react";
import { FaList, FaChevronDown } from "react-icons/fa";
import CashIcon from "../../images/CashIcon.png";
import StripeIcon from "../../images/StripeIcon.png";
import CreditCardIcon from "../../images/CreditCardIcon.png";
import BankTransferIcon from "../../images/BankTransferIcon.png";
import Select, { components } from "react-select";
const DropDownWithSvg = ({ options }) => {