Introducing Skiper UI v2 - with amazing new components
Docs
wrap Button

wrap Button

wrap that button

Get Started

Installation

Paste the below command in your terminal

  npx shadcn@latest add "http://legacy.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>
  )
}