Sha256: 7a701068f0d36a17bcece18fd17d4c1bd07499f87e62348649548eed85c71a78
Contents?: true
Size: 788 Bytes
Versions: 12
Compression:
Stored size: 788 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandVolkswagen < 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: 'M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z' ) s.path(d: 'M5 7l4.5 11l1.5 -5h2l1.5 5l4.5 -11') s.path(d: 'M9 4l2 6h2l2 -6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems