Sha256: ac131d18f256e3367ffab1fc36953c691abba1296d2b9aa17d526c9a098ffc42
Contents?: true
Size: 598 Bytes
Versions: 3
Compression:
Stored size: 598 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class MouseIcon < 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.rect(x: "5", y: "2", width: "14", height: "20", rx: "7") s.path(d: "M12 6v4") 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/mouse_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/mouse_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/mouse_icon.rb |