Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gfazioli/mantine-marquee

A Mantine UI component for creating a Marquee effect with any component
https://github.com/gfazioli/mantine-marquee

mantine-ui marquee

Last synced: 1 day ago
JSON representation

A Mantine UI component for creating a Marquee effect with any component

Awesome Lists containing this project

README

        

# Mantine Marquee Component


image

---



NPM version



NPM Downloads

NPM License



## Overview

This component is created on top of the [Mantine](https://mantine.dev/) library.

It allows to create a marquee effect with any content.

You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.

## Installation

```sh
npm install @gfazioli/mantine-marquee
```
or

```sh
yarn add @gfazioli/mantine-marquee
```

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

```tsx
import '@gfazioli/mantine-marquee/styles.css';
```

## Usage

```tsx
import { Marquee } from '@gfazioli/mantine-marquee';

function Demo() {
function BoxComponent({ children, ...props }: { children: ReactNode; [key: string]: any }) {
return (

{children}

);
}

return (

Hello World #1
Hope you like it #2
Have a nice day #3
Goodbye #4

);
}
```