lib/phlex-icons/radix/border_dotted.rb



# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module PhlexIcons
  module Radix
    class BorderDotted < 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:
              'M1.5 6.625C1.98325 6.625 2.375 7.01675 2.375 7.5C2.375 7.98325 1.98325 8.375 1.5 8.375C1.01675 8.375 0.625 7.98325 0.625 7.5C0.625 7.01675 1.01675 6.625 1.5 6.625ZM5.5 6.625C5.98325 6.625 6.375 7.01675 6.375 7.5C6.375 7.98325 5.98325 8.375 5.5 8.375C5.01675 8.375 4.625 7.98325 4.625 7.5C4.625 7.01675 5.01675 6.625 5.5 6.625ZM9.5 6.625C9.98325 6.625 10.375 7.01675 10.375 7.5C10.375 7.98325 9.98325 8.375 9.5 8.375C9.01675 8.375 8.625 7.98325 8.625 7.5C8.625 7.01675 9.01675 6.625 9.5 6.625ZM13.5 6.625C13.9832 6.625 14.375 7.01675 14.375 7.5C14.375 7.98325 13.9832 8.375 13.5 8.375C13.0168 8.375 12.625 7.98325 12.625 7.5C12.625 7.01675 13.0168 6.625 13.5 6.625Z',
            fill: 'currentColor'
          )
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength