13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from 'wordpress-components';
|
||
|
|
||
|
const heading = (
|
||
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||
|
<path d="M7 6L7 17L12 12.875L17 17L17 6L12 6L7 6Z" />
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default heading;
|