0.2.0 • Published 5 years ago

react-reset-html v0.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

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.com

Current collection

  • HtmlA
  • HtmlButton
  • HtmlDiv
  • HtmlH
  • HtmlInput
  • HtmlLabel
  • HtmlLi
  • HtmlNav
  • HtmlOl
  • HtmlSpan
  • HtmlUl