IsNotASword / styled-reset

reset.css for styled-components

Home Page:http://npm.im/styled-reset

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

styled-reset

reset.css for styled-components.

Also see styled-normalize from Sergey Sova.


Installation:

npm i styled-reset (use the -S flag if you're on npm 4 or earlier).

Usage:

// base-styles.js
import { injectGlobal } from 'styled-components'
import reset from 'styled-reset'

const baseStyles = () => injectGlobal`
  ${reset}
  /* other styles */
`

export default baseStyles

// app.js
import baseStyles from './base-styles'

const App = () => {
  baseStyles()
  return (
    <div>Hi!</div>
  )
}

export default App

reset is also available as a named export:

import { reset } from 'styled-reset'

Credits

All credit goes to Eric Meyer for reset.css.

reset.css is public domain (unlicensed).

License:

MIT

About

reset.css for styled-components

http://npm.im/styled-reset

License:MIT License


Languages

Language:JavaScript 100.0%