Sha256: f5104b4e5c78477ce24dc4f1d3994fb0e0d5308c5a8a8dea5d0b4791ff4010d6
Contents?: true
Size: 608 Bytes
Versions: 18
Compression:
Stored size: 608 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandCampaignmonitor < 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' ) { |s| s.path(d: 'M3 18l9 -6.462l-9 -5.538v12h18v-12l-9 5.538') } end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems