UNPKG

fomantic-ui-react

Version:

Fomantic-UI React -- A React Component Library.

24 lines (23 loc) 1.17 kB
import React from 'react'; import { StepProps } from './type'; declare const Step: { ({ as, className, active, disabled, completed, link, content, children, ...props }: StepProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; Group: { ({ as, className, ordered, vertical, content, children, ...props }: import("./type").StepGroupProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Content: { ({ as, className, content, children, ...props }: import("./type").StepContentProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Title: { ({ as, className, content, children, ...props }: import("./type").StepTitleProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Description: { ({ as, className, content, children, ...props }: import("./type").StepDescriptionProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; }; export default Step;