Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

avocadowastaken/react-flag-kit

Repository files navigation

FlagKit for React

Main npm version npm minzipped size npm downloads

Installation

npm i react-flag-kit
# or using Yarn
yarn add react-flag-kit

Usage

import { FlagIcon } from "react-flag-kit";

export const USAFlag = () => <FlagIcon code="US" size={48} />;

Props

export interface FlagIconProps extends ImgHTMLAttributes<HTMLImageElement> {
  size?: number;
  code: FlagIconCode;
}

Reference

The list of available flags you can find in FlagKit repo.

Licence

MIT