Sha256: 8578b8a606488df9b304f52d76f391e78f62978a71b10cea23891f1b8c126102
Contents?: true
Size: 745 Bytes
Versions: 12
Compression:
Stored size: 745 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GenderGenderqueer < 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 11a5 5 0 1 1 0 10a5 5 0 0 1 0 -10z') s.path(d: 'M12 11v-8') s.path(d: 'M14.5 4.5l-5 3') s.path(d: 'M9.5 4.5l5 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems