Sha256: 6d306ac12e6b22065a9b284c768dea4deb722836a59675d6aabd4dd9bc8439eb
Contents?: true
Size: 700 Bytes
Versions: 12
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GenderGenderless < 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 10a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z') s.path(d: 'M12 10v-7') s.path(d: 'M7 15h10') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems