Sha256: 6a3e6f07face5212e37160394c63dc492de89b4e51ed06c8612858f042296211

Contents?: true

Size: 688 Bytes

Versions: 4

Compression:

Stored size: 688 Bytes

Contents

# frozen_string_literal: true

module RailsDevtools
  module Components
    class Lucide::Database < Lucide::Base
      def view_template
        svg(
          xmlns: "http://www.w3.org/2000/svg",
          width: width,
          height: height,
          viewbox: "0 0 24 24",
          fill: "none",
          stroke: "currentColor",
          stroke_width: "2",
          stroke_linecap: "round",
          stroke_linejoin: "round",
          class: "lucide lucide-database"
        ) do |s|
          s.ellipse(cx: "12", cy: "5", rx: "9", ry: "3")
          s.path(d: "M3 5V19A9 3 0 0 0 21 19V5")
          s.path(d: "M3 12A9 3 0 0 0 21 12")
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rails_devtools-0.1.3 app/views/rails_devtools/components/lucide/database.rb
rails_devtools-0.1.2 app/views/rails_devtools/components/lucide/database.rb
rails_devtools-0.1.1 app/views/rails_devtools/components/lucide/database.rb
rails_devtools-0.1.0 app/views/rails_devtools/components/lucide/database.rb