Sha256: 9fff2fd104cb2d7fa4b863b2bb52eb887e909b04b3e22437aff1cf01ff3b8902
Contents?: true
Size: 756 Bytes
Versions: 12
Compression:
Stored size: 756 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AsteriskSimple < 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 12v-9') s.path(d: 'M12 12l-9 -2.5') s.path(d: 'M12 12l9 -2.5') s.path(d: 'M12 12l6 8.5') s.path(d: 'M12 12l-6 8.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems