@engie-group/fluid-design-system
Version:
The Fluid Design System is ENGIE’s open-source library to create, build and deliver ENGIE digital services in a more efficient way.
17 lines (16 loc) • 501 B
TypeScript
export declare const SUB_HEADER_LAYOUT: readonly ["rows", "columns", "single-column"];
export type SubHeaderLayout = (typeof SUB_HEADER_LAYOUT)[number];
export type SubHeaderProperties = {
/**
* The header text to display in the sub-header.
*/
header?: string;
/**
* The layout of the sub-header, either 'rows' or 'columns'.
*/
layout?: SubHeaderLayout;
/**
* Number of items per row. Only applicable when layout is 'rows'.
*/
rowsOf?: number;
};