7 lines
150 B
JavaScript
7 lines
150 B
JavaScript
import React from 'react';
|
|
|
|
const InvestorBadge = () => (
|
|
<span className='badge badge--investor'>Investor</span>
|
|
);
|
|
|
|
export default InvestorBadge;
|