/**
* External dependencies
*/
import { decodeEntities } from '@wordpress/html-entities';
import classnames from 'classnames';
/**
* Internal dependencies
*/
import './style.scss';
/**
* Render the Product name.
*
* The store API runs titles through `wp_kses_post()` which removes dangerous HTML tags, so using it inside `dangerouslySetInnerHTML` is considered safe.
*/
export default ( {
className = '',
disabled = false,
name,
permalink = '',
...props
}: {
className: string;
disabled: boolean;
name: string;
permalink: string;
} ): JSX.Element => {
const classes = classnames( 'wc-block-components-product-name', className );
return disabled ? (
) : (
);
};