lib/phlex/icons/radix/border_width.rb



# frozen_string_literal: true

module Phlex
  module Icons
    module Radix
      class BorderWidth < Base
        def view_template
          svg(
            **attrs,
            viewbox: '0 0 15 15',
            fill: 'none',
            xmlns: 'http://www.w3.org/2000/svg'
          ) do |s|
            s.path(
              fill_rule: 'evenodd',
              clip_rule: 'evenodd',
              d: 'M1 3H14V4H1V3ZM1 6H14V8H1V6ZM14 10.25H1V12.75H14V10.25Z',
              fill: 'currentColor'
            )
          end
        end
      end
    end
  end
end