UNPKG

air-command-ui-library

Version:

A React component library for Air Command System with Storybook

11 lines (10 loc) 271 B
import React from 'react'; export interface KeyValueItem { key: string; value: string | number; } export interface KeyValueListProps extends React.HTMLAttributes<HTMLDivElement> { items: KeyValueItem[]; theme?: 'light' | 'dark'; className?: string; }