@shannonrothe/wind

A simple React component library built on TailwindCSS

Usage no npm install needed!

<script type="module">
  import shannonrotheWind from 'https://cdn.skypack.dev/@shannonrothe/wind';
</script>

README

CircleCI

Wind

Wind is an open-source component library built on top of React and TailwindCSS.

Wind provides a number of default components for use in your projects. The following components are currently available:

  • Button
  • Input

Usage and Installation

To install Wind, you must have Tailwind running in your project. Run the following to install the package:

NPM

npm install wind

Yarn

yarn add wind

Installing Wind will expose all available components for your use. Below are some snippets to get started.

Button

import React from "react";
import { Button } from "wind";

export const App = () => {
  return <Button>Button</Button>;
};

Bugs

If you find any bugs or issues, please create an issue on the repository.