@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
25 lines (22 loc) • 538 B
JavaScript
"use client";
import { jsx } from 'react/jsx-runtime';
import { forwardRef } from 'react';
import { chakra } from '../../styled-system/factory.js';
import { fallbackId } from './skip-nav-link.js';
const SkipNavContent = forwardRef(
function SkipNavContent2(props, ref) {
const { id = fallbackId, ...rest } = props;
return /* @__PURE__ */ jsx(
chakra.div,
{
ref,
id,
tabIndex: -1,
style: { outline: 0 },
...rest
}
);
}
);
export { SkipNavContent };
;