mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
9 lines
301 B
JavaScript
9 lines
301 B
JavaScript
|
const TitleBadge = ( { text, type } ) => {
|
||
|
const className = 'ppcp-r-title-badge ' + `ppcp-r-title-badge--${ type }`;
|
||
|
return <span className={ className }>{ text }</span>;
|
||
|
};
|
||
|
|
||
|
export const TITLE_BADGE_POSITIVE = 'positive';
|
||
|
export const TITLE_BADGE_NEGATIVE = 'negative';
|
||
|
export default TitleBadge;
|