About Mantine

Mantine is a React components library focused on providing great user and developer experience. Mantine development was started in January 2021 and 1.0 version was published on May 3rd, 2021, and since then more than 100 releases were published.

Browser support

Mantine is tested on real devices in the following browsers before each minor and major release: Chrome, Safari, Firefox, Edge, Safari for iOS, Chrome for Android. Testing in other browsers is not performed.

All Mantine components and hooks were tested to work in the following browsers:

  • Firefox 63+ (released October 2018)
  • Chromium browsers 84+ – Chrome, Edge, Chrome for Android, etc. (released July 2020)
  • Safari 14.1+ (released April 2021)
  • Safari for iOS 14.5+ (released April 2021)
  • IE (any version) is not supported

In most cases Mantine components and hooks will work in any browser that is supported by your react version that you are using. But you may experience some minor visual bugs caused by unsupported CSS properties (for example flexbox gap).

If you need to support older browsers you should:

  • check component Browser support section before usage and decide whether this component will work for your case
  • install corresponding polyfills that are required for hook/component to work in older browsers
  • check that component works in those browsers on your side (we do not test Mantine in browsers that are older than those that are listed above)

Releases cycle

All @mantine/* packages follow semver:

  • Patches (1.0.X) are usually released every Sunday
  • Minor versions (1.X.0) are usually released every month with no specific date
  • Major versions (X.0.0) are released when breaking changes are required, usually a new major version is released once every 6 months

Previous versions documentation

Project maintenance

Mantine is built and maintained by Vitaly Rtishchev and more than 150 other contributors. Most of new features and components/hooks are added to the library based on feedback from the community – you can participate in new features discussions on GitHub or Discord.

Support project

Currently we cannot accept donations, you can support the project by contributing to the codebase, by sharing the project with someone that can be interested, and by participating in discussions on Discord.

Mantine logo

Download Mantine logos in .svg format:

mantine-logo.svg
Download svg
mantine-logo-full.svg
Download svg
mantine-logo-full.svg
Download svg

You can also install @mantine/ds package and import MantineLogo component:

yarn add @mantine/ds
npm install @mantine/ds
Type
Color
import { MantineLogo } from '@mantine/ds';
function Demo() {
return <MantineLogo size={30} />
}