Sha256: 85da4c7a07ce0222524a8736abd9910779d736fb719db71c52c7d2536f384925
Contents?: true
Size: 760 Bytes
Versions: 14
Compression:
Stored size: 760 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Playlist < 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 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M17 17v-13h4') s.path(d: 'M13 5h-10') s.path(d: 'M3 9l10 0') s.path(d: 'M9 13h-6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems