mirror of
https://github.com/wassname/talk.git
synced 2026-07-18 12:40:13 +08:00
18 lines
355 B
JavaScript
18 lines
355 B
JavaScript
import React from 'react';
|
|
import styles from './StepProgress.css';
|
|
import { Icon } from 'plugin-api/beta/client/components/ui';
|
|
|
|
class StepProgress extends React.Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<span className={styles.step}>
|
|
<Icon name="done" />
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default StepProgress;
|