@gfazioli/mantine-picker
Version:
Picker component is a wrapper for any component that can be flipped. It is used to create cards, flip boxes and more.
64 lines (42 loc) ⢠2.4 kB
Markdown
# Mantine Picker Component
https://github.com/user-attachments/assets/520e4838-9f2f-4714-9de2-8067c7630d1d
---
<div align="center">
[](https://www.npmjs.com/package/@gfazioli/mantine-picker)
[](https://www.npmjs.com/package/@gfazioli/mantine-picker)
[](https://www.npmjs.com/package/@gfazioli/mantine-picker)

</div>
## Overview
This component is created on top of the [Mantine](https://mantine.dev/) library.
[](https://mantine.dev/)
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.
[](https://www.youtube.com/playlist?list=PL85tTROKkZrWyqCcmNCdWajpx05-cTal4)
[](https://gfazioli.github.io/mantine-picker/)
[](https://mantine-extensions.vercel.app/)
š You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.
## Installation
```sh
npm install @gfazioli/mantine-picker
```
or
```sh
yarn add @gfazioli/mantine-picker
```
After installation import package styles at the root of your application:
```tsx
import '@gfazioli/mantine-picker/styles.css';
```
## Usage
```tsx
import { Picker } from '@gfazioli/mantine-picker';
function Demo() {
return (
<Picker data={['React', 'Angular', 'Vue', 'Svelte']} />
);
}
```