Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 933 Bytes

README.md

File metadata and controls

49 lines (39 loc) · 933 Bytes

React Flag Pack

A project made by Yummygum

Installation

npm install react-flagpack --save

Usage

// use own name as variable
import Flag from 'react-flagpack'

Use in JSX:

<Flag
  code="NL"
  gradient="real-linear"
  size="m"
  dropshadow
/>

Available component configurations

key value required default format
country code String true - see all codes
size String false l 's', 'm' or 'l'
className String false - -
dropshadow boolean false false -
hasBorder boolean false true -
hasBorderRadius boolean false true -
customBorderRadius String false - -
gradient String false '' 'top-down', 'real-linear' or 'real-circular'

Build Dist

# install dependencies
npm install

# build for prod
npm run build