13 lines
307 B
TypeScript
13 lines
307 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { SVG } from '@wordpress/primitives';
|
|
|
|
const barcode = (
|
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
<path d="M2 6h2v12H2V6m3 0h1v12H5V6m2 0h3v12H7V6m4 0h1v12h-1V6m3 0h2v12h-2V6m3 0h3v12h-3V6m4 0h1v12h-1V6z" />
|
|
</SVG>
|
|
);
|
|
|
|
export default barcode;
|