UpdateButton

PreviousNext

A component for Wandry UI

Docs
wandry-uicomponent

Preview

Loading preview…
registry/wandry-ui/update-button.tsx
"use client";
import * as React from "react";

export type UpdateButtonProps = {};

const UpdateButton: React.FC<UpdateButtonProps> = (props) => {
  return <button>Update</button>;
};

export default UpdateButton;

Installation

npx shadcn@latest add @wandry-ui/update-button

Usage

import { UpdateButton } from "@/components/update-button"
<UpdateButton />