@wordpress/components
Version:
UI components for WordPress.
20 lines (16 loc) • 323 B
JavaScript
/**
* WordPress dependencies
*/
import { swatch } from '@wordpress/icons';
/**
* Internal dependencies
*/
import Icon from '../icon';
function Swatch( { fill } ) {
return fill ? (
<span className="components-swatch" style={ { background: fill } } />
) : (
<Icon icon={ swatch } />
);
}
export default Swatch;