[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]types/2023-06-09 12:49 -  
[DIR]src/2023-06-09 12:48 -  
[DIR]jsx-runtime/2023-06-09 12:48 -  
[DIR]jsx-dev-runtime/2023-06-09 12:48 -  
[DIR]isolated-hoist-non-react-statics-do-not-use-this-in-your-code/2023-06-09 12:48 -  
[DIR]dist/2023-06-09 12:49 -  
[   ]package.json2023-06-09 12:49 2.8K7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك]
[   ]macro.js.flow1985-10-26 08:15 40  
[   ]macro.js1985-10-26 08:15 62  
[TXT]macro.d.ts1985-10-26 08:15 31  
[TXT]README.md1985-10-26 08:15 698 f12eb36 documentaiton updates [كارل مبارك]
[   ]LICENSE1985-10-26 08:15 1.1K7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك]
[TXT]CHANGELOG.md1985-10-26 08:15 44K 
# @emotion/react

> Simple styling in React.

## Install

```bash
yarn add @emotion/react
```

## Usage

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

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.