UNPKG

@combine-labs/combine-polaris

Version:

Combine Lab's product component library. Forked from Shopify's Polaris.

14 lines (13 loc) 482 B
import * as React from 'react'; import { WithAppProviderProps } from '../AppProvider'; export interface Props { title: string; description?: string; withIllustration?: boolean; } export declare type CombinedProps = Props & WithAppProviderProps; export declare class EmptySearchResult extends React.PureComponent<CombinedProps, never> { render(): JSX.Element; } declare const _default: React.ComponentClass<Props> & typeof EmptySearchResult; export default _default;