Horror
React HTML elements with CSS-in-JS.
Quick Start
To create a Horror starter project, run:
Usage
- Includes all HTML elements
- Use object literal or CSS syntax
- Style any component
- Support for [styled-components][sc] or [emotion][emotion]
HTML Tags
Changing the underlying HTML tag can be done in any of the following ways:
- Importing the tag directly:
import { Header } from 'horror'
- Using a key on the default import:
<Horror.header />
- Using the
is
prop:<Horror is='header' />
- Using the styled-components API:
const H1 = Horror.withComponent('h1')
Using Custom Components
To use a custom component, pass it to the is
prop:
Creating Style Components
Horror can be used to create component primitive abstractions, similar to using [styled-components][sc] or [react-emotion][emotion],
but with a more React-like syntax.
Emotion
Horror also works with [emotion][emotion]: