UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

8 lines (7 loc) 250 B
import { FunctionComponent } from 'react'; export type BannerType = 'success' | 'error' | 'warning' | 'info' | 'external_error'; interface BannerProps { type: BannerType; } declare const Banner: FunctionComponent<BannerProps>; export { Banner };