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