← Components

Magnetic

component

A wrapper that pulls its child toward the cursor with spring physics.

Installation

Namespace
npx shadcn@latest add @soultel/magnetic
URL
npx shadcn@latest add https://asafefe.dev/r/magnetic.json
Dependenciesmotion

Usage

usage.tsx
import { Magnetic } from "@/components/magnetic"

export function Example() {
  return (
    <Magnetic strength={0.5}>
      <button>Hover me</button>
    </Magnetic>
  )
}