UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

10 lines (9 loc) 257 B
export interface StepItem { label: string; description?: string; important?: boolean; } export type StepsPropsType = { items: StepItem[]; }; export declare const Steps: ({ items }: StepsPropsType) => import("react/jsx-runtime").JSX.Element;