Sha256: a50bdb07529ab4260f7bdab245071cf1b06d94d66b920167e3a60ef0d4fdf85a
Contents?: true
Size: 749 Bytes
Versions: 18
Compression:
Stored size: 749 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AsteriskSimple < Base def filled raise NotImplementedError end def outline svg( **attrs, 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
18 entries across 18 versions & 2 rubygems