# Mantine 9.3.0 — 9.3.0 🥵
- Product: Mantine (https://whatsnew.fyi/product/mantine)
- Vendor: Mantine
- Date: 2026-06-02
- Version: 9.3.0
- Original notes: https://github.com/mantinedev/mantine/releases/tag/9.3.0
- Permalink: https://whatsnew.fyi/product/mantine/releases/9.3.0
What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog.
Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'.
---
- **added** — Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on available width
- **added** — Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property
- **added** — New use-splitter hook provides resizable split-pane functionality with pointer drag, keyboard navigation, collapsible panels and min/max constraints
- **added** — New Splitter component provides declarative resizable split pane layout built on top of the use-splitter hook
- **added** — CodeHighlight component now supports withLineNumbers prop to display line numbers alongside the code
- **added** — OverflowList component now supports collapseFrom prop that controls from which direction items are collapsed when they overflow
[View changelog with demos on mantine.dev website](https://mantine.dev/changelog/9-3-0)
##### Support Mantine development
You can now sponsor Mantine development with [OpenCollective](https://opencollective.com/mantinedev).
All funds are used to improve Mantine and create new features and components.
##### Pagination responsive layout
[Pagination](https://mantine.dev/core/pagination/) component now supports `layout="responsive"` prop that uses CSS container
queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.
```tsx
import { Box, Pagination } from '@mantine/core';
function Demo() {
return (