Files
decky-frontend-lib/src/deck-components/Item.tsx
2022-12-29 15:36:08 +08:00

13 lines
291 B
TypeScript

import { ReactNode } from 'react';
export interface ItemProps {
label?: ReactNode;
description?: ReactNode;
layout?: 'below' | 'inline';
icon?: ReactNode;
bottomSeparator?: 'standard' | 'thick' | 'none';
indentLevel?: number;
tooltip?: string;
highlightOnFocus?: boolean;
}