Sha256: 1f98d04031dfbdb96c5ec6affdeecf29922e8b2ff9c1a2766de97db343c1a488
Contents?: true
Size: 953 Bytes
Versions: 12
Compression:
Stored size: 953 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandFinder < 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: 'M3 4m0 1a1 1 0 0 1 1 -1h16a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-16a1 1 0 0 1 -1 -1z' ) s.path(d: 'M7 8v1') s.path(d: 'M17 8v1') s.path( d: 'M12.5 4c-.654 1.486 -1.26 3.443 -1.5 9h2.5c-.19 2.867 .094 5.024 .5 7' ) s.path(d: 'M7 15.5c3.667 2 6.333 2 10 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems