Sha256: 57f910bba55d6fe24fbe38ea25f0de63e3f272e4c8c95779a2b0b62bbcadf903
Contents?: true
Size: 803 Bytes
Versions: 12
Compression:
Stored size: 803 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class TextOrientation < 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: 'M9 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5') s.path(d: 'M5.5 11.5l5 -5') s.path(d: 'M21 12l-9 9') s.path(d: 'M21 12v4') s.path(d: 'M21 12h-4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems