# smarthr-normalize-css

> A sharable normalize CSS for SmartHR

Latest version **1.1.0** (published 2022-10-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install smarthr-normalize-css
pnpm add smarthr-normalize-css
yarn add smarthr-normalize-css
bun add smarthr-normalize-css
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2022-10-27 |
| First published | 2020-11-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | SmartHR |
| Maintainers | alpaca-tc, nabeliwo, atsushim, koba04, im36.123, smarthr-dev, ykarakita, cidermitaina, meganemura, wata727, wmoai, diescake, moshisora, tokky0425, hawaiiman, smarthr-admin, yamamoto-yuta, kgsi, otapo, kuny |
| Keywords | normalize.css, css, styled-components |

## Links

- npm: https://www.npmjs.com/package/smarthr-normalize-css
- Repository: https://github.com/kufu/smarthr-normalize-css
- Homepage: https://github.com/kufu/smarthr-normalize-css#readme
- Issues: https://github.com/kufu/smarthr-normalize-css/issues
- npm.io page: https://npm.io/package/smarthr-normalize-css

## Dependencies (1)

- [styled-reset](https://npm.io/package/styled-reset.md) ^4.4.2

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2022-10-27
- 1.0.4 — 2022-03-18
- 1.0.2 — 2022-03-17
- 1.0.1 — 2020-11-09
- 1.0.0 — 2020-11-09

## README

# smarthr-normalize-css

A sharable normalize CSS for SmartHR. This is intended to use at a project for styled-components.

## Installation

smarthr-normalize-css is available as an  [npm package](https://www.npmjs.com/package/smarthr-normalize-css).

```sh
// with npm
npm install --save-dev smarthr-normalize-css

// with yarn
yarn add --dev smarthr-normalize-css
```

## Usage

```jsx
import * as React from 'react'
import { CssBaseLine } from 'smarthr-normalize-css'

const App = () => (
  <React.Fragment>
    <CssBaseLine />
    <div>Hello World!</div>
  </React.Fragment>
)
```

You can also use the default export or named export (lowercase) in your own
global style.

```jsx
import * as React from 'react'
import { createGlobalStyle } from 'styled-components'
import cssBaseLine from 'smarthr-normalize-css'

const GlobalStyle = createGlobalStyle`
  ${cssBaseLine}
  /* other styles */
`

export const App = () => (
  <React.Fragment>
    <GlobalStyle />
    <div>Hello World!</div>
  </React.Fragment>
}
```

---
_Source: https://npm.io/package/smarthr-normalize-css · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
