Sha256: 055712f618b51611415788a307864c73d1745313b9a577e6aef11ce05663c3e5
Contents?: true
Size: 834 Bytes
Versions: 12
Compression:
Stored size: 834 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BellShare < 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.5 17h-8.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 6v2' ) s.path(d: 'M9 17v1a3 3 0 0 0 3 3') s.path(d: 'M16 22l5 -5') s.path(d: 'M21 21.5v-4.5h-4.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems