Sha256: 6223ecab8237aa51ce7de32b28ab9f48842a981a162f2b0e75d550722f15483e
Contents?: true
Size: 744 Bytes
Versions: 12
Compression:
Stored size: 744 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Stretching2 < 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: 'M11 4a1 1 0 1 0 2 0a1 1 0 0 0 -2 0') s.path(d: 'M6.5 21l3.5 -5') s.path(d: 'M5 11l7 -2') s.path(d: 'M16 21l-4 -7v-5l7 -4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems