@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.
14 lines (13 loc) • 406 B
TypeScript
export type HeaderDrawerProperties = {
/**
* The label for the back button.
* If not provided, the back button will not be displayed.
* If provided to an empty string, the back button will be displayed as an icon button.
*/
backArrow?: string;
/**
* Whether the drawer can be closed.
* If true, a close button will be displayed.
*/
closable?: boolean;
};