No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

Overview

You can pass the arguments that has a tag h1 , h2 , h3 , h4 , h5 , h6 (onClick, id, name , style , etc...)


Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6
import React from 'react'; import { H1, H2, H3, H4, H5, H6 } from "react-lux"; function App() { return ( <H1>Heading 1</H1> <H2>Heading 2</H2> <H3>Heading 3</H3> <H4>Heading 4</H4> <H5>Heading 5</H5> <H6>Heading 6</H6> ); } export default App;