Skip to Content
🎉 Coral x Panda has been released 🎉 Read the Migration Guide
DocumentationReleasesv28.0.0

v28.0.0

Breaking Changes

The textStyle CSS property is no longer supported.

When writing custom Panda CSS, you could previously do:

import { css } from "@krakentech/coral-design/css" const customText = css{{ textStyle: "h1" }}

This is no longer possible - this will need to be refactored to:

import { css } from "@krakentech/coral-design/css" const customText = css{{ fontSize: "{typography.h1.base.fontSize}" lineHeight: "{typography.h1.base.lineHeight}" fontWeight: "{typography.h1.base.fontWeight}" }}
Last updated on