Sha256: 478ddd2ab8353039ca6bcfeb3f9a7e4a86e1a177173afe5e502f6472979d3b7e
Contents?: true
Size: 787 Bytes
Versions: 12
Compression:
Stored size: 787 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LetterSpacing < 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 12v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5') s.path(d: 'M13 4l3 8l3 -8') s.path(d: 'M5 18h14') s.path(d: 'M17 20l2 -2l-2 -2') s.path(d: 'M7 16l-2 2l2 2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems