Common props for all components

interface ComponentProps {
    className?: string;
    height: number;
    innerClassName?: string;
    width: number;
}

Hierarchy (view full)

Properties

className?: string

The className applied to the outer container element. Use when styling the entire component.

height: number

Component height

innerClassName?: string

The className applied to the inner container element. Use for special cases when styling only the inner container and items.

width: number

Component width