Sha256: 706b0ceba67a3e23cbf918a51b5ac1483eb36c79ae3a37cebc3103b6d2cc0c9c
Contents?: true
Size: 1.01 KB
Versions: 12
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class GenderGenderfluid < 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: 'M10 15.464a4 4 0 1 0 4 -6.928a4 4 0 0 0 -4 6.928z') s.path(d: 'M15.464 14l3 -5.196') s.path(d: 'M5.536 15.195l3 -5.196') s.path(d: 'M12 12h.01') s.path(d: 'M9 9l-6 -6') s.path(d: 'M5.5 8.5l3 -3') s.path(d: 'M21 21l-6 -6') s.path(d: 'M17 20l3 -3') s.path(d: 'M3 7v-4h4') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems