757fde8798
added ProBadge, InvestorBadge, DonorBadge components, css removed "PRO" from appending in display_name fixes: #50
8 lines
130 B
JavaScript
8 lines
130 B
JavaScript
import React from 'react';
|
|
|
|
const ProBadge = () => (
|
|
<span className='badge badge--pro'>Pro</span>
|
|
);
|
|
|
|
export default ProBadge;
|