Sha256: b847b40c8e016e90f6f1a6d4a517a934f0829307d63e65963186bf8adc8f5dc5
Contents?: true
Size: 591 Bytes
Versions: 14
Compression:
Stored size: 591 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Mouse < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.rect(x: '5', y: '2', width: '14', height: '20', rx: '7') s.path(d: 'M12 6v4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems