Sha256: a29eea10f2a4ed2b033e1307c8ff9a351abc283f5f5806a8fbe69f3d9c08f2be
Contents?: true
Size: 788 Bytes
Versions: 3
Compression:
Stored size: 788 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CigaretteOffIcon < 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 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13") s.path(d: "M18 8c0-2.5-2-2.5-2-5") s.path(d: "m2 2 20 20") s.path(d: "M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866") s.path(d: "M22 8c0-2.5-2-2.5-2-5") s.path(d: "M7 12v4") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems