@vicinae/api
    Preparing search index...

    Type Alias Props

    type Props = {
        accessories?: List.Item.Accessory[];
        actions?: ReactNode;
        detail?: React.ReactNode;
        icon?: ImageLike | { tooltip: string; value: ImageLike | undefined | null };
        id?: string;
        keywords?: string[];
        subtitle?: string;
        title: string;
    }
    Index

    Properties

    accessories?: List.Item.Accessory[]
    actions?: ReactNode

    Action panel to show when this item is selected.

    detail?: React.ReactNode

    Additional information to display in a side panel if it is the currently selected item.

    icon?: ImageLike | { tooltip: string; value: ImageLike | undefined | null }

    Icon to show to the left of the item.

    id?: string

    Unique identifier for this item. If not explicitly specified, Vicinae will create one automatically.

    keywords?: string[]

    Additional keywords the builtin filtering will consider when ranking items.

    Note that keywords match with a lower score than the title or subtitle fields.

    If builtin filtering is disabled, these are not used.

    subtitle?: string

    Subtitle to show next to the title, using a dampened color.

    title: string