UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.21 kB
(function(global, factory) { typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory(require("@elf-framework/sapa"), require("../components/SvgIcon")) : typeof define === "function" && define.amd ? define(["@elf-framework/sapa", "../components/SvgIcon"], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, global["icons/PolicyFilled"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const PolicyFilled = (props = {}) => { return SvgIcon.SvgIcon({ "name": "Policy", "theme": "filled", "icon": { "tag": "svg", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [{ "tag": "path", "attributes": { "d": "m21 5-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12a4.994 4.994 0 0 1-6.29-.64 5.003 5.003 0 0 1 0-7.07 5.003 5.003 0 0 1 7.07 0 5.006 5.006 0 0 1 .64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "12", "cy": "12", "r": "3" }, "children": [] }] } }, props); }; PolicyFilled.displayName = "PolicyFilled"; return PolicyFilled; });