lib/phlex-icons/radix/all_sides.rb



# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module PhlexIcons
  module Radix
    class AllSides < Base
      def view_template
        svg(
          **attrs,
          viewbox: '0 0 15 15',
          fill: 'none',
          xmlns: 'http://www.w3.org/2000/svg'
        ) do |s|
          s.path(
            d:
              'M7.5 14.25L5.25 12H9.75L7.5 14.25ZM3 9.75L0.75 7.5L3 5.25V9.75ZM14.25 7.5L12 9.75V5.25L14.25 7.5ZM9.75 3H5.25L7.5 0.75L9.75 3Z',
            fill: 'currentColor'
          )
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength