mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
16 lines
402 B
JavaScript
16 lines
402 B
JavaScript
const TitleBadge = ( { text, type } ) => {
|
|
const className = 'ppcp-r-title-badge ' + `ppcp-r-title-badge--${ type }`;
|
|
return (
|
|
<span
|
|
className={ className }
|
|
dangerouslySetInnerHTML={ {
|
|
__html: text,
|
|
} }
|
|
></span>
|
|
);
|
|
};
|
|
|
|
export const TITLE_BADGE_POSITIVE = 'positive';
|
|
export const TITLE_BADGE_NEGATIVE = 'negative';
|
|
export const TITLE_BADGE_INFO = 'info';
|
|
export default TitleBadge;
|