Sha256: 864d9e52eee22cbd76f9fa440dc74abb797cebf69e84f8f99a13191237a81436
Contents?: true
Size: 819 Bytes
Versions: 4
Compression:
Stored size: 819 Bytes
Contents
# frozen_string_literal: true module RailsDevtools module Components class Lucide::PocketKnife < 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-pocket-knife" ) do |s| s.path(d: "M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2") s.path(d: "M18 6h.01") s.path(d: "M6 18h.01") s.path(d: "M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z") s.path(d: "M18 11.66V22a4 4 0 0 0 4-4V6") end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems