ov25-ui
Version:
A UI configurator for OV25 product visualization
10 lines (9 loc) • 479 B
TypeScript
import React from 'react';
export type DrawerSizes = 'closed' | 'small' | 'large';
export interface ProductVariantsWrapperProps {
isInline?: boolean;
/** Set when used inside VariantsOnlySheet (sheet supplies close + checkout). */
embeddedInVariantsOnlySheet?: boolean;
hideVariantsHeader?: boolean;
}
export declare function ProductVariantsWrapper({ isInline, embeddedInVariantsOnlySheet, hideVariantsHeader, }?: ProductVariantsWrapperProps): React.JSX.Element;