UNPKG

@octopusdeploy/design-system-components

Version:
22 lines (21 loc) 898 B
import type * as React from "react"; import type { BadgeProps } from "../../Badge/index"; import type { PrimaryPageAction, PageAction } from "../../PageActions"; interface EmptyStateOnboardingProps { title: string; description?: React.ReactNode | string; secondaryDescription?: React.ReactNode | string; image?: React.ReactElement; learnMore?: React.ReactElement; primaryAction?: PrimaryPageAction; actions?: PageAction[]; callout?: EmptyStateOnboardingCallout; headerBadge?: React.ReactElement<BadgeProps>; } export interface EmptyStateOnboardingCallout { title: string; description: string; action: PageAction; } export declare function EmptyStateOnboarding({ title, description, secondaryDescription, image, primaryAction, actions, learnMore, callout, headerBadge }: EmptyStateOnboardingProps): import("react/jsx-runtime").JSX.Element; export {};