Sha256: a5bd98cf55e2df0c5259ad6a2ecc202f612724238afa0d47d3946f82bc06618a
Contents?: true
Size: 780 Bytes
Versions: 12
Compression:
Stored size: 780 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ZodiacVirgo < 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: 'M3 4a2 2 0 0 1 2 2v9') s.path(d: 'M5 6a2 2 0 0 1 4 0v9') s.path(d: 'M9 6a2 2 0 0 1 4 0v10a7 5 0 0 0 7 5') s.path(d: 'M12 21a7 5 0 0 0 7 -5v-2a3 3 0 0 0 -6 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems