feat: copy bech32

This commit is contained in:
Alejandro Gómez
2025-12-11 21:54:02 +01:00
parent 701a98bd49
commit b7fbaf5e46
6 changed files with 148 additions and 133 deletions

View File

@@ -0,0 +1,19 @@
import * as React from "react";
import { cn } from "@/lib/utils";
/**
* VisuallyHidden component for accessibility
* Hides content visually but keeps it available for screen readers
*/
export const VisuallyHidden = React.forwardRef<
HTMLSpanElement,
React.HTMLAttributes<HTMLSpanElement>
>(({ className, ...props }, ref) => (
<span
ref={ref}
className={cn("sr-only", className)}
{...props}
/>
));
VisuallyHidden.displayName = "VisuallyHidden";