@atlaskit/page-layout
Version:
A collection of components which let you compose an application's page layout.
15 lines (14 loc) • 563 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { ReactNode } from 'react';
import type { SkipLinkWrapperProps } from './types';
/**
* The default label will be used when the `skipLinksLabel` attribute is not
* provided or the attribute is an empty string. If a string comprised only of
* spaces is provided, the skip link heading element will be removed, but the
* default label will still be used in `title` attribute of the skip links
* themselves.
*/
export declare const SkipLinkWrapper: ({ skipLinksLabel }: SkipLinkWrapperProps) => ReactNode;