mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-20 01:50:08 +02:00
16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
import { FC } from 'react';
|
|
|
|
import { IconsModule } from '../webpack';
|
|
|
|
// interface ButtonProps {
|
|
// label?: string;
|
|
// description?: string;
|
|
// layout?: 'below';
|
|
// onClick?(e: MouseEvent): void;
|
|
// disabled?: boolean;
|
|
// bottomSeparator?: boolean;
|
|
// }
|
|
|
|
export const Spinner = Object.values(IconsModule).find((mod: any) =>
|
|
mod?.toString()?.includes("Spinner)}),a.createElement(\"path\",{d:\"M18 "),
|
|
) as FC<{}>; |