/** * External dependencies */ import * as React from "react"; type NetsEasyCheckoutProps = { description: string; }; export const NetsEasyCheckout: React.FC = (props) => { const { description } = props; return (

{description}

); }; type LabelProps = { title: string; icon: string; }; export const Label: React.FC = (props) => { const { title, icon } = props; // Print the title and icon as a single line. return (
{title} {title}
); };