Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

v1.1.0

Latest
Compare
Choose a tag to compare
@hauptrolle hauptrolle released this 11 Sep 05:04
· 18 commits to master since this release

It's now possible to build custom utils by using the composeUtil function.

import { createStyled } from "@stitches/react";
import { composeUtil } from "stitches-utils";

const size = composeUtil("width", "height");

export const { styled, css } = createStyled({
  utils: {
    size,
  },
});

v1.0.0...v1.1.0