diff --git a/src/deck-components/Item.tsx b/src/deck-components/Item.tsx index d2ea67a..a101d80 100644 --- a/src/deck-components/Item.tsx +++ b/src/deck-components/Item.tsx @@ -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';