UNPKG

@shopify/cli-kit

Version:

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

9 lines (8 loc) 289 B
import React, { FunctionComponent } from 'react'; export type BannerType = 'success' | 'error' | 'warning' | 'info' | 'external_error'; interface BannerProps { type: BannerType; children?: React.ReactNode; } declare const Banner: FunctionComponent<BannerProps>; export { Banner };