videosphere
    Preparing search index...

    Type Alias EmptyStateProps

    Defines the EmptyStateProps type.

    type EmptyStateProps = {
        title: string;
        description?: string;
        icon?: React.ReactNode;
        action?: EmptyStateAction;
    }
    Index

    Properties

    title: string
    description?: string
    icon?: React.ReactNode

    Optional icon or illustration (e.g. SVG or icon component).

    Optional primary action: provide either href (navigation) or onClick (callback), not both.