Sha256: a19c8b734801128656cbdb5a157de0e8d654a3818661b283e3446e807f0b2efe
Contents?: true
Size: 809 Bytes
Versions: 18
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class RouteAltLeft < 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: 'M8 3h-5v5') s.path(d: 'M16 3h5v5') s.path(d: 'M3 3l7.536 7.536a5 5 0 0 1 1.464 3.534v6.93') s.path(d: 'M18 6.01v-.01') s.path(d: 'M16 8.02v-.01') s.path(d: 'M14 10v.01') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems