Sha256: 3c44b37972654c28fcfcb9d732a958205ea0c3c7c17d53a920e2c5b7313ecc14

Contents?: true

Size: 882 Bytes

Versions: 3

Compression:

Stored size: 882 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class BusIcon < 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: "M8 6v6")
          s.path(d: "M15 6v6")
          s.path(d: "M2 12h19.6")
          s.path(
            d:
              "M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"
          )
          s.circle(cx: "7", cy: "18", r: "2")
          s.path(d: "M9 18h5")
          s.circle(cx: "16", cy: "18", r: "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_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/bus_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/bus_icon.rb