@steambrew/client
Version:
A support library for creating plugins with Millennium.
11 lines (10 loc) • 308 B
TypeScript
import { ElementType, FC, ReactNode } from 'react';
export interface FocusRingProps {
className?: string;
rootClassName?: string;
render?: ElementType;
children?: ReactNode;
NavigationManager?: any;
}
/** @component React Components */
export declare const FocusRing: FC<FocusRingProps>;