baseui
Version:
A React Component library implementing the Base design language
11 lines (10 loc) • 315 B
TypeScript
import * as React from 'react';
type Props = {
children: React.ReactNode;
};
/**
* Wrap an element in FocusOnce that would normally not receive tab focus.
* This is useful for placing initial focus in a Modal or FocusLock.
* */
export default function FocusOnce(props: Props): React.ReactElement;
export {};