@carbon/ibm-products
Version:
Carbon for IBM Products
24 lines (23 loc) • 800 B
TypeScript
/**
* Copyright IBM Corp. 2022, 2022
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import React, { ReactNode } from 'react';
export interface EditTearsheetNarrowProps {
/**
* Provide the contents of the EditTearsheetNarrow.
*/
children: ReactNode;
/**
* Provide an optional class to be applied to the containing node.
*/
className?: string;
}
/**
* **This component is deprecated.** <br>
* Use a narrow tearsheet as an alternative to a modal when there is scrolling. See usage guidance for further information.
* @deprecated
*/
export declare let EditTearsheetNarrow: React.ForwardRefExoticComponent<EditTearsheetNarrowProps & React.RefAttributes<HTMLDivElement>>;