File "index.tsx"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/icon/index.tsx
File size: 492 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */
import { cloneElement, isValidElement } from '@wordpress/element';
import type { ReactElement } from 'react';

interface IconProps {
	srcElement?: ReactElement;
	size?: number;
	className?: string;
}

function Icon( {
	srcElement,
	size = 24,
	...props
}: IconProps ): ReactElement | null {
	if ( ! isValidElement( srcElement ) ) {
		return null;
	}
	return cloneElement( srcElement, {
		width: size,
		height: size,
		...props,
	} );
}

export default Icon;