Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/awran5/react-simple-tabs-component
A simple react component for adding accessible easy-to-use Tabs to your project.
https://github.com/awran5/react-simple-tabs-component
accessible-tabs react-tabs react-typescript tabs
Last synced: 28 days ago
JSON representation
A simple react component for adding accessible easy-to-use Tabs to your project.
- Host: GitHub
- URL: https://github.com/awran5/react-simple-tabs-component
- Owner: awran5
- License: mit
- Created: 2020-11-10T09:47:18.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-30T00:23:05.000Z (over 3 years ago)
- Last Synced: 2024-03-25T06:21:47.030Z (8 months ago)
- Topics: accessible-tabs, react-tabs, react-typescript, tabs
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/react-simple-tabs-component
- Size: 378 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# React Simple Tabs Component
> A simple react component for adding accessible easy-to-use Tabs to your project.
[![NPM](https://img.shields.io/npm/v/react-simple-tabs-component.svg)](https://www.npmjs.com/package/react-simple-tabs-component)
![npm bundle size](https://img.shields.io/bundlephobia/min/react-simple-tabs-component)
![GitHub](https://img.shields.io/github/license/awran5/react-simple-tabs-component)
## Install
```bash
# npm
npm i react-simple-tabs-component# Yarn
yarn add react-simple-tabs-component
```## Usage
```jsx
import { Tabs } from 'react-simple-tabs-component'
// (Optional) if you don't want to include bootstrap css stylesheet
import 'react-simple-tabs-component/dist/index.css'// Component Example
const TabOne = () => {
return (
<>
Tab One
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis sint illum iusto nostrum cumque qui
voluptas tenetur inventore ut quis?
>
)
}// Tabs structure Array
const tabs = [
{
label: 'Tab One', // Tab Title - String
Component: TabOne // Tab Body - JSX.Element
},
{
label: 'Tab Two',
Component: TabTwo
},
{
label: 'Tab Three',
Component: TabThree
}
]export default function App() {
return (
)
```### Available Props
| Prop | Type | Options | Description | Default |
| ------------- | ---------------- | -------- | ----------------------------------------- | :------------------------: |
| `tabs` | Array of objects | Required | Array of objects for your Tabs | `-` |
| `orientation` | String | Optional | Tab orientation `horizontal` - `vertical` | `horizontal` |
| `type` | String | Optional | Tabs type `tabs` - `pills` | `tabs` |
| `className` | String | Optional | A className applied to the main `div` | `bootstrap-tabs-component` |---
## Style
The Component is based on Bootstrap 5 `HTML` structure and `CSS` classes so it will work out of the box if Bootstrap 5 css stylesheet is already included in you project. If you don't have/want to include Bootstrap, you still can use a `standalone` css stylesheet which was extracted form bootstrap 5 stylesheet. Just add it:
```jsx
import 'react-simple-tabs-component/dist/index.css'
```
[![Edit react-typescript-tabs (forked)](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/react-typescript-tabs-forked-0txii?fontsize=14&hidenavigation=1&theme=dark)
### License
MIT © [awran5](https://github.com/awran5/)