Sha256: 84ef884316e051761eaa7719ed8f8e682ac5f5fc2d69eb569ca3962a9bc72336
Contents?: true
Size: 789 Bytes
Versions: 3
Compression:
Stored size: 789 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class HardHatIcon < 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: "M2 18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v2z" ) s.path(d: "M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5") s.path(d: "M4 15v-3a6 6 0 0 1 6-6") s.path(d: "M14 6a6 6 0 0 1 6 6v3") 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/hard_hat_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/hard_hat_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/hard_hat_icon.rb |