Type alias LLBasePickerProps<TItem>

LLBasePickerProps<TItem>: ComponentStyleProp<LLBasePickerStyles> & {
    EmptyPickerComponent?: typeof LLPickerEmptyComponent;
    PickerHeaderComponent?: (() => JSX.Element);
    PickerItemComponent: (({ item }) => JSX.Element);
    loading?: boolean;
    packItems: TItem[];
    visible: boolean;
}

Type Parameters

Type declaration

  • Optional EmptyPickerComponent?: typeof LLPickerEmptyComponent
  • Optional PickerHeaderComponent?: (() => JSX.Element)
      • (): JSX.Element
      • Returns JSX.Element

  • PickerItemComponent: (({ item }) => JSX.Element)
      • ({ item }): JSX.Element
      • Parameters

        • { item }: {
              item: TItem;
          }
          • item: TItem

        Returns JSX.Element

  • Optional loading?: boolean
  • packItems: TItem[]
  • visible: boolean

Generated using TypeDoc