Sha256: 8a27c0cb7c5c7de6a2d548ffe32d7732042df44b628bf91aea407f25ee1a645e
Contents?: true
Size: 938 Bytes
Versions: 14
Compression:
Stored size: 938 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LayersSelected < 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: 'M8 10.5l6.492 -6.492') s.path(d: 'M13.496 16l6.504 -6.504z') s.path(d: 'M8.586 15.414l10.827 -10.827') s.path( d: 'M8 6a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z' ) s.path(d: 'M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems