
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
react-country-flags-select
Advanced tools
A customizable SVG flags select component and standalone SVG flags components are provided by this React component.
npm install react-country-flags-select
import React, { useState } from "react";
import ReactCountryFlagsSelect from "react-country-flags-select";
const App = () => {
const [selected, setSelected] = useState(null);
<ReactCountryFlagsSelect selected={selected} onSelect={setSelected} />;
};
export default App;
List of Countries with country codes. Countries.
selected - is a required object prop that contains current label and country code of the input.
onSelect - is a required function prop that receive the selected country from the user, which will be used to update the selected value.
customCountries - an option object prop that you can pass to replace default countries with your own object.
searchable - an option boolean prop that you can pass to make select searchable. false by default.
customLabelOptions- an optionobject prop that you can pass to rewrite original labels.
labelWithCountryCode - an option boolean prop that you can pass to see the country label in format United States (US). false by default.
labelOnlyCountryCode - an option boolean prop that you can pass to see the country label in format US. false by default.
searchPlaceholder - an option string prop that you can pass to replace default placeholder in searchable mode.
selectPlaceholder - an option string prop that you can pass to replace default placeholder in not searchable mode.
CustomOpenIcon & CustomCloseIcon - an option props that you can pass to replace default open and close icons.
clearIcon - an option boolean prop that you can pass to remove clear icon. true by default.
selectWidth & selectHeight - an option number props that you can pass to change the width or height of the select.
By default selectWidth = 250px, selectHeight = 30px.
optionSize & selectedSize an option number props that you can pass to change font size of the option or selected element.
By default optionSize = 16px, selectedSize = 16px.
fullWidth = an option boolean prop that you can pass to make select element full width. By default false.
if fullWidth = true will ignore selectWidth & selectHeight props.
optionsListMaxHeight - an option number prop that you can pass to change the max height of the dropdown overlay.
By default optionsListMaxHeight = 300px.
disabled = an option boolean prop that you can pass to disable select element.
id = an option string prop that you can pass to container element.
classes = an option object prop that you can pass to rewrite default classes.
you can override such classes as:
container, selectWrapper, searchSelect, buttonSelect, buttonSelectText, clearIcon, optionsWrapper,
option, optionFlag, optionText, openIcon, closeIcon.
import { ReactComponent as SomeIcon } from "../SomeIcon.svg";
const [selected, setSelected] = useState(null);
const customCountries = {
US: "United States",
AF: "Afghanistan",
AL: "Albania",
DZ: "Algeria",
US: "United States",
};
const customLabelOptions = {
US: "U*S*A",
};
const searchPlaceholder = "some custom placeholder";
const selectPlaceholder = "some custom placeholder";
const classes = {
container: "someNewClass",
selectWrapper: "someNewClass",
searchSelect: "someNewClass",
buttonSelect: "someNewClass",
buttonSelectText: "someNewClass",
clearIcon: "someNewClass",
optionsWrapper: "someNewClass",
option: "someNewClass",
optionFlag: "someNewClass",
optionText: "someNewClass",
openIcon: "someNewClass",
closeIcon: "someNewClass",
};
<ReactCountryFlagsSelect
selected={selected}
onSelect={onSelect}
customCountries={customCountries}
customLabelOptions={customLabelOptions}
searchPlaceholder={searchPlaceholder}
selectPlaceholder={selectPlaceholder}
CustomOpenIcon={SomeIcon}
CustomCloseIcon={SomeIcon}
clearIcon={false}
searchable
labelWithCountryCode
labelOnlyCountryCode
selectWidth={350}
selectHeight={40}
optionSize={20}
selectedSize={20}
fullWidth
disabled
classes={classes}
optionsListMaxHeight={300}
id
/>;
import React from "react";
import { Us } from "react-country-flags-select";
const Region = () => (
<div>
<Us /> United States
</div>
);
export default Region;
This project is written in Typescript. Storybook. Tests are written with Jest and React Testing Library. Raise a pull request with your changes.
npm install
MIT license.
FAQs
react-country-flags-select component
The npm package react-country-flags-select receives a total of 186 weekly downloads. As such, react-country-flags-select popularity was classified as not popular.
We found that react-country-flags-select demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.