0.1.3 • Published 4 years ago

blacked v0.1.3

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

Blacked

Dark Mode for React Apps

Installation

npm install blacked or yarn add blacked

Usage

-Import Blacked

 import Blacked from 'blacked';

-Wrap your component

<Blacked>
    <ComponentName />
</Blacked>

Props

position : "top-right" || "top-left" || "bottom-right" || "bottom-left" 
//default is "top-right"

Example :-

<Blacked position={"top-right"}>
    <ComponentName />
</Blacked>