返回 presentation-ai
visually-hidden.tsx
根目录 / src / components / ui / visually-hidden.tsx
1 import { type ReactNode } from "react";
2
3 export function VisuallyHidden({ children }: { children: ReactNode }) {
4 return <div className="sr-only">{children}</div>;
5 }
6
6 lines Plain Text