Sha256: 65f26936c34d7b19495a339e839209859da6bfe0c3f00426d86b80e808be96b7
Contents?: true
Size: 711 Bytes
Versions: 12
Compression:
Stored size: 711 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandParsinta < 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 3a9 9 0 1 0 9 9') s.path(d: 'M21 12a9 9 0 0 0 -9 -9', opacity: '.5') s.path(d: 'M10 9v6l5 -3z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems