Created
January 22, 2020 12:23
-
-
Save karlsander/69c6eac6e3309f0b242cad9af07c1ebe to your computer and use it in GitHub Desktop.
theme-ui sx for className
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { theme } from "./theme" | |
import sxCSS from "@styled-system/css" | |
import { css } from "emotion" | |
export function csx(style) { | |
return css(sxCSS(style)(theme)) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react" | |
import { csx } from "csx" | |
export const Hi = () => <div className={csx({m: 4, color: "primary")}>Hi</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment