Sha256: 2a3bb462b53e4ea31715af17cec553ac7255186fff126a959e2205bd6dde1c9a
Contents?: true
Size: 682 Bytes
Versions: 12
Compression:
Stored size: 682 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArcheryArrow < 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: 'M14 7v3h3l3 -3h-3v-3z') s.path(d: 'M14 10l-9 9') s.path(d: 'M5 15v4h4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems