0.7.0 • Published 3 years ago

@lieinapril/utente-tab v0.7.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@lieinapril/utente-tab

Neumorphism - Tabs make it easy to switch between different views.

Documentation

Refer to the following storybook.

Installation

Install guide

npm install @lieinapril/utente-tab

Usage

import { Tab, TabPane } from '@lieinapril/utente-tab';

const Example = () => {
  const args = {
    theme: "light",
    size: "medium"
  };

  return (
    <div style={{ backgroundColor: "#eeeeee" }}>
      <Tab {...args}>
        <TabPane {...args} key="content1" tab="Tab 1">
          content 1
        </TabPane>
        <TabPane {...args} key="content2" tab="Tab 2">
          content 2
        </TabPane>
        <TabPane {...args} key="content3" tab="Tab 3">
          content 3
        </TabPane>
      </Tab>
    </div>
  );
}
0.7.0

3 years ago

0.6.0

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.3.1

3 years ago

0.2.2

3 years ago

0.2.0

3 years ago