Sha256: 376a379ce9c230ed81b507f18cef61d73b0a1c1a18f5f9206e85c8ac3f4131f2
Contents?: true
Size: 784 Bytes
Versions: 12
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GenderEpicene < 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: 'M15.536 15.536a5 5 0 1 0 -7.072 -7.072a5 5 0 0 0 7.072 7.072z') s.path(d: 'M15.536 15.535l5.464 -5.535') s.path(d: 'M3 14l5.464 -5.535') s.path(d: 'M12 12h.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems