Sha256: e3ad4f1d643d3fe3cbec3e013ea0ec47089fb48c8811c41157d3b848f98e86a1
Contents?: true
Size: 747 Bytes
Versions: 18
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowBounce < 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: '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
18 entries across 18 versions & 2 rubygems