Merge pull request #46 from FrogTheFrog/patch-20

fix(Item): change title and description types to ReactNode
This commit is contained in:
Jonas Dellinger
2022-10-29 21:44:13 +02:00
committed by GitHub

View File

@@ -1,8 +1,8 @@
import { ReactNode } from 'react';
export interface ItemProps {
label?: string;
description?: string;
label?: ReactNode;
description?: ReactNode;
layout?: 'below' | 'inline';
icon?: ReactNode;
bottomSeparator?: 'standard' | 'thick' | 'none';