0.2.0 • Published 6 years ago
react-reset-html v0.2.0
react-reset-html
Style-reseted HTML elements as React-components. Uses Normalize.cssinjs and other defined html-defaults. Includes typescript typings.
🔨 Usage
Give normal html-attributes as props.
import { HtmlA } from 'suomifi-ui-components';
<HtmlA href="/" />;For aria-attributes or similar you can use object spread syntax.
const props = { 'aria-label': 'Swooosh!' };
<HtmlA {...props} href="/" />;With Typescript to use component for wrapping all components contain Prop-postfixed interface.
import { HtmlA, HtmlAProps } from 'suomifi-ui-components';Github Package Registry
To use this package from Github Package Registry add .npmrc to your project with:
@j-kallunki:registry=https://npm.pkg.github.comCurrent collection
- HtmlA
 - HtmlButton
 - HtmlDiv
 - HtmlH
 - HtmlInput
 - HtmlLabel
 - HtmlLi
 - HtmlNav
 - HtmlOl
 - HtmlSpan
 - HtmlUl