Sha256: 296cc4498d131acbacc6846536303f9e8f12d7348a41c4569c31e89d5a60e629
Contents?: true
Size: 831 Bytes
Versions: 12
Compression:
Stored size: 831 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BellExclamation < 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: 'M15 17h-11a4 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.5' ) s.path(d: 'M9 17v1a3 3 0 0 0 6 0v-1') s.path(d: 'M19 16v3') s.path(d: 'M19 22v.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems