Represents the properties for the Expansion component.

interface IExpansionProps<Data = IAnything, Payload = IAnything> {
    className?: string;
    description?: string;
    expansionOpened?: boolean;
    style?: any;
    title?: string;
}

Type Parameters

  • Data = IAnything

    The type of data associated with the component.

  • Payload = IAnything

    The type of payload associated with the component.

Hierarchy (View Summary)

Properties

className?: string
description?: string
expansionOpened?: boolean
style?: any
title?: string