Sha256: 917cba39f50e1e5d439d09b337ab3bf6a5c0b560f1f77ace7ddafc7c05e9fc9f
Contents?: true
Size: 837 Bytes
Versions: 14
Compression:
Stored size: 837 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BellCode < 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: 'M11.5 17h-7.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 2.498 2.958') s.path(d: 'M20 21l2 -2l-2 -2') s.path(d: 'M17 17l-2 2l2 2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems