All Projects â†’ stephenway â†’ react-flagkit

stephenway / react-flagkit

Licence: MIT license
🇺🇦 React wrapper for FlagKit Flag Icons

Programming Languages

typescript
32286 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to react-flagkit

Flagkit
Beautiful flag icons for usage in apps and on the web.
Stars: ✭ 2,805 (+13257.14%)
Mutual labels:  icons, flags, flag-icons
Famfamfam Flags Wpf
famfamfam flag icons for WPF
Stars: ✭ 17 (-19.05%)
Mutual labels:  icons, flags
Flagpack Core
Flagpack contains 260+ easily implementable flag icons to use in your design or code project.
Stars: ✭ 127 (+504.76%)
Mutual labels:  icons, flags
Css Flags
A collection of pure CSS flags, all single divs.
Stars: ✭ 90 (+328.57%)
Mutual labels:  icons, flags
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (+561.9%)
Mutual labels:  icons, flags
phosphor-figma
A flexible icon family for Figma
Stars: ✭ 17 (-19.05%)
Mutual labels:  icons
api-docs
Documentation for Icons8 API
Stars: ✭ 17 (-19.05%)
Mutual labels:  icons
tasarimcilar-ve-yazilimcilar-icin-kaynak-arsivim
Tasarım ve yazılım ile ilgili 2017 yılından günümüze kadar geçen zamanda toplamış olduğum arşivimi sizle ile paylaşıyorum. Ne mi var her şey...
Stars: ✭ 276 (+1214.29%)
Mutual labels:  icons
gimp-hidpi
A theme for HiDPI displays
Stars: ✭ 72 (+242.86%)
Mutual labels:  icons
FediBooks
A web UI for creating your very own ebooks bots.
Stars: ✭ 21 (+0%)
Mutual labels:  webapp
Apple-App-Icons
This repository is for hosting Apple App Icons Sketch file, .sketch
Stars: ✭ 31 (+47.62%)
Mutual labels:  icons
outofcontext
A party game suite web application.
Stars: ✭ 27 (+28.57%)
Mutual labels:  webapp
iconcolor
Automatic icon colorization using deep convolutional neural networks. "Towards Icon Design Using Machine Learning." In Stanford CS229, Fall 2017.
Stars: ✭ 35 (+66.67%)
Mutual labels:  icons
brackette-prototype
Manage your Challonge tournaments with ease. A beta application
Stars: ✭ 14 (-33.33%)
Mutual labels:  webapp
vector-icons
Free Vector icons for Website and Mobile App
Stars: ✭ 28 (+33.33%)
Mutual labels:  icons
octicons-modular
GitHub Octicons with tree-shaking support and icon-per-file style.
Stars: ✭ 25 (+19.05%)
Mutual labels:  icons
Lightcord
A webapp for Discord Bots
Stars: ✭ 20 (-4.76%)
Mutual labels:  webapp
HerokuContainer
Dockerized ASP.NET Core Web API app in Heroku
Stars: ✭ 26 (+23.81%)
Mutual labels:  webapp
oojs-ui
OOUI is a modern JavaScript UI library with strong cross-browser support. It is the standard library for MediaWiki and Wikipedia. This is a mirror from https://gerrit.wikimedia.org. Main website:
Stars: ✭ 45 (+114.29%)
Mutual labels:  icons
swift-commandlinekit
Framework supporting the development of command-line tools in Swift on macOS and Linux. The framework supports managing command-line arguments, provides lightweight functions to deal with escape sequences, and defines an API for reading strings from the terminal.
Stars: ✭ 38 (+80.95%)
Mutual labels:  flags

react-flagkit

Beautiful flag icons for usage in React webapps. All flags are provided as importable images by React.

Documentation

Installation

npm install --save react-flagkit

// or

yarn add react-flagkit

Usage

import Flag from 'react-flagkit';

export default () => <Flag country="US" />;

Displays the flag of the United States (US)

<Flag country="US" />

Component can render different flags by country, a list of all codes can be found here.

<Flag country="DE" />

It's also possible to make those flags whatever pixel size you want.

Big

<Flag country="CA" size={84} />

or small

<Flag country="GB" size={15} />

If needed you can also make the flag interactive with an onClick handler, just make sure to change the role to button

<Flag
  country="SE"
  role="button"
  onClick={() => {
    alert('You just clicked on the flag.');
  }}
/>

Thanks

  • madebybowtie for FlagKit
  • jsDelivr for free CDN access
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].