Sha256: 470f759ec7335e13627084f75575741a7fd6ba8e8a5093605c516b92affa3b4a
Contents?: true
Size: 796 Bytes
Versions: 14
Compression:
Stored size: 796 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BellBolt < 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: 'M13.5 17h-9.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1' ) s.path(d: 'M9 17v1a3 3 0 0 0 4.368 2.67') s.path(d: 'M19 16l-2 3h4l-2 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems