From 5eb5001ce808cfdbd3d3c3c272a6fb0fd7069396 Mon Sep 17 00:00:00 2001 From: cryptam <102138190+CryptAm@users.noreply.github.com> Date: Tue, 26 May 2026 15:18:39 +0300 Subject: [PATCH] docs: fix invalid JSX attribute in ink-kit example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `class` → `className` In JSX/TSX, `class` is a syntax error — the correct attribute is `className`. Without this fix, the example breaks when copied into a React/Next.js project. --- src/pages/build/ink-kit.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/build/ink-kit.mdx b/src/pages/build/ink-kit.mdx index 2d96a12..be5823b 100644 --- a/src/pages/build/ink-kit.mdx +++ b/src/pages/build/ink-kit.mdx @@ -80,7 +80,7 @@ By default, Ink Kit provides a couple of themes already in the stylesheet: To specify which theme to use, add the `ink:THEME_ID` to your document root: ```tsx - + ... ```