99.10.0 • Published 4 years ago

@temporg/ui-wizard v99.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

category: packages

ui-wizard

npm  build-status  MIT License  Code of Conduct

Main and application level wizardal components.

Components

The ui-wizard package contains the following:

Installation

yarn add @temporg/ui-wizard

Usage

import React from 'react'
import { VisualWizard } from '@temporg/ui-wizard'
import { Avatar } from '@temporg/ui-avatar'

const MyWizard = () => {
  return (
    <VisualWizard label="My Wizzard">
      <VisualWizard.Item
        icon={<Avatar name="Joel Andrews" size="x-small" />}
        label="My Account"
        href="http://example.com"
      />
    </VisualWizard>
  )
}

For detailed usage and documentation, see individual component examples.