Sha256: d8b2106c2df38d4620d0b346011b2670e1b8407031ba676d2214aa3f0d1cf8cc
Contents?: true
Size: 602 Bytes
Versions: 12
Compression:
Stored size: 602 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowBack < 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' ) { |s| s.path(d: 'M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems