Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/udaypydi/tail-ui

A react component library built on tailwind css
https://github.com/udaypydi/tail-ui

css github-actions githubaction-workflow hacktoberfest react react-ui-components scss travis-ci

Last synced: about 2 months ago
JSON representation

A react component library built on tailwind css

Awesome Lists containing this project

README

        



Tail UI




A lite weight react component library built with love for React Hooks, Tailwind Css and React Developers. Its easy to get started, simple and consists of tiny components. Its a work in progress. Contributions are most welcome.



A React UI library built using tailwind css













Installtion


Install tailwind-ui-react locally:

// using npm
npm i --save tailwind-ui-react

or

// using yarn
yarn add tailwind-ui-react



Components



  • Button

  • Container

  • Header

  • Image

  • Input

  • Select

  • Message



Usage


Button

import { Button } from 'tail-ui';

function App(props) {
return (

)
}

Input

import { Input } from 'tail-ui';

function App(props) {
return (

)
}

Container

import { Container } from 'tail-ui';

function App(props) {
return (

)
}

Header

import { Header } from 'tail-ui';

function App(props) {
return (

)
}

Image

import { Image } from 'tail-ui';

function App(props) {
return (

)
}

Select

import { Select } from 'tail-ui';

function App(props) {
return (

)
}

Message

import { Message } from 'tail-ui';

function App(props) {
return (

)
}