# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class VocabularyOff < 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: 'M7 3h3a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v13m-2 2h-5a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2h-6a1 1 0 0 1 -1 -1v-14c0 -.279 .114 -.53 .298 -.712' ) s.path(d: 'M12 5v3m0 4v9') s.path(d: 'M7 11h1') s.path(d: 'M16 7h1') s.path(d: 'M16 11h1') s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Layout/LineLength