Sha256: 71410715f98b02fe8dd1533c153b505d8574e238a237fb45d2bb16e942602e2a
Contents?: true
Size: 721 Bytes
Versions: 14
Compression:
Stored size: 721 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Grid2x2X < 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.path( d: 'M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3' ) s.path(d: 'm16 16 5 5') s.path(d: 'm16 21 5-5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems