Sha256: dde5370e23b3079e812a365dc8af1482fd7d5dde5ddbd8c7776061a401b25d13
Contents?: true
Size: 902 Bytes
Versions: 2
Compression:
Stored size: 902 Bytes
Contents
# frozen_string_literal: true module Phlex module Heroicons class ArrowUturnLeft < Base def outline svg(xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewbox: '0 0 24 24', stroke_width: '1.5', stroke: 'currentColor', aria_hidden: 'true', class: classes) do whitespace path stroke_linecap: 'round', stroke_linejoin: 'round', d: 'M9 15L3 9m0 0l6-6M3 9h12a6 6 0 010 12h-3' end end def solid svg(xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'currentColor', aria_hidden: 'true', class: classes) do whitespace path fill_rule: 'evenodd', d: 'M9.53 2.47a.75.75 0 010 1.06L4.81 8.25H15a6.75 6.75 0 010 13.5h-3a.75.75 0 010-1.5h3a5.25 5.25 0 100-10.5H4.81l4.72 4.72a.75.75 0 11-1.06 1.06l-6-6a.75.75 0 010-1.06l6-6a.75.75 0 011.06 0z', clip_rule: 'evenodd' end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phlex-heroicons-1.1.0 | lib/phlex/heroicons/arrow_uturn_left.rb |
phlex-heroicons-1.0.0 | lib/phlex/heroicons/arrow_uturn_left.rb |