import { visuallyHidden } from "@seed-design/dom-utils"; import { Primitive, type PrimitiveProps } from "@seed-design/react-primitive"; import type * as React from "react"; import { forwardRef } from "react"; export interface VisuallyHiddenProps extends PrimitiveProps, React.HTMLAttributes {} export const VisuallyHidden = forwardRef((props, ref) => { const { style, ...otherProps } = props; return ; });