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

9 lines
323 B
TypeScript
Raw Normal View History

2022-06-08 17:54:20 -04:00
import { FC, SVGAttributes } from 'react';
import { IconsModule } from '../webpack';
// TODO type this and other icons?
2024-06-26 22:28:58 -04:00
export const Spinner = Object.values(IconsModule)?.find(
(mod: any) => mod?.toString && /Spinner\)}\)?,.\.createElement\(\"path\",{d:\"M18 /.test(mod.toString()),
2022-10-24 20:33:40 -04:00
) as FC<SVGAttributes<SVGElement>>;