@brizy/ui-icons
Version:
7 lines (6 loc) • 598 B
JavaScript
import React from "react";
export const MinistryBrandsArticleLayout = ({ 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: "M14 0H2c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h12c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1M8 13H4v-2h4zm4-4H4V7h8zm0-4H4V3h8z", fill: "currentColor", fillRule: "nonzero" }))));
};