14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { SVG } from 'wordpress-components';
|
|
|
|
const bookmark = (
|
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
<path fill="none" d="M0 0h24v24H0z" />
|
|
<path d="M17 3H7a2 2 0 00-2 2v16l7-3 7 3V5a2 2 0 00-2-2z" />
|
|
</SVG>
|
|
);
|
|
|
|
export default bookmark;
|