@bumbag/emotion-core
TypeScript icon, indicating that this package has built-in type declarations

10.1.1-4 • Public • Published

@emotion/core

Simple styling in React.

Install

yarn add @emotion/core

Usage

/** @jsx jsx */
import { jsx, css, Global, ClassNames } from '@emotion/core'

render(
  <div css={{ color: 'hotpink' }}>
    <div
      css={css`
        color: green;
      `}
    />
    <Global
      styles={{
        body: {
          margin: 0,
          padding: 0
        }
      }}
    />
    <ClassNames>
      {({ css, cx }) => (
        <div
          className={cx(
            'some-class',
            css`
              color: yellow;
            `
          )}
        />
      )}
    </ClassNames>
  </div>
)

More documentation is available at https://emotion.sh.

Readme

Keywords

none

Package Sidebar

Install

npm i @bumbag/emotion-core

Weekly Downloads

1

Version

10.1.1-4

License

MIT

Unpacked Size

406 kB

Total Files

60

Last publish

Collaborators

  • claudia13
  • jmoxey