Sha256: a483c1b4b3329a20633a3feee187f4427243799e7d0e5d62db7be8b747a99b63
Contents?: true
Size: 704 Bytes
Versions: 18
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowAutofitLeft < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8') s.path(d: 'M20 18h-17') s.path(d: 'M6 15l-3 3l3 3') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems