Styling
Inline CSS
<div css={{ bg: "red" }} />
Named CSS
import { css } from "@hypergood/css"
const beatifulBackground = css({
bg: "red",
})
<div class={beautifulBackground} />
Named Component
import { styled } from "@hypergood/css"
const BeatifulBackground = styled("div", {
bg: "red",
})
<BeatifulBackground />