mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-20 10:00:08 +02:00
8 lines
320 B
TypeScript
Executable File
8 lines
320 B
TypeScript
Executable File
import { FC, SVGAttributes } from 'react';
|
|
|
|
import { IconsModule } from '../webpack';
|
|
|
|
// TODO type this and other icons?
|
|
export const Spinner = Object.values(IconsModule).find((mod: any) =>
|
|
mod?.toString && /Spinner\)}\),.\.createElement\(\"path\",{d:\"M18 /.test(mod.toString())
|
|
) as FC<SVGAttributes<SVGElement>>; |