mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-22 19:08:46 +02:00
* fix(field): correct and extend FieldProps * fix(item): correct bottomSeparator in ItemProps * fix(field): correct field commentary * feat(field): add comment about inlineWrap
12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
export interface ItemProps {
|
|
label?: string;
|
|
description?: string;
|
|
layout?: 'below' | 'inline';
|
|
icon?: ReactNode;
|
|
bottomSeparator?: 'standard' | 'thick' | 'none';
|
|
indentLevel?: number;
|
|
tooltip?: string;
|
|
}
|