Sha256: e64826a32e59ab6fe0ae6f6b638cf096b4ceec9f1ed80fb02cb4762ac4317723
Contents?: true
Size: 806 Bytes
Versions: 12
Compression:
Stored size: 806 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandLoom < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M17.464 6.518a6 6 0 1 0 -3.023 7.965') s.path(d: 'M17.482 17.464a6 6 0 1 0 -7.965 -3.023') s.path(d: 'M6.54 17.482a6 6 0 1 0 3.024 -7.965') s.path(d: 'M6.518 6.54a6 6 0 1 0 7.965 3.024') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems