Sha256: b8c20e44c49958249e2c0a6ac6a79a9c941923b538a308cccbdb98f50e0322b5
Contents?: true
Size: 715 Bytes
Versions: 12
Compression:
Stored size: 715 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowAutofitRight < 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: 'M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8') s.path(d: 'M4 18h17') s.path(d: 'M18 15l3 3l-3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems