Sha256: 0a5f9b68f27c465572fdc2197a9e007235a2570a2a21113bfaf47f2d46e666ce
Contents?: true
Size: 761 Bytes
Versions: 14
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Category2 < 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: 'M14 4h6v6h-6z') s.path(d: 'M4 14h6v6h-6z') s.path(d: 'M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M7 7m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems