Sha256: 3c50afeb7eb01ec9639d1ed51ff952a9435ff6203e3a68caeef365cda72a7dc0
Contents?: true
Size: 779 Bytes
Versions: 14
Compression:
Stored size: 779 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Vinyl < 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: 'M16 3.937a9 9 0 1 0 5 8.063') s.path(d: 'M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M20 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M20 4l-3.5 10l-2.5 2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems