UNPKG

@octopusdeploy/design-system-components

Version:
10 lines (9 loc) 301 B
import type React from "react"; import type { BadgeVariant, StatusBadgeProps } from "../Badge"; export type PageTitleBadge = { variant: BadgeVariant; icon?: React.ReactNode; label?: string; tooltipContent?: string; }; export type PageTitleStatusBadge = Omit<StatusBadgeProps, "size">;