Sha256: 303d906b363ed7f333811c8ae477c4740f13c4e9d17b64a7d7f86b427b71315f
Contents?: true
Size: 860 Bytes
Versions: 12
Compression:
Stored size: 860 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Armchair < 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: 'M5 11a2 2 0 0 1 2 2v2h10v-2a2 2 0 1 1 4 0v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2z' ) s.path(d: 'M5 11v-5a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v5') s.path(d: 'M6 19v2') s.path(d: 'M18 19v2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems