UNPKG

@wonderflow/react-components

Version:

UI components from Wonderflow's Wanda design system

34 lines 947 B
/// <reference types="react" /> export declare type ProductCardHeaderProps = { /** * Set the subtitle or product brand. */ subtitle?: string; /** * Set the title or product name. */ title?: string; /** * Define how many lines the title should be clamped to. */ titleRows?: number; /** * Set a description text. */ description?: string; /** * Define how many lines the description should be clamped to. */ descriptionRows?: number; /** * Set the content to be displayed in the header menu. */ menuActions?: React.ReactNode; /** * Set the loading state showing a skeleton. */ isLoading?: boolean; }; export declare type ProductCardHeaderComponent = React.ForwardRefExoticComponent<ProductCardHeaderProps>; export declare const ProductCardHeader: ProductCardHeaderComponent; //# sourceMappingURL=product-card-header.d.ts.map