@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
15 lines (14 loc) • 429 B
TypeScript
import { PageDashboardCardWidth } from './PageDashboardCard';
import { ReactNode } from 'react';
export declare function PageDashboardCarousel(props: {
title: string;
linkText?: string;
to?: string;
width?: PageDashboardCardWidth;
children: ReactNode;
footerActionButton?: {
icon?: ReactNode;
title: string;
onClick: () => void;
};
}): import("react/jsx-runtime").JSX.Element;