slipstream-ui
TypeScript icon, indicating that this package has built-in type declarations

3.1.0 • Public • Published

Slipstream UI

Component library combining React and Tailwindcss, built with TypeScript

Documentation | NPM | Github | Roadmap


Installation

npm i slipstream-ui
# or
yarn add slipstream-ui

Usage

Slipstream UI is a wrapper for Tailwindcss as well as a component library built using React. You will first need to add the wrapper to your tailwind.config.js file.

const slipstream = require('slipstream-ui/config')

module.exports = slipstream({
  content: [
    "./node_modules/slipstream-ui/dist/**/*"
  ],
  theme: {
    extend: {},
  },
  plugins: [],
})

You now have access to all Slipstream components inside your React app.

Example

import { Button } from 'slipstream-ui';

function Example () {
  return (
    <Button>Click me!</Button>
  )
}

License

This project is licensed under the terms of the MIT license.

Readme

Keywords

none

Package Sidebar

Install

npm i slipstream-ui

Weekly Downloads

1

Version

3.1.0

License

MIT

Unpacked Size

10.4 MB

Total Files

443

Last publish

Collaborators

  • mmcshinsky