Files
decky-frontend-lib/src/deck-components/Item.tsx

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;
}