@atul15r/react-tabs
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

React Tabs

Download

React-Tabs is an animated tab navigation component which is designed for react app.

Live Demo

Alt text

Installation

 # If you use npm:
 npm i @atul15r/react-tabs

 # If you use yarn:
 yarn add @atul15r/react-tabs


 ES6 Usage
 import { Tabs } from '@atul15r/react-tabs';

 Commonjs Usage
 var Tabs = require('@atul15r/react-tabs');

Quick Start

<Tabs tabs={tabs} />

Usage With Custom Styles

import React from 'react';
import { Tabs } from '@atul15r/react-tabs';

const tabs = [
  {
    title: "TypeScript",

  {
    title: "JavaScript",

  },
];


const App = () => {
  return (
   <Tabs
 tabs={tabs}
 tabStyle={{
         background: `#fff`,
         font-weight: 500,
         color: "#333"
 }}
/>
  );
};

export default App;

Props

name type required default description
tabs array true [] it takes an array of object { title: string | ReactNode }[]
tabsClassName string false undefined add any custom class you want
tabsStyle object false undefined wrapperStyle= {{ background:"#ccc", color:"#999", ...etc }}
tabClassName string false undefined add any custom class you want
tabStyle object false undefined itemStyle= {{ padding:4, }}
borderStyle object false undefined borderStyle= {{ background:#6b6b6b, }}
borderClassName string false undefined add any custom class you want
onChange function false undefined onChange={(tabIndex)=>setCurrentTab(tabIndex)}

Package Sidebar

Install

npm i @atul15r/react-tabs

Weekly Downloads

3

Version

1.0.2

License

MIT

Unpacked Size

49 kB

Total Files

23

Last publish

Collaborators

  • atul15r