3d509c84a2
reorganization, linting, updating file imports, consolidation warning: there will be errors in this commit todo: update webpack, add missing styles, scss files, consolidate group page components.
14 lines
245 B
JavaScript
14 lines
245 B
JavaScript
import './verified_icon.scss';
|
|
|
|
export default class VerifiedIcon extends PureComponent {
|
|
|
|
render() {
|
|
return (
|
|
<span className='verified-icon'>
|
|
<span className='invisible'>Verified Account</span>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
};
|