Sha256: db0976732e1cb14208ec86d12025c3553c73921263e7522ab61e6a55ad6e39d4
Contents?: true
Size: 699 Bytes
Versions: 12
Compression:
Stored size: 699 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GenderDemigirl < 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 9m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0') s.path(d: 'M12 14v7') s.path(d: 'M9 18h3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems