Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rewindui/rewindui
A React component library for building modern web applications using Tailwind CSS.
https://github.com/rewindui/rewindui
class-variance-authority component-library cva nextjs react reactjs storybook tailwind tailwind-css tailwindcss ui-kit
Last synced: about 20 hours ago
JSON representation
A React component library for building modern web applications using Tailwind CSS.
- Host: GitHub
- URL: https://github.com/rewindui/rewindui
- Owner: rewindui
- License: mit
- Created: 2023-02-23T07:08:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-30T09:54:01.000Z (5 months ago)
- Last Synced: 2024-12-05T11:02:27.250Z (8 days ago)
- Topics: class-variance-authority, component-library, cva, nextjs, react, reactjs, storybook, tailwind, tailwind-css, tailwindcss, ui-kit
- Language: TypeScript
- Homepage: https://rewind-ui.dev
- Size: 3.01 MB
- Stars: 694
- Watchers: 5
- Forks: 33
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - rewindui/rewindui - A React component library for building modern web applications using Tailwind CSS. (TypeScript)
README
![Rewind-UI, Effortless user interfaces](https://rewind-ui.dev/images/og-image.jpg)
[![license](https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge)](https://github.com/rewindui/rewindui/blob/main/LICENSE)
[![npm latest package](https://img.shields.io/npm/v/@rewind-ui/core/latest.svg?style=for-the-badge&logo=npm)](https://www.npmjs.com/package/@rewind-ui/core)
[![npm downloads](https://img.shields.io/npm/dt/@rewind-ui/core.svg?style=for-the-badge&logo=npm)](https://www.npmjs.com/package/@rewind-ui/core)
[![bundle size](https://img.shields.io/bundlephobia/minzip/@rewind-ui/core.svg?style=for-the-badge&label=minified)](https://bundlephobia.com/package/@rewind-ui/core)# Introduction
Built specifically for use with [React](https://react.dev) and [Tailwind CSS](https://tailwindcss.com/), Rewind-UI offers a range of accessible, highly customizable components that can be easily integrated into any react project. Rewind-UI comes with a set of default styles that can be [easily customized](https://rewind-ui.dev/theming) using Tailwind CSS classes. Furthermore, each component can be parameterized using a set of props that can be used to change the default styles of the component.# Installation
Rewind-UI is available as an NPM package and can be installed using the following command:```bash
npm install @rewind-ui/core
```# Configuration
Rewind-UI is designed to be used with React and Tailwind CSS. To use Rewind-UI, you must first install ReactJS and [Tailwind CSS](https://tailwindcss.com/docs/installation) in your project. Furthermore, you must also install the following NPM packages:```bash
npm install tailwind-scrollbar @tailwindcss/forms @tailwindcss/typography
```After having installed Tailwind CSS, you must configure it to work with Rewind-UI. To do this, you must first create a `tailwind.config.js` file in the root directory of your project. Then, add the following code to that config file:
> It is highly recommended to add only the needed style files to avoid having a bloated css file
```js
module.exports = {
content: [
'./src/**/*.{html,jsx,tsx}',
// you can either add all styles
'./node_modules/@rewind-ui/core/dist/theme/styles/*.js',
// OR you can add only the styles you need
'./node_modules/@rewind-ui/core/dist/theme/styles/Button.styles.js',
'./node_modules/@rewind-ui/core/dist/theme/styles/Text.styles.js'
],
plugins: [
require('@tailwindcss/typography'),
require('tailwind-scrollbar')({ nocompatible: true }),
require('@tailwindcss/forms')({
strategy: 'class' // only generate classes
})
]
};
```# Usage
To start using Rewind-UI components just add the following import statement to the top of your React component:```tsx
import { Button } from '@rewind-ui/core';
```Then, you can use the component in your JSX code:
```tsx
Click Me
```# Properties
Each component has a set of default styles that can be parameterized using the corresponding props. For example, the `Button` component has a default blue color and a medium size. These values can be changed by setting the `color` and `size` props to the component:```tsx
Click Me
```Moreover, the style of a component can be customized by passing the normal `className` prop to it. This prop can be used to override the default styles of the component. For example, the following code will change the font weight of the button to semi-bold:
Rewind-UI is using [tailwind-merge](https://github.com/dcastil/tailwind-merge) to merge the default classes with the classes you provide in the `className` prop and resolve any possible conflicts.
```tsx
Click Me
```# Variants
Trying to avoid to make the user use multiple properties again and again we have created a `variant` prop. A variant is basically a pre-defined set of properties that can be used to customize a component. For example, the `Button` component has a `success` variant that can be used to create a bootstrap-like success button:```tsx
Click Me
```You can read more about the variants of each component in their corresponding documentation page.
# Customization
All Rewind-UI components are highly customizable. This means that you can easily change the default styles of a component by overriding the corresponding Tailwind CSS classes. You can read more about style customization on the [theming](https://rewind-ui.dev/theming) page.# Credits
Special thanks to the following people:
* [Joe Bell](https://twitter.com/joebell_) - For his amazing open source library [Class Variance Authority](https://cva.style/docs) which is the foundation of rewind's theming system.
* [Jack Herrington](https://twitter.com/jherr) - For inspiring me to start building Rewind-UI.
* [shadcn](https://twitter.com/shadcn) - For his open source projects ([taxonomy](https://tx.shadcn.com/) & [ui](https://ui.shadcn.com/)) that helped me build this documentation.Special thanks to the following teams:
* [React](https://react.dev/) - For creating React.
* [Tailwind Labs](https://tailwindcss.com) - For creating Tailwind CSS.
* [Vercel](https://vercel.com/) - For creating Next.js and their awesome open source templates.
* [Floating-UI](https://floating-ui.com/) - For creating Floating-UI.
* [Phosphor](https://phosphoricons.com/) - For creating Phosphor icon family.[![Powered by Vercel](https://rewind-ui.dev/images/powered-by-vercel.svg)](https://vercel.com?utm_source=[RewindUI]&utm_campaign=oss.)