Sha256: 981c82057afe82bee5aef538213d05ba69e04a2f7d25ffb4f3610bd12a6a9bad
Contents?: true
Size: 734 Bytes
Versions: 12
Compression:
Stored size: 734 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ZodiacScorpio < 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 0v10a3 3 0 0 0 3 3h5l-3 -3m0 6l3 -3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems