Sha256: 0b3e0faaa7b322c191556d27df941445d6e630f8f6191101e580b28f765527a3

Contents?: true

Size: 829 Bytes

Versions: 3

Compression:

Stored size: 829 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class BusFrontIcon < 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: "M4 6 2 7")
          s.path(d: "M10 6h4")
          s.path(d: "m22 7-2-1")
          s.rect(width: "16", height: "16", x: "4", y: "3", rx: "2")
          s.path(d: "M4 11h16")
          s.path(d: "M8 15h.01")
          s.path(d: "M16 15h.01")
          s.path(d: "M6 19v2")
          s.path(d: "M18 21v-2")
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phlex-lucide-0.428.0 lib/phlex/lucide/icons/bus_front_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/bus_front_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/bus_front_icon.rb