btn-hover-outline

PreviousNext
Docs
ui-layoutscomponent

Preview

Loading preview…
./registry/components/button/btn-hover-outline.tsx
import { ChevronsRight } from 'lucide-react';

const ButtonHoverOutLine = () => {
  return (
    <>
      <a
        className='flex  gap-2 cursor-pointer px-4 py-3 dark:hover:bg-black bg-black hover:bg-white hover:text-black text-white border-black dark:hover:text-white transition-all border-2 dark:border-white dark:bg-white dark:text-black rounded-full font-semibold'
        href='#'
      >
        Know More
        <ChevronsRight />
      </a>
    </>
  );
};

export default ButtonHoverOutLine;

Installation

npx shadcn@latest add @ui-layouts/btn-hover-outline

Usage

import { BtnHoverOutline } from "@/components/btn-hover-outline"
<BtnHoverOutline />