Sha256: 2e7bd8f6a7e8a8561c8c8534d90a7c080dce423f89a5bc18f8e39bbfe250b34e
Contents?: true
Size: 603 Bytes
Versions: 3
Compression:
Stored size: 603 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CircleParkingIcon < 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.circle(cx: "12", cy: "12", r: "10") s.path(d: "M9 17V7h4a3 3 0 0 1 0 6H9") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems