UNPKG

isometric-react

Version:

Isometric styling library made in React with as much flexibility over customization as possible. Rewrite of https://morgancaron.github.io/IsometricSass/ .

15 lines (14 loc) 301 B
import { css } from "styled-components"; const hasPseudoElementBefore = css ` &::before { content: ""; display: block; } `; const hasPseudoElementAfter = css ` &::after { content: ""; display: block; } `; export { hasPseudoElementBefore, hasPseudoElementAfter };