Sha256: 33481366ca38dbe8e54309077b6722e5b620b641fd1e8da6d650b2f400bb8159
Contents?: true
Size: 754 Bytes
Versions: 12
Compression:
Stored size: 754 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowBounce < 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: 'M10 18h4') s.path( d: 'M3 8a9 9 0 0 1 9 9v1l1.428 -4.285a12 12 0 0 1 6.018 -6.938l.554 -.277' ) s.path(d: 'M15 6h5v5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems