mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-20 10:00:08 +02:00
16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
import { ElementType, FC, ReactNode } from 'react';
|
|
|
|
import { Export, findModuleExport } from '../webpack';
|
|
|
|
export interface FocusRingProps {
|
|
className?: string;
|
|
rootClassName?: string;
|
|
render?: ElementType;
|
|
children?: ReactNode;
|
|
NavigationManager?: any;
|
|
}
|
|
|
|
export const FocusRing = findModuleExport((e: Export) =>
|
|
e?.toString?.()?.includes('.GetShowDebugFocusRing())'),
|
|
) as FC<FocusRingProps>;
|