lib/phlex-icons/radix/triangle_up.rb



# frozen_string_literal: true

module PhlexIcons
  module Radix
    class TriangleUp < Base
      def view_template
        svg(
          **attrs,
          viewbox: '0 0 15 15',
          fill: 'none',
          xmlns: 'http://www.w3.org/2000/svg'
        ) { |s| s.path(d: 'M4 9H11L7.5 4.5L4 9Z', fill: 'currentColor') }
      end
    end
  end
end