@frontity/twentynineteen-theme
Version:
A WordPress Twentynineteen Theme in React for Frontity
23 lines (20 loc) • 636 B
JavaScript
import React from "react";
const TagIcon = () => (
<svg
className="svg-icon"
width="16"
height="16"
aria-hidden="true"
role="img"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<path
fill="currentColor"
d="M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z"
></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
);
export default TagIcon;