Sha256: 7a3035c40b2117d2770ba9a0ba19ca31d70410563155fa3816598c482a07a09b
Contents?: true
Size: 871 Bytes
Versions: 26
Compression:
Stored size: 871 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class WebhookOff < Base def view_template 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: 'M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15') s.path(d: 'M9 3.4a4 4 0 0 1 6.52.66') s.path(d: 'm6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05') s.path(d: 'M20.3 20.3a4 4 0 0 1-2.3.7') s.path(d: 'M18.6 13a4 4 0 0 1 3.357 3.414') s.path(d: 'm12 6 .6 1') s.path(d: 'm2 2 20 20') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems