Custom Cursor
Custom Cursor is a React and Tailwind CSS component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
other
What it is
Custom Cursor is a React and Tailwind CSS component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Four free copies a week. No card.
No packages beyond the project baseline
Licence
This component comes from Motion Primitives and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Custom Cursor
import { SVGProps } from 'react';
import { Cursor } from '@/components/core/cursor';
const MouseIcon = (props: SVGProps<SVGSVGElement>) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
width={26}
height={31}
fill='none'
{...props}
>
<g clipPath='url(#a)'>
<path
fill={'#22c55e'}
fillRule='evenodd'
stroke={'#fff'}
strokeLinecap='square'
strokeWidth={2}
d='M21.993 14.425 2.549 2.935l4.444 23.108 4.653-10.002z'
clipRule='evenodd'
/>
</g>
<defs>
<clipPath id='a'>
<path fill={'#22c55e'} d='M0 0h26v31H0z' />
</clipPath>
</defs>
</svg>
);
};
export function Cursor2() {
return (
<div className='py-12'>
<div className='overflow-hidden rounded-[12px] bg-white p-2 shadow-md dark:bg-black'>
<Cursor
attachToParent
variants={{
initial: { scale: 0.3, opacity: 0 },
animate: { scale: 1, opacity: 1 },
exit: { scale: 0.3, opacity: 0 },
}}
transition={{
ease: 'easeInOut',
duration: 0.15,
}}
className='left-12 top-4'
>
<div>
<MouseIcon className='h-6 w-6' />
<div className='ml-4 mt-1 rounded-[4px] bg-green-500 px-2 py-0.5 text-neutral-50'>
The city below
</div>
</div>
</Cursor>
<img
src='https://i.pinimg.com/564x/a0/6a/5f/a06a5f814569fcf4a67f3ad89ae1babf.jpg'
alt='Green herbs'
className='h-40 w-full max-w-32 rounded-[8px] object-cover'
/>
</div>
</div>
);
}