Sha256: 241d3f394f1c9e11463b2d9aaf1f62298ef74880d2d9837131f820a6192b0847
Contents?: true
Size: 705 Bytes
Versions: 10
Compression:
Stored size: 705 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowLeftRhombus < 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: 'M16 12h-13') s.path(d: 'M6 9l-3 3l3 3') s.path(d: 'M18.5 9.5l2.5 2.5l-2.5 2.5l-2.5 -2.5z') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems