1.0.4 • Published 1 year ago
apex-header v1.0.4
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;