UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

12 lines (11 loc) 539 B
import React from "react"; import { SpaceProps } from "styled-system"; import { TagProps } from "../../__internal__/utils/helpers/tags"; export interface StepSequenceProps extends SpaceProps, TagProps { /** Step sequence items to be rendered */ children: React.ReactNode; /** The direction that step sequence items should be rendered */ orientation?: "horizontal" | "vertical"; } export declare const StepSequence: ({ children, orientation, ...props }: StepSequenceProps) => React.JSX.Element; export default StepSequence;