Sha256: b45fe4922632e3b9ec5edb2e09487723966f6554007c84876979d1ee3dd2b009
Contents?: true
Size: 1.08 KB
Versions: 12
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class TextResize < 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 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M5 7v10') s.path(d: 'M7 5h10') s.path(d: 'M7 19h10') s.path(d: 'M19 7v10') s.path(d: 'M10 10h4') s.path(d: 'M12 14v-4') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems