# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class ArrowLeftUpFill < 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: 'M12.3608 10.9468L18.0176 16.6037L16.6034 18.0179L10.9466 12.361L5.99683 17.3108V5.99707H17.3105L12.3608 10.9468Z' ) end end end end end end # rubocop:enable Layout/LineLength