@frontity/twentynineteen-theme
Version:
A WordPress Twentynineteen Theme in React for Frontity
23 lines (20 loc) • 488 B
JavaScript
import React from "react";
const CategoryIcon = () => (
<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="M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"
></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
);
export default CategoryIcon;