@shopify/react-html
Version:
A component to render your React app with no static HTML
17 lines • 379 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 {};
//# sourceMappingURL=AppleHomeScreen.d.ts.map