diff --git a/src/plugins/shared_ux/public/components/page_template/no_data_page/no_data_card/types.ts b/src/plugins/shared_ux/public/components/page_template/no_data_page/no_data_card/types.ts index b4209ae093c28..e08d9fdeaaa33 100644 --- a/src/plugins/shared_ux/public/components/page_template/no_data_page/no_data_card/types.ts +++ b/src/plugins/shared_ux/public/components/page_template/no_data_page/no_data_card/types.ts @@ -9,7 +9,7 @@ import { EuiCardProps } from '@elastic/eui'; import { MouseEventHandler, ReactNode } from 'react'; -export type NoDataCardProps = Partial & { +export type NoDataCardProps = Partial> & { /** * Applies the `Recommended` beta badge and makes the button `fill` */ @@ -26,9 +26,4 @@ export type NoDataCardProps = Partial & { * Description for the card. If not provided, the default will be used. */ description?: string; - /** - * Layout direction of the card; needed for EuiCardPropsLayout: - * https://github.com/elastic/eui/blob/main/src/components/card/card.tsx#L57 - */ - layout?: 'vertical'; };