Sha256: 6be9196b07b4321778ce643bd22662c6082225f0fa81cfc0f3bbb3767fb14244
Contents?: true
Size: 930 Bytes
Versions: 12
Compression:
Stored size: 930 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ExplicitOff < 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: 'M14 8h-2m-2 2v6h4') s.path( d: 'M8 4h10a2 2 0 0 1 2 2v10m-.586 3.414a2 2 0 0 1 -1.414 .586h-12a2 2 0 0 1 -2 -2v-12c0 -.547 .22 -1.043 .576 -1.405' ) s.path(d: 'M12 12h-2') s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
12 entries across 12 versions & 2 rubygems