@brizy/ui-icons
Version:
7 lines (6 loc) • 640 B
JavaScript
import React from "react";
export const MinistryBrandsArticleDetail = ({ className, onClick, style }) => {
return (React.createElement("svg", { className: className, style: style, onClick: onClick, width: "1em", height: "1em", viewBox: "0 0 16 16", fill: "currentColor" },
React.createElement("g", { stroke: "none", strokeWidth: "1", fill: "currentColor", fillRule: "evenodd" },
React.createElement("path", { d: "M1 0h12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1Zm12 10H1a1 1 0 0 0 0 2h12a1 1 0 0 0 0-2Zm0 4H1a1 1 0 0 0 0 2h12a1 1 0 0 0 0-2Z", fill: "currentColor", fillRule: "nonzero" }))));
};