mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 09:08:09 +08:00
9 lines
341 B
JavaScript
9 lines
341 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 const TITLE_BADGE_INFO = 'info';
|
|
export default TitleBadge;
|