@wordpress/block-editor
Version:
48 lines (40 loc) • 1.02 kB
JavaScript
/**
* External dependencies
*/
import { View } from 'react-native';
/**
* WordPress dependencies
*/
import { Icon } from '@wordpress/components';
import { blockDefault } from '@wordpress/icons';
import { usePreferredColorSchemeStyle } from '@wordpress/compose';
/**
* Internal dependencies
*/
import styles from './style.scss';
export function BlockIcon( { icon, fill, size, showColors = false } ) {
if ( icon?.src === 'block-default' ) {
icon = {
src: blockDefault,
};
}
const defaultFill = usePreferredColorSchemeStyle(
styles.iconPlaceholder,
styles.iconPlaceholderDark
)?.fill;
const iconForeground = showColors ? icon?.foreground : undefined;
const renderedIcon = (
<Icon
icon={ icon && icon.src ? icon.src : icon }
fill={ fill || iconForeground || defaultFill }
{ ...( size && { size } ) }
/>
);
const style = showColors
? {
backgroundColor: icon && icon.background,
}
: {};
return <View style={ style }>{ renderedIcon }</View>;
}
export default BlockIcon;