apex-header
v1.0.4
Published
Apex-header is a web component for creating flexible, styled headings to enhance content structure.
Downloads
3
Readme
ApexHeader.ts
Apex-header is a web component for creating flexible, styled headings to enhance content structure.
Installation
npm i apex-header
Usage
React
import Header from "apex-header/lib/Index";
const App = () => {
return (
<Header
header="Heading"
level={1}
color="red"
letterSpacing="2px"
fontStyle="italic"
/>
);
};
export default App;