@shopify/react-html
Version:
A component to render your react app with no static HTML.
17 lines (16 loc) • 334 B
TypeScript
/// <reference types="react" />
export declare enum IconSize {
Large = 114,
Medium = 72,
Small = 57
}
interface Icon {
size: IconSize;
url: string;
}
interface Props {
icons?: Icon[];
startUpImage?: string;
}
export declare function AppleHomeScreen({ icons, startUpImage }: Props): JSX.Element;
export {};