mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-20 10:00:08 +02:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
export interface ItemProps {
|
|
label?: ReactNode;
|
|
description?: ReactNode;
|
|
children?: ReactNode;
|
|
layout?: 'below' | 'inline';
|
|
icon?: ReactNode;
|
|
bottomSeparator?: 'standard' | 'thick' | 'none';
|
|
indentLevel?: number;
|
|
tooltip?: string;
|
|
highlightOnFocus?: boolean;
|
|
}
|