Sha256: afac6bb3e742cb88eff9c6fbefe426ad5bda16fe32d167743efa7735fab6a989
Contents?: true
Size: 869 Bytes
Versions: 3
Compression:
Stored size: 869 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class OctagonAlertIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) do |s| s.path(d: "M12 16h.01") s.path(d: "M12 8v4") s.path( d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z" ) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems