Sha256: 6cb7c6cbd795e051503e82bfc4263b15a17502cab05865aa76f65ac850b79a82
Contents?: true
Size: 747 Bytes
Versions: 12
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandPicsart < 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 9m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0') s.path(d: 'M12 9m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M5 9v11a2 2 0 1 0 4 0v-4.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems