Sha256: 8d33ed180270a1a346365e9d8c6fad47e34433553c31de7eb9d6d6d725165e30
Contents?: true
Size: 1.07 KB
Versions: 14
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class BrandDeezer < 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: 'M3 16.5h2v.5h-2z') s.path(d: 'M8 16.5h2.5v.5h-2.5z') s.path(d: 'M16 17h-2.5v-.5h2.5z') s.path(d: 'M21.5 17h-2.5v-.5h2.5z') s.path(d: 'M21.5 13h-2.5v.5h2.5z') s.path(d: 'M21.5 9.5h-2.5v.5h2.5z') s.path(d: 'M21.5 6h-2.5v.5h2.5z') s.path(d: 'M16 13h-2.5v.5h2.5z') s.path(d: 'M8 13.5h2.5v-.5h-2.5z') s.path(d: 'M8 9.5h2.5v.5h-2.5z') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems