import { __ } from '@wordpress/i18n';
import { Icon, textColor } from '@wordpress/icons';
export const TextSimple = ({
text,
color,
}: {
text?: string;
color?: string;
}) => {
if (text === undefined) {
return (
);
}
return (
{text || __('Copy', 'code-block-pro')}
);
};