Sha256: 092e289ff313da28940495235eb5f2e437d3f753eb806d31ded9e2aaf4c36c71
Contents?: true
Size: 764 Bytes
Versions: 14
Compression:
Stored size: 764 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Mouse2 < Base def filled raise NotImplementedError end def outline 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.path( d: 'M6 3m0 4a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v10a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4z' ) s.path(d: 'M12 3v7') s.path(d: 'M6 10h12') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems