# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Ruler3 < 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: 'M19.875 8c.621 0 1.125 .512 1.125 1.143v5.714c0 .631 -.504 1.143 -1.125 1.143h-15.875a1 1 0 0 1 -1 -1v-5.857c0 -.631 .504 -1.143 1.125 -1.143h15.75z' ) s.path(d: 'M9 8v2') s.path(d: 'M6 8v3') s.path(d: 'M12 8v3') s.path(d: 'M18 8v3') s.path(d: 'M15 8v2') end end end end end end # rubocop:enable Layout/LineLength