Button Hover14
Button Hover14 is a React and Tailwind CSS overlay component from UI Layouts, licensed MIT. Copy it and paste it into your project.
UI Layouts
MIT
overlays
What it is
Button Hover14 is a React and Tailwind CSS overlay component from UI Layouts, 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.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Button Hover14
'use client';
import { ArrowRight } from 'lucide-react';
const ButtonHover14 = () => {
return (
<>
<button className='group cursor-pointer slide-anime px-5 py-3 rounded-full w-[180px] shadow bg-primary-base text-primary flex justify-between items-center font-semibold '>
Schedule Call{' '}
<div className='group-hover:translate-x-2 transition-all'>
<ArrowRight />
</div>
</button>
</>
);
};
export default ButtonHover14;