Sha256: fedfb2dc0b1ccd8379aaa4604526d37ab810a9f0130ec9637235d4fe1d88349b
Contents?: true
Size: 744 Bytes
Versions: 12
Compression:
Stored size: 744 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GenderHermaphrodite < 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 14v7') s.path(d: 'M9 18h6') s.path(d: 'M12 6a4 4 0 1 1 0 8a4 4 0 0 1 0 -8z') s.path(d: 'M15 3a3 3 0 1 1 -6 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems