Files
decky-frontend-lib/src/components/SteamSpinner.ts

8 lines
279 B
TypeScript
Raw Normal View History

import { FC, SVGAttributes } from 'react';
import { Export, findModuleExport } from '../webpack';
2024-05-12 15:48:13 -04:00
export const SteamSpinner = findModuleExport(
(e: Export) => e?.toString?.()?.includes('Steam Spinner') && e?.toString?.()?.includes('src'),
) as FC<SVGAttributes<SVGElement>>;