14 lines
346 B
JavaScript
14 lines
346 B
JavaScript
|
export const TwoColumnsIcon = () => (
|
||
|
<svg
|
||
|
className="woocommerce-layout__activity-panel-tab-icon"
|
||
|
width="18"
|
||
|
height="14"
|
||
|
viewBox="0 0 18 14"
|
||
|
fill="none"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
>
|
||
|
<rect x="0.5" y="0.5" width="7" height="13" strokeWidth="1" />
|
||
|
<rect x="9.5" y="0.5" width="7" height="13" strokeWidth="1" />
|
||
|
</svg>
|
||
|
);
|