Interface IGeometryElementCardProps

    interface IGeometryElementCardProps {
        alreadySelected?: ISelection[];
        context: {
            dispatch: Dispatch<ISelectAction>;
            highlighted: undefined | ISelect;
            selected: ISelect[];
        };
        element: {
            color?: TGeometryColor;
            label: number;
            name: string;
            uuid: string;
        };
        filter?: TGeometryColor;
        search?: string;
    }

    Properties

    alreadySelected?: ISelection[]
    context: {
        dispatch: Dispatch<ISelectAction>;
        highlighted: undefined | ISelect;
        selected: ISelect[];
    }

    Type declaration

    element: {
        color?: TGeometryColor;
        label: number;
        name: string;
        uuid: string;
    }

    Type declaration

    search?: string

    Generated using TypeDoc and TypeDoc Airthium Plugin