Docs
wrap Button

wrap Button

wrap that button

Get Started

Installation

Paste the below command in your terminal

  npx shadcn@latest add "http://skiper-ui.com/registry/wrap-button.json"

Usage

import { WrapButton } from "@/components/ui/wrap-button"
function BasicExample() {
 
  return (
   <div className="w-full flex ">
        <WrapButton className="mt-10" href="/docs/components/card-carousel" >
            <Globe className="animate-spin " />
            Get started
        </WrapButton>
    </div>
  )
}