mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-20 10:00:08 +02:00
9 lines
288 B
TypeScript
9 lines
288 B
TypeScript
import { FC } from 'react';
|
|
|
|
import { DialogButton, DialogButtonProps } from './Dialog';
|
|
|
|
export interface ButtonProps extends DialogButtonProps {}
|
|
|
|
// Button isn't exported, so call DialogButton to grab it
|
|
export const Button = (DialogButton as any)?.render({}).type as FC<ButtonProps>;
|