Sha256: 744ea300a15e00a5732a7f9600577c56b0564e698911fec60cfd9838678f2ef2
Contents?: true
Size: 990 Bytes
Versions: 102
Compression:
Stored size: 990 Bytes
Contents
import React from 'react' import ProgressStep from '../_progress_step.jsx' import ProgressStepItem from '../_progress_step_item.jsx' const ProgressStepVertical = () => ( <div> <ProgressStep icon orientation="vertical" > <ProgressStepItem status="complete" /> <ProgressStepItem status="active" /> <ProgressStepItem status="inactive" /> </ProgressStep> <br /> <ProgressStep orientation="vertical"> <ProgressStepItem status="complete" /> <ProgressStepItem status="active" /> <ProgressStepItem status="inactive" /> </ProgressStep> <br /> <ProgressStep orientation="vertical"> <ProgressStepItem status="complete"> {'Child'} </ProgressStepItem> <ProgressStepItem status="active"> {'Child'} </ProgressStepItem> <ProgressStepItem status="inactive"> {'Child'} </ProgressStepItem> </ProgressStep> </div> ) export default ProgressStepVertical
Version data entries
102 entries across 102 versions & 1 rubygems