UNPKG

@wordpress/components

Version:
20 lines (16 loc) 323 B
/** * 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;