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