# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Number48Small < 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: 'M16 12h-1a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1zh-1a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1' ) s.path(d: 'M6 8v3a1 1 0 0 0 1 1h3') s.path(d: 'M10 8v8') end end end end end end # rubocop:enable Layout/LineLength