Sha256: 3d62ecbac9b6a8cdb79c4c8b8c2c34026bd94909ed48a915bb7c0904c5dd99fd
Contents?: true
Size: 887 Bytes
Versions: 12
Compression:
Stored size: 887 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BellQuestion < 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.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 6' ) s.path(d: 'M9 17v1a3 3 0 0 0 5.914 .716') s.path(d: 'M19 22v.01') s.path(d: 'M19 19a2.003 2.003 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems