Sha256: dfc0cfafefa1e6d63fbd2075ec364794c83740c893a7304d32dde49fbddd5583
Contents?: true
Size: 781 Bytes
Versions: 4
Compression:
Stored size: 781 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class ArrowTurnBackLine < Base def view_template svg( **attrs, viewbox: '0 0 24 24', fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M17.0004 18.1716L14.4649 15.636L13.0507 17.0503L18.0004 22L22.9502 17.0503L21.536 15.636L19.0004 18.1716V11C19.0004 6.58172 15.4187 3 11.0004 3C6.58216 3 3.00044 6.58172 3.00044 11V20H5.00044V11C5.00044 7.68629 7.68673 5 11.0004 5C14.3142 5 17.0004 7.68629 17.0004 11V18.1716Z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
4 entries across 4 versions & 2 rubygems