Sha256: 2e193e647166cb239e97e627e9124b9a1a33a225f773c20ae5d4b0c80730c6a5
Contents?: true
Size: 740 Bytes
Versions: 26
Compression:
Stored size: 740 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CameraOff < 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.line(x1: '2', x2: '22', y1: '2', y2: '22') s.path(d: 'M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16') s.path(d: 'M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5') s.path(d: 'M14.121 15.121A3 3 0 1 1 9.88 10.88') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems