Sha256: d501fa4f62cfa2d3869a3e464e2c4ff477bc58b5768e393634015e3373947d9b
Contents?: true
Size: 738 Bytes
Versions: 12
Compression:
Stored size: 738 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandCupra < 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: 'M4.5 10l-2.5 -4l15.298 6.909a.2 .2 0 0 1 .09 .283l-3.388 5.808') s.path(d: 'M10 19l-3.388 -5.808a.2 .2 0 0 1 .09 -.283l15.298 -6.909l-2.5 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems