# react-css-styled

> This component is a lightweight, simple line style component for react.

Latest version **1.1.9** (published 2023-06-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-css-styled
pnpm add react-css-styled
yarn add react-css-styled
bun add react-css-styled
```

## 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.9 |
| Published | 2023-06-04 |
| First published | 2019-12-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 379.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 15 |
| Author | Daybrush |
| Maintainers | younkue |
| Keywords | styled, inline-style, styled-components, style, css, styler |

## Links

- npm: https://www.npmjs.com/package/react-css-styled
- Repository: https://github.com/daybrush/css-styled.git#master
- Homepage: https://github.com/daybrush/css-styled#readme
- Issues: https://github.com/daybrush/css-styled/issues
- npm.io page: https://npm.io/package/react-css-styled

## Dependencies (2)

- [css-styled](https://npm.io/package/css-styled.md) ~1.0.8
- [framework-utils](https://npm.io/package/framework-utils.md) ^1.1.0

## 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.9 (latest) — 2023-06-04
- 1.1.8 — 2023-05-29
- 1.1.7 — 2023-05-16
- 1.1.6 — 2023-05-16
- 1.1.5 — 2023-05-15
- 1.1.4 — 2023-05-15
- 1.1.3 — 2023-05-15
- 1.1.2 — 2023-04-06
- 1.1.1 — 2023-04-06
- 1.1.0 — 2023-04-06
- 1.0.4 — 2022-09-08
- 1.0.3 — 2021-11-11
- 1.0.2 — 2021-02-01
- 1.0.1 — 2021-01-30
- 1.0.0 — 2020-09-04
- … 12 more at https://npm.io/package/react-css-styled/versions

## README

# react-css-styled 👋 [![npm version](https://badge.fury.io/js/react-css-styled.svg)](https://badge.fury.io/js/react-css-styled)

This component is a lightweight, simple line style component.

## Installation

```sh
npm install react-css-styled
```
## How to use

```jsx
import styled from "react-css-styled";

const Styler = styled("div", `
{
  border-radius: 50%;
}
* {
  width: 100%;
  height: 100%;
}
:host div {
  position: relative;
}
`);

render() {
  return (<Styler className="">
    <div></div>
  </Styler>);
}
```
## Development

### `npm start`

Runs the app in the development mode.<br>
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.<br>
You will also see any lint errors in the console.

## License

```
MIT License

Copyright (c) 2019 Daybrush
```

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