Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@gfazioli/mantine-picker

gfazioli226MIT2.1.1TypeScript support: included

Picker component is a wrapper for any component that can be flipped. It is used to create cards, flip boxes and more.

animation, calendar, calendar-picker, date-picker, date-range, date-range-picker, extension, mantine, picker, react, react-component, select, select-picker, time-picker, typescript

readme

Mantine Picker Component

https://github.com/user-attachments/assets/520e4838-9f2f-4714-9de2-8067c7630d1d


NPM version NPM Downloads NPM Downloads NPM License

Overview

This component is created on top of the Mantine library.

Mantine UI Library

It provides the capability to generate a dynamic picker effect, enabling the display of a wide variety of content in a visually engaging manner. This effect can enhance the overall user experience by drawing attention to important information, announcements, or promotions, allowing for a more interactive and captivating presentation.

Mantine Extensions Demo and Documentation Mantine Extensions HUB

👉 You can find more components on the Mantine Extensions Hub library.

Installation

npm install @gfazioli/mantine-picker

or

yarn add @gfazioli/mantine-picker

After installation import package styles at the root of your application:

import '@gfazioli/mantine-picker/styles.css';

Usage

import { Picker } from '@gfazioli/mantine-picker';

function Demo() {

  return (
    <Picker data={['React', 'Angular', 'Vue', 'Svelte']} />
  );
}