@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
44 lines • 777 B
TypeScript
/**
* @license
*
* Copyright IBM Corp. 2023, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* Modal size.
*/
export declare enum SIDE_PANEL_SIZE {
/**
* Extra small size.
*/
EXTRA_SMALL = "xs",
/**
* Small size.
*/
SMALL = "sm",
/**
* Medium size.
*/
MEDIUM = "md",
/**
* Large size.
*/
LARGE = "lg",
/**
* Extra Large size.
*/
EXTRA_LARGE = "xl",
/**
* 2X-Large size.
*/
EXTRA_EXTRA_LARGE = "2xl"
}
export declare enum SIDE_PANEL_PLACEMENT {
/** right / default */
RIGHT = "right",
/** left */
LEFT = "left"
}
//# sourceMappingURL=defs.d.ts.map