Sha256: 00548fc47f9478d6259e6cce6a675763a45b66d870bdc16e07bda0265e41dfd8
Contents?: true
Size: 824 Bytes
Versions: 12
Compression:
Stored size: 824 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ZodiacLeo < 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: 'M13 17a4 4 0 1 0 8 0') s.path(d: 'M6 16m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M11 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0') s.path(d: 'M7 7c0 3 2 5 2 9') s.path(d: 'M15 7c0 4 -2 6 -2 10') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems